version 1.10, 2002/01/10 14:33:20 |
version 1.14, 2002/04/15 12:04:30 |
| |
| |
AC_PROG_INSTALL | AC_PROG_INSTALL |
| |
| AC_PATH_PROG(CCACHE, ccache) |
| if test "$CCACHE" |
| then |
| CXX="ccache $CXX" |
| fi |
| |
dnl ==================================================================== | dnl ==================================================================== |
dnl Configure Settings | dnl Configure Settings |
| |
dnl Checks for typedefs, structures, and compiler characteristics. | dnl Checks for typedefs, structures, and compiler characteristics. |
dnl ==================================================================== | dnl ==================================================================== |
| |
AC_C_CONST | |
| |
dnl Add the define _REENTRANT for a correct use of the threads | dnl Add the define _REENTRANT for a correct use of the threads |
if test "X$CC" = "Xgcc"; | if test "X$CC" = "Xgcc"; |
then | then |
| |
dnl Checks for libraries. | dnl Checks for libraries. |
dnl ==================================================================== | dnl ==================================================================== |
| |
| AC_CHECK_LIB(crypt, crypt) |
| |
dnl ==================================================================== | dnl ==================================================================== |
dnl STLPort | dnl STLPort |
| |
| |
dnl ==================================================================== | dnl ==================================================================== |
dnl NeL | dnl NeL |
| |
AM_PATH_NEL("yes", "yes", "no", "no", "no", "no") | dnl misc net 3d pacs sound ai georges |
| AM_PATH_NEL("yes", "yes", "no", "no", "no", "no", "no") |
CXXFLAGS="$CXXFLAGS ${NEL_CFLAGS}" | |
LIBS="$LIBS ${NEL_LIBS}" | |
| |
| |
dnl ==================================================================== | dnl ==================================================================== |
dnl Checks for library functions. | dnl Checks for library functions. |
dnl ==================================================================== | dnl ==================================================================== |
| |
| dnl ==================================================================== |
| dnl nelns configuration and logs file location |
| dnl ==================================================================== |
| |
| test "x$prefix" = xNONE && prefix=$ac_default_prefix |
| |
| AC_ARG_WITH(sysconfdir, |
| [ --with-sysconfdir[=DIR] |
| use DIR instead of the default sysconfdir/nelns], |
| [pkgsysconfdir=$withval], |
| [pkgsysconfdir='${sysconfdir}/nelns']) |
| AC_SUBST(pkgsysconfdir) |
| |
| eval eval NELNS_CONFIG=\"$pkgsysconfdir/\" |
| AC_DEFINE_UNQUOTED(NELNS_CONFIG, "$NELNS_CONFIG") |
| |
| AC_ARG_WITH(localstatedir, |
| [ --with-localstatedir[=DIR] |
| use DIR instead of the default localstatedir/game/nelns], |
| [pkglocalstatedir=$withval], |
| [pkglocalstatedir=${localstatedir}/game/nelns]) |
| AC_SUBST(pkglocalstatedir) |
| |
| eval eval NELNS_STATE=\"$pkglocalstatedir/\" |
| AC_DEFINE_UNQUOTED(NELNS_STATE, "$NELNS_STATE") |
| |
| AC_ARG_WITH(logdir, |
| [ --with-logdir[=DIR] |
| use DIR instead of the default localstatedir/log/nelns], |
| [logdir=$withval], |
| [logdir='${localstatedir}/log/nelns']) |
| AC_SUBST(logdir) |
| |
| eval eval NELNS_LOGS=\"$logdir/\" |
| AC_DEFINE_UNQUOTED(NELNS_LOGS, "$NELNS_LOGS") |
| |
dnl ==================================================================== | dnl ==================================================================== |
dnl Output files to generate. | dnl Output files to generate. |