mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
* configure.ac: Don't error-out configure if Python not found; Python is
completely optional. Noticed by: Stephen Polkowski <stephen@centtech.com> svn path=/trunk/yasm/; revision=1518
This commit is contained in:
parent
a749667a5e
commit
464a53793f
1 changed files with 3 additions and 3 deletions
|
|
@ -264,10 +264,10 @@ if test x$enable_python = xno; then
|
|||
else
|
||||
AC_MSG_NOTICE([Checking to see if we can build Python bindings])
|
||||
have_python=no
|
||||
AM_PATH_PYTHON(2.4)
|
||||
AM_PATH_PYTHON(2.4,[],[AC_MSG_WARN([Python not found])])
|
||||
|
||||
if test -z "$PYTHON" ; then
|
||||
AC_MSG_WARN([Python not found])
|
||||
if test -z "$PYTHON" || test "$PYTHON" = : ; then
|
||||
have_python=no
|
||||
else
|
||||
AC_MSG_CHECKING([for Pyrex >= 0.9.3])
|
||||
PYREX_CHECK_VERSION(0.9.3, [AC_MSG_RESULT(yes)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue