Adding missing changes to configure.ac

This commit is contained in:
Vincent Castellano 2015-05-02 04:48:31 -07:00
parent 35b5623eb1
commit 0f4ceaa200

View File

@ -94,17 +94,19 @@ AC_ARG_ENABLE(liblua,[--enable-liblua/--disable-liblua],
AC_MSG_ERROR([No lua found. Try --disable-liblua]) AC_MSG_ERROR([No lua found. Try --disable-liblua])
]) ])
]) ])
AC_ARG_ENABLE(python,[--enable-python/--disable-python], AC_ARG_ENABLE(python,[--enable-python/--disable-python],
[ [
AX_PYTHON()
dnl python checks (you can change the required python version bellow) dnl python checks (you can change the required python version bellow)
AM_PATH_PYTHON(2.7.0) AM_PATH_PYTHON(2.7.0)
PY_PREFIX=`$PYTHON -c 'import sys ; print sys.prefix'` PY_PREFIX=`$PYTHON -c 'import sys ; print sys.prefix'`
PYTHON_LIBS="-lpython$PYTHON_VERSION"
PYTHON_CFLAGS="-I$PY_PREFIX/include/python$PYTHON_VERSION"
AC_SUBST([PYTHON_LIBS]) AC_SUBST([PYTHON_LIBS])
AC_SUBST([PYTHON_CFLAGS]) AC_SUBST([PYTHON_CFLAGS])
]) EXTRA_LIBS="${EXTRA_LIBS} -l${PYTHON_LIB}"
CPPFLAGS="${CPPFLAGS} -I${PYTHON_INCLUDE_DIR}"
AC_DEFINE(USE_PYTHON,1,[use python])
])
#check for custom prog name #check for custom prog name
AC_ARG_WITH(progname,[--with-progname=<name>], AC_ARG_WITH(progname,[--with-progname=<name>],