Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
9609f1e5
Commit
9609f1e5
authored
Feb 12, 2017
by
Alexandre Duret-Lutz
Browse files
configure: fix typos in adl_CHECK_PYTHON
Fixes
#220
. * m4/pypath.m4: Here. * NEWS: Mention the bug.
parent
15c6fd95
Changes
2
Hide whitespace changes
Inline
Side-by-side
NEWS
View file @
9609f1e5
...
...
@@ -30,6 +30,10 @@ New in spot 2.3.0.dev (not yet released)
- alternation_removal() was not always reporting the unsupported
non-weak automata.
- a long-standing typo in the configure code checking for Python
caused any user-defined CPPFLAGS to be ignored while building
Spot.
New in spot 2.3 (2017-01-19)
Build:
...
...
m4/pypath.m4
View file @
9609f1e5
...
...
@@ -10,7 +10,7 @@ AC_DEFUN([adl_CHECK_PYTHON],
[sys.stdout.write(sysconfig.get_python_inc())" 2>/dev/null`])
AC_SUBST([PYTHONINC], [$adl_cv_python_inc])
adl_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$a
c
_save_CPPFLAGS -I$PYTHONINC"
CPPFLAGS="$a
dl
_save_CPPFLAGS -I$PYTHONINC"
AC_CHECK_HEADERS([Python.h],,
[AC_MSG_ERROR([Python's development headers are not installed.
...
...
@@ -20,5 +20,5 @@ to use Spot's Python bindings, you may also disable their compilation
by running
./configure --disable-python
and in this case you do not need python3-devel installed.])])
CPPFLAGS=$a
c
_save_CPPFLAGS
CPPFLAGS=$a
dl
_save_CPPFLAGS
])
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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