From 0ea5fc66924303d1bf73ba283a383e2aadee02f2 Mon Sep 17 00:00:00 2001 From: neodarz Date: Sat, 11 Aug 2018 20:21:34 +0200 Subject: Initial commit --- .../x-cvsweb-markup&sortby=author/index.html | 218 +++++++++++++++++++++ .../x-cvsweb-markup&sortby=date/index.html | 218 +++++++++++++++++++++ .../x-cvsweb-markup&sortby=log/index.html | 218 +++++++++++++++++++++ .../x-cvsweb-markup/index.html | 218 +++++++++++++++++++++ 4 files changed, 872 insertions(+) create mode 100644 cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup&sortby=author/index.html create mode 100644 cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup&sortby=date/index.html create mode 100644 cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup&sortby=log/index.html create mode 100644 cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup/index.html (limited to 'cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text') diff --git a/cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup&sortby=author/index.html b/cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup&sortby=author/index.html new file mode 100644 index 00000000..6ff1522a --- /dev/null +++ b/cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup&sortby=author/index.html @@ -0,0 +1,218 @@ + + + +code/snowballs2/configure.in - view - 1.15 + +
[BACK] Return to configure.in + CVS log [TXT][DIR] Up to Nevrax / code / snowballs2

File: Nevrax / code / snowballs2 / configure.in (download)
+Revision 1.15, Tue Apr 16 12:01:39 2002 UTC (2 months, 2 weeks ago) by valignat +
Branch: MAIN +
CVS Tags: HEAD
Changes since 1.14: +3 -6 + lines
+ADDED a configure option to explicitly activate the use of the ccache (http://ccache.samba.org) utility.
+
+

dnl ====================================================================
+dnl Configuration script for Snowballs 2
+dnl ====================================================================
+dnl
+dnl $Id: configure.in,v 1.15 2002/04/16 12:01:39 valignat Exp $
+dnl 
+
+
+dnl ====================================================================
+dnl Process this file with autoconf to produce a configure script.
+dnl ====================================================================
+
+AC_INIT(client/src/client.cpp)
+
+MAJOR_VERSION=0
+MINOR_VERSION=2
+PICO_VERSION=0
+
+AM_INIT_AUTOMAKE(snowballs, $MAJOR_VERSION.$MINOR_VERSION.$PICO_VERSION)
+
+AM_CONFIG_HEADER(config.h)
+
+
+dnl The following hack should ensure that configure doesn't add optimizing
+dnl or debugging flags to CFLAGS or CXXFLAGS
+CFLAGS="$CFLAGS "
+CXXFLAGS="$CXXFLAGS "
+
+
+dnl ====================================================================
+dnl Checks Snowballs modules (Client / Server) to install / Disable
+dnl ====================================================================
+
+SNO_SUBDIRS=""
+
+dnl Client
+AC_ARG_ENABLE( client,
+    [  --disable-client        disable compilation and install of Snowballs Client.],
+    [ AC_MSG_RESULT(disable Snowballs Client.) ],
+    [ SNO_SUBDIRS="$SNO_SUBDIRS client"
+      enable_client="yes" ] )
+
+dnl Server
+AC_ARG_ENABLE( server,
+    [  --disable-server        disable compilation and install of Snowballs Server.],
+    [ AC_MSG_RESULT(disable Snowballs Server.) ],
+    [ SNO_SUBDIRS="$SNO_SUBDIRS server"
+      enable_server="yes" ] )
+
+AC_SUBST(SNO_SUBDIRS)
+
+
+dnl ====================================================================
+dnl Checks for programs.
+dnl ====================================================================
+
+AC_PROG_MAKE_SET
+
+AC_PROG_CC
+AC_PROG_CXX
+
+AM_SANITY_CHECK
+
+AC_PROG_INSTALL
+
+AM_PATH_CCACHE
+
+
+dnl ====================================================================
+dnl Configure Settings
+dnl ====================================================================
+
+dnl Set the C++ compiler as the default compiler for the configure script
+dnl compilation tests
+AC_LANG_CPLUSPLUS
+
+
+dnl ====================================================================
+dnl Debug/optimized compilation mode
+dnl ====================================================================
+
+AM_NEL_DEBUG
+
+
+dnl ====================================================================
+dnl Checks for typedefs, structures, and compiler characteristics.
+dnl ====================================================================
+
+
+dnl ====================================================================
+dnl Checks for header files.
+dnl ====================================================================
+
+AC_STDC_HEADERS
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+
+dnl ====================================================================
+dnl X11
+
+AC_PATH_X
+
+if test ! "$no_x" = "yes" ; then
+    if test ! X"$x_libraries" = X
+    then
+        LIBS="$LIBS -L$x_libraries"
+    fi
+    if test ! X"$x_includes" = X
+    then
+        CXXFLAGS="$CXXFLAGS -I$x_includes"
+    fi
+else
+    if test "$enable_client" = "yes"
+    then
+        AC_MSG_ERROR(X11 must be installed.)
+    fi
+fi
+
+
+dnl ====================================================================
+dnl Checks for libraries.
+dnl ====================================================================
+
+dnl ====================================================================
+dnl STLPort
+
+AM_PATH_STLPORT
+
+
+dnl ====================================================================
+dnl OpenAL
+
+AM_PATH_OPENAL($enable_client)
+
+
+dnl ====================================================================
+dnl NeL
+
+dnl         misc   net    3d              pacs            sound           ai    georges
+AM_PATH_NEL("yes", "yes", $enable_client, $enable_client, $enable_client, "no", "no")
+
+dnl ====================================================================
+dnl FreeType 2
+
+AM_PATH_FREETYPE($enable_client)
+
+dnl ====================================================================
+dnl Checks for library functions.
+dnl ====================================================================
+
+dnl ====================================================================
+dnl Snowballs data, configuration and logs file location
+dnl ====================================================================
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+
+AC_ARG_WITH(database,
+    [  --with-database[=DIR]
+                          use DIR instead of the default datadir/games/snowballs],
+    [database=$withval],
+    [database='${datadir}/games/snowballs'])
+eval eval SNOWBALLS_DATABASE=\"$database/\"
+AC_SUBST(SNOWBALLS_DATABASE)
+
+AC_ARG_WITH(sysconfdir,
+    [  --with-sysconfdir[=DIR]
+                          use DIR instead of the default sysconfdir/snowballs],
+    [pkgsysconfdir=$withval],
+    [pkgsysconfdir='${sysconfdir}/snowballs'])
+AC_SUBST(pkgsysconfdir)
+
+eval eval SNOWBALLS_CONFIG=\"$pkgsysconfdir/\"
+AC_DEFINE_UNQUOTED(SNOWBALLS_CONFIG, "$SNOWBALLS_CONFIG")
+
+AC_ARG_WITH(logdir,
+    [  --with-logdir[=DIR]
+                          use DIR instead of the default localstatedir/log/snowballs],
+    [logdir=$withval],
+    [logdir='${localstatedir}/log/snowballs'])
+AC_SUBST(logdir)
+
+eval eval SNOWBALLS_LOGS=\"$logdir/\"
+AC_DEFINE_UNQUOTED(SNOWBALLS_LOGS, "$SNOWBALLS_LOGS")
+
+dnl ====================================================================
+dnl Output files to generate.
+dnl ====================================================================
+
+AC_OUTPUT( Makefile                                         \
+           client/Makefile                                  \
+           client/client.cfg                                \
+           client/src/Makefile                              \
+           server/Makefile                                  \
+           server/frontend/Makefile                         \
+           server/frontend/src/Makefile                     \
+           server/chat/Makefile                             \
+           server/chat/src/Makefile                         \
+           server/position/Makefile                         \
+           server/position/src/Makefile                     \
+)
+
+
+dnl End of configure.in
+
+
\ No newline at end of file diff --git a/cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup&sortby=date/index.html b/cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup&sortby=date/index.html new file mode 100644 index 00000000..baeed489 --- /dev/null +++ b/cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup&sortby=date/index.html @@ -0,0 +1,218 @@ + + + +code/snowballs2/configure.in - view - 1.15 + +
[BACK] Return to configure.in + CVS log [TXT][DIR] Up to Nevrax / code / snowballs2

File: Nevrax / code / snowballs2 / configure.in (download)
+Revision 1.15, Tue Apr 16 12:01:39 2002 UTC (2 months, 2 weeks ago) by valignat +
Branch: MAIN +
CVS Tags: HEAD
Changes since 1.14: +3 -6 + lines
+ADDED a configure option to explicitly activate the use of the ccache (http://ccache.samba.org) utility.
+
+

dnl ====================================================================
+dnl Configuration script for Snowballs 2
+dnl ====================================================================
+dnl
+dnl $Id: configure.in,v 1.15 2002/04/16 12:01:39 valignat Exp $
+dnl 
+
+
+dnl ====================================================================
+dnl Process this file with autoconf to produce a configure script.
+dnl ====================================================================
+
+AC_INIT(client/src/client.cpp)
+
+MAJOR_VERSION=0
+MINOR_VERSION=2
+PICO_VERSION=0
+
+AM_INIT_AUTOMAKE(snowballs, $MAJOR_VERSION.$MINOR_VERSION.$PICO_VERSION)
+
+AM_CONFIG_HEADER(config.h)
+
+
+dnl The following hack should ensure that configure doesn't add optimizing
+dnl or debugging flags to CFLAGS or CXXFLAGS
+CFLAGS="$CFLAGS "
+CXXFLAGS="$CXXFLAGS "
+
+
+dnl ====================================================================
+dnl Checks Snowballs modules (Client / Server) to install / Disable
+dnl ====================================================================
+
+SNO_SUBDIRS=""
+
+dnl Client
+AC_ARG_ENABLE( client,
+    [  --disable-client        disable compilation and install of Snowballs Client.],
+    [ AC_MSG_RESULT(disable Snowballs Client.) ],
+    [ SNO_SUBDIRS="$SNO_SUBDIRS client"
+      enable_client="yes" ] )
+
+dnl Server
+AC_ARG_ENABLE( server,
+    [  --disable-server        disable compilation and install of Snowballs Server.],
+    [ AC_MSG_RESULT(disable Snowballs Server.) ],
+    [ SNO_SUBDIRS="$SNO_SUBDIRS server"
+      enable_server="yes" ] )
+
+AC_SUBST(SNO_SUBDIRS)
+
+
+dnl ====================================================================
+dnl Checks for programs.
+dnl ====================================================================
+
+AC_PROG_MAKE_SET
+
+AC_PROG_CC
+AC_PROG_CXX
+
+AM_SANITY_CHECK
+
+AC_PROG_INSTALL
+
+AM_PATH_CCACHE
+
+
+dnl ====================================================================
+dnl Configure Settings
+dnl ====================================================================
+
+dnl Set the C++ compiler as the default compiler for the configure script
+dnl compilation tests
+AC_LANG_CPLUSPLUS
+
+
+dnl ====================================================================
+dnl Debug/optimized compilation mode
+dnl ====================================================================
+
+AM_NEL_DEBUG
+
+
+dnl ====================================================================
+dnl Checks for typedefs, structures, and compiler characteristics.
+dnl ====================================================================
+
+
+dnl ====================================================================
+dnl Checks for header files.
+dnl ====================================================================
+
+AC_STDC_HEADERS
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+
+dnl ====================================================================
+dnl X11
+
+AC_PATH_X
+
+if test ! "$no_x" = "yes" ; then
+    if test ! X"$x_libraries" = X
+    then
+        LIBS="$LIBS -L$x_libraries"
+    fi
+    if test ! X"$x_includes" = X
+    then
+        CXXFLAGS="$CXXFLAGS -I$x_includes"
+    fi
+else
+    if test "$enable_client" = "yes"
+    then
+        AC_MSG_ERROR(X11 must be installed.)
+    fi
+fi
+
+
+dnl ====================================================================
+dnl Checks for libraries.
+dnl ====================================================================
+
+dnl ====================================================================
+dnl STLPort
+
+AM_PATH_STLPORT
+
+
+dnl ====================================================================
+dnl OpenAL
+
+AM_PATH_OPENAL($enable_client)
+
+
+dnl ====================================================================
+dnl NeL
+
+dnl         misc   net    3d              pacs            sound           ai    georges
+AM_PATH_NEL("yes", "yes", $enable_client, $enable_client, $enable_client, "no", "no")
+
+dnl ====================================================================
+dnl FreeType 2
+
+AM_PATH_FREETYPE($enable_client)
+
+dnl ====================================================================
+dnl Checks for library functions.
+dnl ====================================================================
+
+dnl ====================================================================
+dnl Snowballs data, configuration and logs file location
+dnl ====================================================================
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+
+AC_ARG_WITH(database,
+    [  --with-database[=DIR]
+                          use DIR instead of the default datadir/games/snowballs],
+    [database=$withval],
+    [database='${datadir}/games/snowballs'])
+eval eval SNOWBALLS_DATABASE=\"$database/\"
+AC_SUBST(SNOWBALLS_DATABASE)
+
+AC_ARG_WITH(sysconfdir,
+    [  --with-sysconfdir[=DIR]
+                          use DIR instead of the default sysconfdir/snowballs],
+    [pkgsysconfdir=$withval],
+    [pkgsysconfdir='${sysconfdir}/snowballs'])
+AC_SUBST(pkgsysconfdir)
+
+eval eval SNOWBALLS_CONFIG=\"$pkgsysconfdir/\"
+AC_DEFINE_UNQUOTED(SNOWBALLS_CONFIG, "$SNOWBALLS_CONFIG")
+
+AC_ARG_WITH(logdir,
+    [  --with-logdir[=DIR]
+                          use DIR instead of the default localstatedir/log/snowballs],
+    [logdir=$withval],
+    [logdir='${localstatedir}/log/snowballs'])
+AC_SUBST(logdir)
+
+eval eval SNOWBALLS_LOGS=\"$logdir/\"
+AC_DEFINE_UNQUOTED(SNOWBALLS_LOGS, "$SNOWBALLS_LOGS")
+
+dnl ====================================================================
+dnl Output files to generate.
+dnl ====================================================================
+
+AC_OUTPUT( Makefile                                         \
+           client/Makefile                                  \
+           client/client.cfg                                \
+           client/src/Makefile                              \
+           server/Makefile                                  \
+           server/frontend/Makefile                         \
+           server/frontend/src/Makefile                     \
+           server/chat/Makefile                             \
+           server/chat/src/Makefile                         \
+           server/position/Makefile                         \
+           server/position/src/Makefile                     \
+)
+
+
+dnl End of configure.in
+
+
\ No newline at end of file diff --git a/cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup&sortby=log/index.html b/cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup&sortby=log/index.html new file mode 100644 index 00000000..039ac01f --- /dev/null +++ b/cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup&sortby=log/index.html @@ -0,0 +1,218 @@ + + + +code/snowballs2/configure.in - view - 1.15 + +
[BACK] Return to configure.in + CVS log [TXT][DIR] Up to Nevrax / code / snowballs2

File: Nevrax / code / snowballs2 / configure.in (download)
+Revision 1.15, Tue Apr 16 12:01:39 2002 UTC (6 weeks, 2 days ago) by valignat +
Branch: MAIN +
CVS Tags: HEAD
Changes since 1.14: +3 -6 + lines
+ADDED a configure option to explicitly activate the use of the ccache (http://ccache.samba.org) utility.
+
+

dnl ====================================================================
+dnl Configuration script for Snowballs 2
+dnl ====================================================================
+dnl
+dnl $Id: configure.in,v 1.15 2002/04/16 12:01:39 valignat Exp $
+dnl 
+
+
+dnl ====================================================================
+dnl Process this file with autoconf to produce a configure script.
+dnl ====================================================================
+
+AC_INIT(client/src/client.cpp)
+
+MAJOR_VERSION=0
+MINOR_VERSION=2
+PICO_VERSION=0
+
+AM_INIT_AUTOMAKE(snowballs, $MAJOR_VERSION.$MINOR_VERSION.$PICO_VERSION)
+
+AM_CONFIG_HEADER(config.h)
+
+
+dnl The following hack should ensure that configure doesn't add optimizing
+dnl or debugging flags to CFLAGS or CXXFLAGS
+CFLAGS="$CFLAGS "
+CXXFLAGS="$CXXFLAGS "
+
+
+dnl ====================================================================
+dnl Checks Snowballs modules (Client / Server) to install / Disable
+dnl ====================================================================
+
+SNO_SUBDIRS=""
+
+dnl Client
+AC_ARG_ENABLE( client,
+    [  --disable-client        disable compilation and install of Snowballs Client.],
+    [ AC_MSG_RESULT(disable Snowballs Client.) ],
+    [ SNO_SUBDIRS="$SNO_SUBDIRS client"
+      enable_client="yes" ] )
+
+dnl Server
+AC_ARG_ENABLE( server,
+    [  --disable-server        disable compilation and install of Snowballs Server.],
+    [ AC_MSG_RESULT(disable Snowballs Server.) ],
+    [ SNO_SUBDIRS="$SNO_SUBDIRS server"
+      enable_server="yes" ] )
+
+AC_SUBST(SNO_SUBDIRS)
+
+
+dnl ====================================================================
+dnl Checks for programs.
+dnl ====================================================================
+
+AC_PROG_MAKE_SET
+
+AC_PROG_CC
+AC_PROG_CXX
+
+AM_SANITY_CHECK
+
+AC_PROG_INSTALL
+
+AM_PATH_CCACHE
+
+
+dnl ====================================================================
+dnl Configure Settings
+dnl ====================================================================
+
+dnl Set the C++ compiler as the default compiler for the configure script
+dnl compilation tests
+AC_LANG_CPLUSPLUS
+
+
+dnl ====================================================================
+dnl Debug/optimized compilation mode
+dnl ====================================================================
+
+AM_NEL_DEBUG
+
+
+dnl ====================================================================
+dnl Checks for typedefs, structures, and compiler characteristics.
+dnl ====================================================================
+
+
+dnl ====================================================================
+dnl Checks for header files.
+dnl ====================================================================
+
+AC_STDC_HEADERS
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+
+dnl ====================================================================
+dnl X11
+
+AC_PATH_X
+
+if test ! "$no_x" = "yes" ; then
+    if test ! X"$x_libraries" = X
+    then
+        LIBS="$LIBS -L$x_libraries"
+    fi
+    if test ! X"$x_includes" = X
+    then
+        CXXFLAGS="$CXXFLAGS -I$x_includes"
+    fi
+else
+    if test "$enable_client" = "yes"
+    then
+        AC_MSG_ERROR(X11 must be installed.)
+    fi
+fi
+
+
+dnl ====================================================================
+dnl Checks for libraries.
+dnl ====================================================================
+
+dnl ====================================================================
+dnl STLPort
+
+AM_PATH_STLPORT
+
+
+dnl ====================================================================
+dnl OpenAL
+
+AM_PATH_OPENAL($enable_client)
+
+
+dnl ====================================================================
+dnl NeL
+
+dnl         misc   net    3d              pacs            sound           ai    georges
+AM_PATH_NEL("yes", "yes", $enable_client, $enable_client, $enable_client, "no", "no")
+
+dnl ====================================================================
+dnl FreeType 2
+
+AM_PATH_FREETYPE($enable_client)
+
+dnl ====================================================================
+dnl Checks for library functions.
+dnl ====================================================================
+
+dnl ====================================================================
+dnl Snowballs data, configuration and logs file location
+dnl ====================================================================
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+
+AC_ARG_WITH(database,
+    [  --with-database[=DIR]
+                          use DIR instead of the default datadir/games/snowballs],
+    [database=$withval],
+    [database='${datadir}/games/snowballs'])
+eval eval SNOWBALLS_DATABASE=\"$database/\"
+AC_SUBST(SNOWBALLS_DATABASE)
+
+AC_ARG_WITH(sysconfdir,
+    [  --with-sysconfdir[=DIR]
+                          use DIR instead of the default sysconfdir/snowballs],
+    [pkgsysconfdir=$withval],
+    [pkgsysconfdir='${sysconfdir}/snowballs'])
+AC_SUBST(pkgsysconfdir)
+
+eval eval SNOWBALLS_CONFIG=\"$pkgsysconfdir/\"
+AC_DEFINE_UNQUOTED(SNOWBALLS_CONFIG, "$SNOWBALLS_CONFIG")
+
+AC_ARG_WITH(logdir,
+    [  --with-logdir[=DIR]
+                          use DIR instead of the default localstatedir/log/snowballs],
+    [logdir=$withval],
+    [logdir='${localstatedir}/log/snowballs'])
+AC_SUBST(logdir)
+
+eval eval SNOWBALLS_LOGS=\"$logdir/\"
+AC_DEFINE_UNQUOTED(SNOWBALLS_LOGS, "$SNOWBALLS_LOGS")
+
+dnl ====================================================================
+dnl Output files to generate.
+dnl ====================================================================
+
+AC_OUTPUT( Makefile                                         \
+           client/Makefile                                  \
+           client/client.cfg                                \
+           client/src/Makefile                              \
+           server/Makefile                                  \
+           server/frontend/Makefile                         \
+           server/frontend/src/Makefile                     \
+           server/chat/Makefile                             \
+           server/chat/src/Makefile                         \
+           server/position/Makefile                         \
+           server/position/src/Makefile                     \
+)
+
+
+dnl End of configure.in
+
+
\ No newline at end of file diff --git a/cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup/index.html b/cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup/index.html new file mode 100644 index 00000000..35141de2 --- /dev/null +++ b/cvs/cvsweb.cgi/code/snowballs2/configure.in?rev=1.15&content-type=text/x-cvsweb-markup/index.html @@ -0,0 +1,218 @@ + + + +code/snowballs2/configure.in - view - 1.15 + +
[BACK] Return to configure.in + CVS log [TXT][DIR] Up to Nevrax / code / snowballs2

File: Nevrax / code / snowballs2 / configure.in (download)
+Revision 1.15, Tue Apr 16 12:01:39 2002 UTC (8 weeks, 2 days ago) by valignat +
Branch: MAIN +
CVS Tags: HEAD
Changes since 1.14: +3 -6 + lines
+ADDED a configure option to explicitly activate the use of the ccache (http://ccache.samba.org) utility.
+
+

dnl ====================================================================
+dnl Configuration script for Snowballs 2
+dnl ====================================================================
+dnl
+dnl $Id: configure.in,v 1.15 2002/04/16 12:01:39 valignat Exp $
+dnl 
+
+
+dnl ====================================================================
+dnl Process this file with autoconf to produce a configure script.
+dnl ====================================================================
+
+AC_INIT(client/src/client.cpp)
+
+MAJOR_VERSION=0
+MINOR_VERSION=2
+PICO_VERSION=0
+
+AM_INIT_AUTOMAKE(snowballs, $MAJOR_VERSION.$MINOR_VERSION.$PICO_VERSION)
+
+AM_CONFIG_HEADER(config.h)
+
+
+dnl The following hack should ensure that configure doesn't add optimizing
+dnl or debugging flags to CFLAGS or CXXFLAGS
+CFLAGS="$CFLAGS "
+CXXFLAGS="$CXXFLAGS "
+
+
+dnl ====================================================================
+dnl Checks Snowballs modules (Client / Server) to install / Disable
+dnl ====================================================================
+
+SNO_SUBDIRS=""
+
+dnl Client
+AC_ARG_ENABLE( client,
+    [  --disable-client        disable compilation and install of Snowballs Client.],
+    [ AC_MSG_RESULT(disable Snowballs Client.) ],
+    [ SNO_SUBDIRS="$SNO_SUBDIRS client"
+      enable_client="yes" ] )
+
+dnl Server
+AC_ARG_ENABLE( server,
+    [  --disable-server        disable compilation and install of Snowballs Server.],
+    [ AC_MSG_RESULT(disable Snowballs Server.) ],
+    [ SNO_SUBDIRS="$SNO_SUBDIRS server"
+      enable_server="yes" ] )
+
+AC_SUBST(SNO_SUBDIRS)
+
+
+dnl ====================================================================
+dnl Checks for programs.
+dnl ====================================================================
+
+AC_PROG_MAKE_SET
+
+AC_PROG_CC
+AC_PROG_CXX
+
+AM_SANITY_CHECK
+
+AC_PROG_INSTALL
+
+AM_PATH_CCACHE
+
+
+dnl ====================================================================
+dnl Configure Settings
+dnl ====================================================================
+
+dnl Set the C++ compiler as the default compiler for the configure script
+dnl compilation tests
+AC_LANG_CPLUSPLUS
+
+
+dnl ====================================================================
+dnl Debug/optimized compilation mode
+dnl ====================================================================
+
+AM_NEL_DEBUG
+
+
+dnl ====================================================================
+dnl Checks for typedefs, structures, and compiler characteristics.
+dnl ====================================================================
+
+
+dnl ====================================================================
+dnl Checks for header files.
+dnl ====================================================================
+
+AC_STDC_HEADERS
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+
+dnl ====================================================================
+dnl X11
+
+AC_PATH_X
+
+if test ! "$no_x" = "yes" ; then
+    if test ! X"$x_libraries" = X
+    then
+        LIBS="$LIBS -L$x_libraries"
+    fi
+    if test ! X"$x_includes" = X
+    then
+        CXXFLAGS="$CXXFLAGS -I$x_includes"
+    fi
+else
+    if test "$enable_client" = "yes"
+    then
+        AC_MSG_ERROR(X11 must be installed.)
+    fi
+fi
+
+
+dnl ====================================================================
+dnl Checks for libraries.
+dnl ====================================================================
+
+dnl ====================================================================
+dnl STLPort
+
+AM_PATH_STLPORT
+
+
+dnl ====================================================================
+dnl OpenAL
+
+AM_PATH_OPENAL($enable_client)
+
+
+dnl ====================================================================
+dnl NeL
+
+dnl         misc   net    3d              pacs            sound           ai    georges
+AM_PATH_NEL("yes", "yes", $enable_client, $enable_client, $enable_client, "no", "no")
+
+dnl ====================================================================
+dnl FreeType 2
+
+AM_PATH_FREETYPE($enable_client)
+
+dnl ====================================================================
+dnl Checks for library functions.
+dnl ====================================================================
+
+dnl ====================================================================
+dnl Snowballs data, configuration and logs file location
+dnl ====================================================================
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+
+AC_ARG_WITH(database,
+    [  --with-database[=DIR]
+                          use DIR instead of the default datadir/games/snowballs],
+    [database=$withval],
+    [database='${datadir}/games/snowballs'])
+eval eval SNOWBALLS_DATABASE=\"$database/\"
+AC_SUBST(SNOWBALLS_DATABASE)
+
+AC_ARG_WITH(sysconfdir,
+    [  --with-sysconfdir[=DIR]
+                          use DIR instead of the default sysconfdir/snowballs],
+    [pkgsysconfdir=$withval],
+    [pkgsysconfdir='${sysconfdir}/snowballs'])
+AC_SUBST(pkgsysconfdir)
+
+eval eval SNOWBALLS_CONFIG=\"$pkgsysconfdir/\"
+AC_DEFINE_UNQUOTED(SNOWBALLS_CONFIG, "$SNOWBALLS_CONFIG")
+
+AC_ARG_WITH(logdir,
+    [  --with-logdir[=DIR]
+                          use DIR instead of the default localstatedir/log/snowballs],
+    [logdir=$withval],
+    [logdir='${localstatedir}/log/snowballs'])
+AC_SUBST(logdir)
+
+eval eval SNOWBALLS_LOGS=\"$logdir/\"
+AC_DEFINE_UNQUOTED(SNOWBALLS_LOGS, "$SNOWBALLS_LOGS")
+
+dnl ====================================================================
+dnl Output files to generate.
+dnl ====================================================================
+
+AC_OUTPUT( Makefile                                         \
+           client/Makefile                                  \
+           client/client.cfg                                \
+           client/src/Makefile                              \
+           server/Makefile                                  \
+           server/frontend/Makefile                         \
+           server/frontend/src/Makefile                     \
+           server/chat/Makefile                             \
+           server/chat/src/Makefile                         \
+           server/position/Makefile                         \
+           server/position/src/Makefile                     \
+)
+
+
+dnl End of configure.in
+
+
\ No newline at end of file -- cgit v1.2.1