version 1.3, 2001/06/18 14:04:46 |
version 1.7, 2001/08/16 12:42:26 |
| |
AC_PROG_INSTALL | AC_PROG_INSTALL |
| |
| |
dnl ========== | |
dnl Python | |
dnl ========== | |
| |
AC_ARG_WITH( python, | |
[ --with-python=<path> path to the Python prefix installation directory. | |
e.g. /usr/local], | |
[PYTHON_PREFIX=$withval | |
AC_MSG_RESULT(using Python located in $withval.)] | |
) | |
| |
if test ! "$PYTHON_PREFIX" = "" | |
then | |
PATH="$PYTHON_PREFIX/bin:$PATH" | |
fi | |
| |
AC_ARG_WITH( python-version, | |
[ --with-python-version=<version> | |
Python version to use, e.g. 1.5], | |
[PYTHON_VERSION=$withval | |
AC_MSG_RESULT(using Python $withval.)] | |
) | |
| |
if test ! "$PYTHON_VERSION" = "" | |
then | |
PYTHON_EXEC="python$PYTHON_VERSION" | |
else | |
PYTHON_EXEC="python python2.0 python1.5" | |
fi | |
| |
AC_PATH_PROGS(PYTHON, $PYTHON_EXEC, no, $PATH) | |
if test "$PYTHON" = "no"; | |
then | |
AC_MSG_ERROR([Python is needed to compile NeL (www.python.org)]) | |
fi | |
| |
| |
dnl ==================================================================== | dnl ==================================================================== |
dnl Configure Settings | dnl Configure Settings |
| |
| |
dnl STLPort | dnl STLPort |
dnl ========== | dnl ========== |
| |
dnl Ask user for path to the STLport header files | dnl Ask user for path to the STLport files location |
AC_ARG_WITH( stlport, | AC_ARG_WITH( stlport, |
[ --with-stlport=<path> path to the STLPort header files directory. | [ --with-stlport=<path> path to the STLPort install directory. |
e.g. /usr/local/include/stlport], | e.g. /usr/local/stlport] |
[STLPORT_DIR=$with_stlport | |
AC_MSG_RESULT(using STLPort header files located in $with_stlport)], | |
AC_MSG_ERROR([You must call configure with the --with-stlport option. | |
This tells configure where to find the STLPort header files. | |
e.g. --with-stlport=/usr/local/include/stlport]) | |
) | ) |
| |
if test X"$STLPORT_DIR" != X""; | AC_ARG_WITH( stlport-include, |
then | [ --with-stlport-include=<path> |
CXXFLAGS="-I$STLPORT_DIR $CXXFLAGS" | path to the STLPort header files directory. |
fi | e.g. /usr/local/stlport/stlport] |
| ) |
| |
dnl Ask user for path to the STLPort library files | AC_ARG_WITH( stlport-lib, |
AC_ARG_WITH( stllib, | [ --with-stlport-lib=<path> |
[ --with-stllib=<path> path to the STLPort installation directory. | path to the STLPort library files directory. |
e.g. /usr/local/lib/stlport], | e.g. /usr/local/stlport/lib] |
[STLLIB_DIR=$with_stllib | |
AC_MSG_RESULT(using STLPort library located in $with_stllib)] | |
) | ) |
| |
if test X"$STLLIB_DIR" != X""; | if test "$with_stlport" != "no" |
| then |
| if test -z "$with_stlport" && test -z "$with_stlport_lib" -o -z "$with_stlpo |
| rt_include" |
then | then |
LIBS="-L$STLLIB_DIR $LIBS" | AC_MSG_ERROR([You must call configure with the --with-stlport or --with-stlport-lib and with-stlport-include options. |
| This tells configure where to find the STLPort files.]) |
fi | fi |
| |
LIBS="$LIBS -lstlport_gcc" | if test $with_stlport |
| then |
| AC_MSG_RESULT(using STLPort files located in $with_stlport) |
| |
_CPPFLAGS="$CPPFLAGS" | STLPORT_CFLAGS="-I$with_stlport/stlport" |
CPPFLAGS="$CXXFLAGS" | STLPORT_LIB="-L$with_stlport/lib" |
| fi |
| else |
| no_stlport="no" |
| AC_MSG_RESULT(*** Override the use of the STLPorts (EXPERIMENTAL) ***) |
| fi |
| |
AC_MSG_CHECKING(for STLPort) | if test -z "$no_stlport" -a "$with_stlport_include" |
AC_EGREP_CPP( yo_stlport, | then |
[#include <algorithm> | AC_MSG_RESULT(using STLPort header files located in $with_stlport_include) |
#ifdef __SGI_STL_PORT | STLPORT_CFLAGS="-I$with_stlport_include" |
yo_stlport | fi |
#endif], | |
[AC_MSG_RESULT(yes)], | |
AC_MSG_ERROR([STLPort is needed to compile NeLNS (www.stlport.org)]) | |
) | |
| |
CPPFLAGS="$_CPPFLAGS" | if test -z "$no_stlport" -a "$with_stlport_lib" |
| then |
| AC_MSG_RESULT(using STLPort library files located in $with_stlport_lib) |
| STLPORT_LIB="-L$with_stlport_lib" |
| fi |
| |
| |
dnl ========== | dnl ========== |
| |
dnl Ask user for path to the NeL header files | dnl Ask user for path to the NeL header files |
AC_ARG_WITH( nel, | AC_ARG_WITH( nel, |
[ --with-nel=<prefix> prefix to the NeL files installation. | [ --with-nel=<prefix> prefix to the NeL files installation. |
e.g. /usr/local/include], | e.g. /usr/local], |
[NEL_DIR=$with_nel | [NEL_DIR=$with_nel |
AC_MSG_RESULT(using NeL header files located in $with_nel)] | AC_MSG_RESULT(using NeL files located in $with_nel)] |
) | ) |
| |
if test X"$NEL_DIR" != X""; | if test X"$NEL_DIR" != X""; |
| |
| |
| |
dnl ========== | dnl ========== |
dnl Python | |
dnl ========== | |
| |
PYTHON_PREFIX=`$PYTHON -c 'import sys; print "%s" % (sys.prefix)'` | |
PYTHON_VERSION=`$PYTHON -c 'import sys; print "%s" % (sys.version[[:3]])'` | |
| |
PYTHON_CFLAGS="-I$PYTHON_PREFIX/include/python$PYTHON_VERSION" | |
PYTHON_LIBS="-L$PYTHON_PREFIX/lib/python$PYTHON_VERSION/config -lpython$PYTHON_VERSION" | |
| |
_CPPFLAGS="$CPPFLAGS" | |
CPPFLAGS="$CXXFLAGS ${PYTHON_CFLAGS}" | |
| |
AC_SUBST(PYTHON_CFLAGS) | |
| |
AC_MSG_CHECKING(for Python header files) | |
AC_EGREP_CPP( yo_python, | |
[#include <Python.h> | |
yo_python | |
], | |
[AC_MSG_RESULT(ok)], | |
AC_MSG_ERROR([Python is needed to compile NeL (www.python.org).]) | |
) | |
| |
CPPFLAGS="$_CPPFLAGS" | |
| |
AC_SUBST(PYTHON_CFLAGS) | |
AC_SUBST(PYTHON_LIBS) | |
| |
| |
dnl ========== | |
dnl Debug/optimized compilation mode | dnl Debug/optimized compilation mode |
dnl ========== | dnl ========== |
| |
| |
| |
dnl ==================================================================== | dnl ==================================================================== |
dnl Checks for libraries. | dnl Checks for libraries. |
| |
| dnl ========== |
| dnl STLPort |
| dnl ========== |
| |
| if test -z "$no_stlport" |
| then |
| |
| if test X"$STLPORT_CFLAGS" != X |
| then |
| CXXFLAGS="$STLPORT_CFLAGS $CXXFLAGS" |
| fi |
| |
| if test X"$STLPORT_LIB" != X |
| then |
| LIBS="$STLPORT_LIB $LIBS -lstlport_gcc" |
| fi |
| |
| _CPPFLAGS="$CPPFLAGS" |
| CPPFLAGS="$CXXFLAGS $STLPORT_CFLAGS" |
| |
| AC_MSG_CHECKING(for STLPort) |
| AC_EGREP_CPP( yo_stlport, |
| [#include <algorithm> |
| #ifdef __SGI_STL_PORT |
| yo_stlport |
| #endif], |
| [ AC_MSG_RESULT(yes)], |
| AC_MSG_ERROR([STLPort is needed to compile NeL (www.stlport.org).]) ) |
| |
| CPPFLAGS="$_CPPFLAGS" |
| fi |
| |
| |
dnl ==================================================================== | dnl ==================================================================== |