aboutsummaryrefslogtreecommitdiff
path: root/cvs/cvsweb.cgi/code/snowballs2/configure.in?content-type=text/x-cvsweb-markup&rev=1.15&sortby=rev
diff options
context:
space:
mode:
Diffstat (limited to 'cvs/cvsweb.cgi/code/snowballs2/configure.in?content-type=text/x-cvsweb-markup&rev=1.15&sortby=rev')
-rw-r--r--cvs/cvsweb.cgi/code/snowballs2/configure.in?content-type=text/x-cvsweb-markup&rev=1.15&sortby=rev218
1 files changed, 218 insertions, 0 deletions
diff --git a/cvs/cvsweb.cgi/code/snowballs2/configure.in?content-type=text/x-cvsweb-markup&rev=1.15&sortby=rev b/cvs/cvsweb.cgi/code/snowballs2/configure.in?content-type=text/x-cvsweb-markup&rev=1.15&sortby=rev
new file mode 100644
index 00000000..d809a2a0
--- /dev/null
+++ b/cvs/cvsweb.cgi/code/snowballs2/configure.in?content-type=text/x-cvsweb-markup&rev=1.15&sortby=rev
@@ -0,0 +1,218 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML>
+<HEAD><style> A { color:black }</style>
+<!-- hennerik CVSweb $Revision: 1.93 $ -->
+<TITLE>code/snowballs2/configure.in - view - 1.15</TITLE></HEAD>
+<BODY BGCOLOR="#eeeeee">
+<table width="100%" border=0 cellspacing=0 cellpadding=1 bgcolor="#aaaaaa"><tr valign=bottom><td><a href="configure.in?sortby=rev"><IMG SRC="http://www.nevrax.org/inc/img/picto-up.gif" ALT="[BACK]" BORDER="0" WIDTH="14" HEIGHT="13"></a> <b>Return to <A HREF="configure.in?sortby=rev">configure.in</A>
+ CVS log</b> <IMG SRC="http://www.nevrax.org/inc/img/picto-news.gif" ALT="[TXT]" BORDER="0" WIDTH="13" HEIGHT="15"></td><td align=right><IMG SRC="http://www.nevrax.org/inc/img/picto-dir.gif" ALT="[DIR]" BORDER="0" WIDTH="15" HEIGHT="13"> <b>Up to <a href="/cvs/cvsweb.cgi/?sortby=rev">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/?sortby=rev">code</a> / <a href="/cvs/cvsweb.cgi/code/snowballs2/?sortby=rev">snowballs2</a></b></td></tr></table><HR noshade><table width="100%"><tr><td bgcolor="#ffffff">File: <a href="/cvs/cvsweb.cgi/?sortby=rev">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/?sortby=rev">code</a> / <a href="/cvs/cvsweb.cgi/code/snowballs2/?sortby=rev">snowballs2</a> / <a href="/cvs/cvsweb.cgi/code/snowballs2/configure.in?sortby=rev">configure.in</a>&nbsp;(<A HREF="/cvs/cvsweb.cgi/~checkout~/code/snowballs2/configure.in?rev=1.15&amp;sortby=rev" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/snowballs2/configure.in?rev=1.15','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>)<BR>
+Revision <B>1.15</B>, <i>Tue Apr 16 12:01:39 2002 UTC</i> (2 months, 2 weeks ago) by <i>valignat</i>
+<BR>Branch: <b>MAIN</b>
+<BR>CVS Tags: <b>HEAD</b><BR>Changes since <b>1.14: +3 -6
+ lines</b><PRE>
+ADDED a configure option to explicitly activate the use of the ccache (<A HREF="http://ccache.samba.org">http://ccache.samba.org</A>) utility.
+</PRE>
+</td></tr></table><HR noshade><PRE>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=&quot;$CFLAGS &quot;
+CXXFLAGS=&quot;$CXXFLAGS &quot;
+
+
+dnl ====================================================================
+dnl Checks Snowballs modules (Client / Server) to install / Disable
+dnl ====================================================================
+
+SNO_SUBDIRS=&quot;&quot;
+
+dnl Client
+AC_ARG_ENABLE( client,
+ &nbsp; &nbsp;[ &nbsp;--disable-client &nbsp; &nbsp; &nbsp; &nbsp;disable compilation and install of Snowballs Client.],
+ &nbsp; &nbsp;[ AC_MSG_RESULT(disable Snowballs Client.) ],
+ &nbsp; &nbsp;[ SNO_SUBDIRS=&quot;$SNO_SUBDIRS client&quot;
+ &nbsp; &nbsp; &nbsp;enable_client=&quot;yes&quot; ] )
+
+dnl Server
+AC_ARG_ENABLE( server,
+ &nbsp; &nbsp;[ &nbsp;--disable-server &nbsp; &nbsp; &nbsp; &nbsp;disable compilation and install of Snowballs Server.],
+ &nbsp; &nbsp;[ AC_MSG_RESULT(disable Snowballs Server.) ],
+ &nbsp; &nbsp;[ SNO_SUBDIRS=&quot;$SNO_SUBDIRS server&quot;
+ &nbsp; &nbsp; &nbsp;enable_server=&quot;yes&quot; ] )
+
+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 ! &quot;$no_x&quot; = &quot;yes&quot; ; then
+ &nbsp; &nbsp;if test ! X&quot;$x_libraries&quot; = X
+ &nbsp; &nbsp;then
+ &nbsp; &nbsp; &nbsp; &nbsp;LIBS=&quot;$LIBS -L$x_libraries&quot;
+ &nbsp; &nbsp;fi
+ &nbsp; &nbsp;if test ! X&quot;$x_includes&quot; = X
+ &nbsp; &nbsp;then
+ &nbsp; &nbsp; &nbsp; &nbsp;CXXFLAGS=&quot;$CXXFLAGS -I$x_includes&quot;
+ &nbsp; &nbsp;fi
+else
+ &nbsp; &nbsp;if test &quot;$enable_client&quot; = &quot;yes&quot;
+ &nbsp; &nbsp;then
+ &nbsp; &nbsp; &nbsp; &nbsp;AC_MSG_ERROR(X11 must be installed.)
+ &nbsp; &nbsp;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 &nbsp; &nbsp; &nbsp; &nbsp; misc &nbsp; net &nbsp; &nbsp;3d &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;pacs &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;sound &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ai &nbsp; &nbsp;georges
+AM_PATH_NEL(&quot;yes&quot;, &quot;yes&quot;, $enable_client, $enable_client, $enable_client, &quot;no&quot;, &quot;no&quot;)
+
+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 &quot;x$prefix&quot; = xNONE &amp;&amp; prefix=$ac_default_prefix
+
+AC_ARG_WITH(database,
+ &nbsp; &nbsp;[ &nbsp;--with-database[=DIR]
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use DIR instead of the default datadir/games/snowballs],
+ &nbsp; &nbsp;[database=$withval],
+ &nbsp; &nbsp;[database='${datadir}/games/snowballs'])
+eval eval SNOWBALLS_DATABASE=\&quot;$database/\&quot;
+AC_SUBST(SNOWBALLS_DATABASE)
+
+AC_ARG_WITH(sysconfdir,
+ &nbsp; &nbsp;[ &nbsp;--with-sysconfdir[=DIR]
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use DIR instead of the default sysconfdir/snowballs],
+ &nbsp; &nbsp;[pkgsysconfdir=$withval],
+ &nbsp; &nbsp;[pkgsysconfdir='${sysconfdir}/snowballs'])
+AC_SUBST(pkgsysconfdir)
+
+eval eval SNOWBALLS_CONFIG=\&quot;$pkgsysconfdir/\&quot;
+AC_DEFINE_UNQUOTED(SNOWBALLS_CONFIG, &quot;$SNOWBALLS_CONFIG&quot;)
+
+AC_ARG_WITH(logdir,
+ &nbsp; &nbsp;[ &nbsp;--with-logdir[=DIR]
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use DIR instead of the default localstatedir/log/snowballs],
+ &nbsp; &nbsp;[logdir=$withval],
+ &nbsp; &nbsp;[logdir='${localstatedir}/log/snowballs'])
+AC_SUBST(logdir)
+
+eval eval SNOWBALLS_LOGS=\&quot;$logdir/\&quot;
+AC_DEFINE_UNQUOTED(SNOWBALLS_LOGS, &quot;$SNOWBALLS_LOGS&quot;)
+
+dnl ====================================================================
+dnl Output files to generate.
+dnl ====================================================================
+
+AC_OUTPUT( Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; client/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; client/client.cfg &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; client/src/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; server/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; server/frontend/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; server/frontend/src/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; server/chat/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; server/chat/src/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; server/position/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; server/position/src/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
+)
+
+
+dnl End of configure.in
+
+</PRE> \ No newline at end of file