Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
graph-tool
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
40
Issues
40
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tiago Peixoto
graph-tool
Commits
6e1c0056
Commit
6e1c0056
authored
Feb 24, 2017
by
Tiago Peixoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.ac: Fix quotation
parent
5590f887
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
configure.ac
configure.ac
+6
-6
No files found.
configure.ac
View file @
6e1c0056
...
...
@@ -180,7 +180,7 @@ AC_ARG_ENABLE([cgal-valgrind], [AS_HELP_STRING([--enable-cgal-valgrind],[enable
[CGAL_FLAGS="${CGAL_FLAGS} -DCGAL_DISABLE_ROUNDING_MATH_CHECK=ON"]
else
[AC_MSG_RESULT(no)]
fi,
fi,
[AC_MSG_RESULT(no)])
AC_SUBST(CGAL_FLAGS)
...
...
@@ -194,8 +194,8 @@ AC_ARG_WITH([numpy], [AS_HELP_STRING([--with-numpy=DIR],[directory where numpy i
NUMPY_DIR=$withval)
[NUMPY_CPPFLAGS="-I${NUMPY_DIR}"]
[CPPFLAGS_TEMP=
${CPPFLAGS}
]
[CPPFLAGS=
${PYTHON_CPPFLAGS} ${NUMPY_CPPFLAGS} ${CPPFLAGS}
]
[CPPFLAGS_TEMP=
"${CPPFLAGS}"
]
[CPPFLAGS=
"${PYTHON_CPPFLAGS} ${NUMPY_CPPFLAGS} ${CPPFLAGS}"
]
AC_CHECK_HEADER([numpy/arrayobject.h],
[],
[AC_MSG_ERROR([Numpy extension header not found])],
...
...
@@ -212,7 +212,7 @@ AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include "Python.h"]]
[[#endif]])],
[],
[AC_MSG_ERROR([Numpy is too old. Version 1.7 or above is required.])])
[CPPFLAGS=
${CPPFLAGS_TEMP}
]
[CPPFLAGS=
"${CPPFLAGS_TEMP}"
]
dnl cairo
if test "$USING_CAIRO" = "yes"; then
...
...
@@ -227,13 +227,13 @@ if test "$USING_CAIRO" = "yes"; then
else
[PYCAIRO_HEADER=pycairo/pycairo.h]
fi
[CPPFLAGS_TEMP=
${CPPFLAGS}
]
[CPPFLAGS_TEMP=
"${CPPFLAGS}"
]
[CPPFLAGS="${CAIROMM_CPPFLAGS} ${CAIROMM_CFLAGS} ${PYTHON_CPPFLAGS} ${CPPFLAGS}"]
AC_DEFINE_UNQUOTED([PYCAIRO_HEADER], <${PYCAIRO_HEADER}>, [pycairo header file])
AC_CHECK_HEADER(${PYCAIRO_HEADER},
[],
[AC_MSG_ERROR([pycairo headers not found])])
[CPPFLAGS=
${CPPFLAGS_TEMP}
]
[CPPFLAGS=
"${CPPFLAGS_TEMP}"
]
fi
dnl sparsehash
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment