aboutsummaryrefslogtreecommitdiff
path: root/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text
diff options
context:
space:
mode:
Diffstat (limited to 'cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text')
-rw-r--r--cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html302
-rw-r--r--cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=author/index.html302
-rw-r--r--cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=date/index.html302
-rw-r--r--cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=log/index.html154
-rw-r--r--cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=rev/index.html302
5 files changed, 1362 insertions, 0 deletions
diff --git a/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html
new file mode 100644
index 00000000..6c86a597
--- /dev/null
+++ b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html
@@ -0,0 +1,302 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML>
+<HEAD><style> A { color:black }</style>
+<!-- hennerik CVSweb $Revision: 1.93 $ -->
+<TITLE>code/nelns/configure.in - view - 1.3</TITLE></HEAD>
+<BODY BGCOLOR="#eeeeee">
+<table width="100%" border=0 cellspacing=0 cellpadding=1 bgcolor="#aaaaaa"><tr valign=bottom><td><a href="configure.in?only_with_tag=MAIN"><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?only_with_tag=MAIN">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/?only_with_tag=MAIN">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/?only_with_tag=MAIN">code</a> / <a href="/cvs/cvsweb.cgi/code/nelns/?only_with_tag=MAIN">nelns</a></b></td></tr></table><HR noshade><table width="100%"><tr><td bgcolor="#ffffff">File: <a href="/cvs/cvsweb.cgi/?only_with_tag=MAIN">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/?only_with_tag=MAIN">code</a> / <a href="/cvs/cvsweb.cgi/code/nelns/?only_with_tag=MAIN">nelns</a> / <a href="/cvs/cvsweb.cgi/code/nelns/configure.in?only_with_tag=MAIN">configure.in</a>&nbsp;(<A HREF="/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.3&amp;only_with_tag=MAIN" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.3','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>)<BR>
+Revision <B>1.3</B>, <i>Mon Jun 18 14:04:46 2001 UTC</i> (13 months, 1 week ago) by <i>valignat</i>
+<BR>Branch: <b>MAIN</b>
+<BR>Changes since <b>1.2: +1 -4
+ lines</b><PRE>
+REMOVED the agnet_service from NELNS compilatiom/install process.
+</PRE>
+</td></tr></table><HR noshade><PRE>dnl
+dnl Configuration script for NeLNS
+dnl
+dnl $Id: configure.in,v 1.3 2001/06/18 14:04:46 valignat Exp $
+dnl
+
+dnl Process this file with autoconf to produce a configure script.
+
+AC_INIT(log_service/log_service.h)
+
+MAJOR_VERSION=0
+MINOR_VERSION=3
+PICO_VERSION=0
+
+AM_INIT_AUTOMAKE(netns, $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 for programs.
+
+AC_PROG_MAKE_SET
+
+AC_PROG_CC
+AC_PROG_CXX
+
+AM_PROG_LIBTOOL
+
+AM_SANITY_CHECK
+
+AC_PROG_INSTALL
+
+
+dnl ==========
+dnl Python
+dnl ==========
+
+AC_ARG_WITH( python,
+ &nbsp; &nbsp;[ &nbsp;--with-python=&lt;path&gt; &nbsp; &nbsp;path to the Python prefix installation directory.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local],
+ &nbsp; &nbsp;[PYTHON_PREFIX=$withval
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using Python located in $withval.)]
+)
+
+if test ! &quot;$PYTHON_PREFIX&quot; = &quot;&quot;
+then
+ &nbsp; &nbsp;PATH=&quot;$PYTHON_PREFIX/bin:$PATH&quot;
+fi
+
+AC_ARG_WITH( python-version,
+ &nbsp; &nbsp;[ &nbsp;--with-python-version=&lt;version&gt;
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Python version to use, e.g. 1.5],
+ &nbsp; &nbsp;[PYTHON_VERSION=$withval
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using Python $withval.)]
+)
+
+if test ! &quot;$PYTHON_VERSION&quot; = &quot;&quot;
+then
+ &nbsp; &nbsp;PYTHON_EXEC=&quot;python$PYTHON_VERSION&quot;
+else
+ &nbsp; &nbsp;PYTHON_EXEC=&quot;python python2.0 python1.5&quot;
+fi
+
+AC_PATH_PROGS(PYTHON, $PYTHON_EXEC, no, $PATH)
+if test &quot;$PYTHON&quot; = &quot;no&quot;;
+then
+ &nbsp; &nbsp;AC_MSG_ERROR([Python is needed to compile NeL (www.python.org)])
+fi
+
+
+dnl ====================================================================
+dnl Configure Settings
+
+AC_LANG_CPLUSPLUS
+
+
+dnl ====================================================================
+dnl Checks for typedefs, structures, and compiler characteristics.
+
+AC_C_CONST
+
+dnl Add the define _REENTRANT for a correct use of the threads
+if test &quot;X$CC&quot; = &quot;Xgcc&quot;;
+then
+ &nbsp; &nbsp;CXXFLAGS=&quot;$CXXFLAGS -D_REENTRANT&quot;
+fi
+
+
+dnl ====================================================================
+dnl Checks for header files.
+
+AC_STDC_HEADERS
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+
+dnl ==========
+dnl STLPort
+dnl ==========
+
+dnl Ask user for path to the STLport header files
+AC_ARG_WITH( stlport,
+ &nbsp; &nbsp;[ &nbsp;--with-stlport=&lt;path&gt; &nbsp; path to the STLPort header files directory.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local/include/stlport],
+ &nbsp; &nbsp;[STLPORT_DIR=$with_stlport
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using STLPort header files located in $with_stlport)],
+ &nbsp; &nbsp;AC_MSG_ERROR([You must call configure with the --with-stlport option.
+ &nbsp; &nbsp;This tells configure where to find the STLPort header files.
+ &nbsp; &nbsp;e.g. --with-stlport=/usr/local/include/stlport])
+)
+
+if test X&quot;$STLPORT_DIR&quot; != X&quot;&quot;;
+then
+ &nbsp; &nbsp;CXXFLAGS=&quot;-I$STLPORT_DIR $CXXFLAGS&quot;
+fi
+
+dnl Ask user for path to the STLPort library files
+AC_ARG_WITH( stllib,
+ &nbsp; &nbsp;[ &nbsp;--with-stllib=&lt;path&gt; &nbsp; &nbsp;path to the STLPort installation directory.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local/lib/stlport],
+ &nbsp; &nbsp;[STLLIB_DIR=$with_stllib
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using STLPort library located in $with_stllib)]
+)
+
+if test X&quot;$STLLIB_DIR&quot; != X&quot;&quot;;
+then
+ &nbsp; &nbsp;LIBS=&quot;-L$STLLIB_DIR $LIBS&quot;
+fi
+
+LIBS=&quot;$LIBS -lstlport_gcc&quot;
+
+_CPPFLAGS=&quot;$CPPFLAGS&quot;
+CPPFLAGS=&quot;$CXXFLAGS&quot;
+
+AC_MSG_CHECKING(for STLPort)
+AC_EGREP_CPP( yo_stlport,
+[#include &lt;algorithm&gt;
+#ifdef __SGI_STL_PORT
+ &nbsp; yo_stlport
+#endif],
+[AC_MSG_RESULT(yes)],
+AC_MSG_ERROR([STLPort is needed to compile NeLNS (www.stlport.org)])
+)
+
+CPPFLAGS=&quot;$_CPPFLAGS&quot;
+
+
+dnl ==========
+dnl NeL
+dnl ==========
+
+dnl Ask user for path to the NeL header files
+AC_ARG_WITH( nel,
+ &nbsp; &nbsp;[ &nbsp;--with-nel=&lt;prefix&gt; &nbsp; &nbsp; prefix to the NeL files installation.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local/include],
+ &nbsp; &nbsp;[NEL_DIR=$with_nel
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using NeL header files located in $with_nel)]
+)
+
+if test X&quot;$NEL_DIR&quot; != X&quot;&quot;;
+then
+ &nbsp; &nbsp;CXXFLAGS=&quot;-I$NEL_DIR/include $CXXFLAGS&quot;
+ &nbsp; &nbsp;LIBS=&quot;-L$NEL_DIR/lib $LIBS&quot;
+fi
+
+_CPPFLAGS=&quot;$CPPFLAGS&quot;
+CPPFLAGS=&quot;$CXXFLAGS&quot;
+
+AC_MSG_CHECKING(for NeL)
+AC_EGREP_CPP( yo_nel,
+[#include &lt;nel/net.h&gt;
+#ifdef NL_NET_H
+ &nbsp; yo_nel
+#endif],
+[AC_MSG_RESULT(yes)],
+AC_MSG_ERROR([NeL is needed to compile the NeLNS (www.nevrax.org)])
+)
+
+
+dnl ==========
+dnl Python
+dnl ==========
+
+PYTHON_PREFIX=`$PYTHON -c 'import sys; print &quot;%s&quot; % (sys.prefix)'`
+PYTHON_VERSION=`$PYTHON -c 'import sys; print &quot;%s&quot; % (sys.version[[:3]])'`
+
+PYTHON_CFLAGS=&quot;-I$PYTHON_PREFIX/include/python$PYTHON_VERSION&quot;
+PYTHON_LIBS=&quot;-L$PYTHON_PREFIX/lib/python$PYTHON_VERSION/config -lpython$PYTHON_VERSION&quot;
+
+_CPPFLAGS=&quot;$CPPFLAGS&quot;
+CPPFLAGS=&quot;$CXXFLAGS ${PYTHON_CFLAGS}&quot;
+
+AC_SUBST(PYTHON_CFLAGS)
+
+AC_MSG_CHECKING(for Python header files)
+AC_EGREP_CPP( yo_python,
+[#include &lt;Python.h&gt;
+ &nbsp; yo_python
+],
+[AC_MSG_RESULT(ok)],
+AC_MSG_ERROR([Python is needed to compile NeL (www.python.org).])
+)
+
+CPPFLAGS=&quot;$_CPPFLAGS&quot;
+
+AC_SUBST(PYTHON_CFLAGS)
+AC_SUBST(PYTHON_LIBS)
+
+
+dnl ==========
+dnl Debug/optimized compilation mode
+dnl ==========
+
+MAX_C_OPTIMIZE=&quot;-O6&quot;
+
+dnl Build optimized or debug version ?
+dnl First check for gcc and g++
+if test &quot;$ac_cv_prog_gcc&quot; = &quot;yes&quot;
+then
+ &nbsp;DEBUG_CFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CC=&quot;-O&quot;
+ &nbsp;OPTIMIZE_CFLAGS=&quot;$MAX_C_OPTIMIZE&quot;
+else
+ &nbsp;DEBUG_CFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CC=&quot;&quot;
+ &nbsp;OPTIMIZE_CFLAGS=&quot;-O&quot;
+fi
+if test &quot;$ac_cv_prog_cxx_g&quot; = &quot;yes&quot;
+then
+ &nbsp;DEBUG_CXXFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CXX=&quot;-O&quot;
+ &nbsp;OPTIMIZE_CXXFLAGS=&quot;-O3&quot;
+else
+ &nbsp;DEBUG_CXXFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CXX=&quot;&quot;
+ &nbsp;OPTIMIZE_CXXFLAGS=&quot;-O&quot;
+fi
+AC_ARG_WITH(debug,
+ &nbsp; &nbsp;[ &nbsp;--with-debug[=full] &nbsp; &nbsp; Build a debug version (huge libraries)
+ &nbsp;--without-debug &nbsp; &nbsp; &nbsp; &nbsp; Build withoug debugging code (default)],
+ &nbsp; &nbsp;[with_debug=$withval],
+ &nbsp; &nbsp;[with_debug=no])
+if test &quot;$with_debug&quot; = &quot;yes&quot;
+then
+ &nbsp;dnl Medium debug.
+ &nbsp;CFLAGS=&quot;$DEBUG_CFLAGS $DEBUG_OPTIMIZE_CC $CFLAGS&quot;
+ &nbsp;CXXFLAGS=&quot;$DEBUG_CXXFLAGS $DEBUG_OPTIMIZE_CXX $CXXFLAGS&quot;
+elif test &quot;$with_debug&quot; = &quot;full&quot;
+then
+ &nbsp;dnl Full debug. Very slow in some cases
+ &nbsp;CFLAGS=&quot;$DEBUG_CFLAGS $CFLAGS&quot;
+ &nbsp;CXXFLAGS=&quot;$DEBUG_CXXFLAGS $CXXFLAGS&quot;
+else
+ &nbsp;dnl Optimized version. No debug
+ &nbsp;CFLAGS=&quot;$OPTIMIZE_CFLAGS $CFLAGS&quot;
+ &nbsp;CXXFLAGS=&quot;$OPTIMIZE_CXXFLAGS $CXXFLAGS&quot;
+fi
+
+
+dnl ====================================================================
+dnl Checks for libraries.
+
+
+dnl ====================================================================
+dnl Checks for library functions.
+
+
+dnl ====================================================================
+dnl Output files to generate.
+
+AC_OUTPUT( Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; login_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; log_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; naming_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; time_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; admin_executor_service/Makefile \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; admin_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; welcome_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp;\
+)
+
+
+dnl End of configure.in
+</PRE> \ No newline at end of file
diff --git a/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=author/index.html b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=author/index.html
new file mode 100644
index 00000000..a4485657
--- /dev/null
+++ b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=author/index.html
@@ -0,0 +1,302 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML>
+<HEAD><style> A { color:black }</style>
+<!-- hennerik CVSweb $Revision: 1.93 $ -->
+<TITLE>code/nelns/configure.in - view - 1.3</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=author"><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=author">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=author">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/?sortby=author">code</a> / <a href="/cvs/cvsweb.cgi/code/nelns/?sortby=author">nelns</a></b></td></tr></table><HR noshade><table width="100%"><tr><td bgcolor="#ffffff">File: <a href="/cvs/cvsweb.cgi/?sortby=author">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/?sortby=author">code</a> / <a href="/cvs/cvsweb.cgi/code/nelns/?sortby=author">nelns</a> / <a href="/cvs/cvsweb.cgi/code/nelns/configure.in?sortby=author">configure.in</a>&nbsp;(<A HREF="/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.3&amp;sortby=author" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.3','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>)<BR>
+Revision <B>1.3</B>, <i>Mon Jun 18 14:04:46 2001 UTC</i> (13 months, 1 week ago) by <i>valignat</i>
+<BR>Branch: <b>MAIN</b>
+<BR>Changes since <b>1.2: +1 -4
+ lines</b><PRE>
+REMOVED the agnet_service from NELNS compilatiom/install process.
+</PRE>
+</td></tr></table><HR noshade><PRE>dnl
+dnl Configuration script for NeLNS
+dnl
+dnl $Id: configure.in,v 1.3 2001/06/18 14:04:46 valignat Exp $
+dnl
+
+dnl Process this file with autoconf to produce a configure script.
+
+AC_INIT(log_service/log_service.h)
+
+MAJOR_VERSION=0
+MINOR_VERSION=3
+PICO_VERSION=0
+
+AM_INIT_AUTOMAKE(netns, $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 for programs.
+
+AC_PROG_MAKE_SET
+
+AC_PROG_CC
+AC_PROG_CXX
+
+AM_PROG_LIBTOOL
+
+AM_SANITY_CHECK
+
+AC_PROG_INSTALL
+
+
+dnl ==========
+dnl Python
+dnl ==========
+
+AC_ARG_WITH( python,
+ &nbsp; &nbsp;[ &nbsp;--with-python=&lt;path&gt; &nbsp; &nbsp;path to the Python prefix installation directory.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local],
+ &nbsp; &nbsp;[PYTHON_PREFIX=$withval
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using Python located in $withval.)]
+)
+
+if test ! &quot;$PYTHON_PREFIX&quot; = &quot;&quot;
+then
+ &nbsp; &nbsp;PATH=&quot;$PYTHON_PREFIX/bin:$PATH&quot;
+fi
+
+AC_ARG_WITH( python-version,
+ &nbsp; &nbsp;[ &nbsp;--with-python-version=&lt;version&gt;
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Python version to use, e.g. 1.5],
+ &nbsp; &nbsp;[PYTHON_VERSION=$withval
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using Python $withval.)]
+)
+
+if test ! &quot;$PYTHON_VERSION&quot; = &quot;&quot;
+then
+ &nbsp; &nbsp;PYTHON_EXEC=&quot;python$PYTHON_VERSION&quot;
+else
+ &nbsp; &nbsp;PYTHON_EXEC=&quot;python python2.0 python1.5&quot;
+fi
+
+AC_PATH_PROGS(PYTHON, $PYTHON_EXEC, no, $PATH)
+if test &quot;$PYTHON&quot; = &quot;no&quot;;
+then
+ &nbsp; &nbsp;AC_MSG_ERROR([Python is needed to compile NeL (www.python.org)])
+fi
+
+
+dnl ====================================================================
+dnl Configure Settings
+
+AC_LANG_CPLUSPLUS
+
+
+dnl ====================================================================
+dnl Checks for typedefs, structures, and compiler characteristics.
+
+AC_C_CONST
+
+dnl Add the define _REENTRANT for a correct use of the threads
+if test &quot;X$CC&quot; = &quot;Xgcc&quot;;
+then
+ &nbsp; &nbsp;CXXFLAGS=&quot;$CXXFLAGS -D_REENTRANT&quot;
+fi
+
+
+dnl ====================================================================
+dnl Checks for header files.
+
+AC_STDC_HEADERS
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+
+dnl ==========
+dnl STLPort
+dnl ==========
+
+dnl Ask user for path to the STLport header files
+AC_ARG_WITH( stlport,
+ &nbsp; &nbsp;[ &nbsp;--with-stlport=&lt;path&gt; &nbsp; path to the STLPort header files directory.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local/include/stlport],
+ &nbsp; &nbsp;[STLPORT_DIR=$with_stlport
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using STLPort header files located in $with_stlport)],
+ &nbsp; &nbsp;AC_MSG_ERROR([You must call configure with the --with-stlport option.
+ &nbsp; &nbsp;This tells configure where to find the STLPort header files.
+ &nbsp; &nbsp;e.g. --with-stlport=/usr/local/include/stlport])
+)
+
+if test X&quot;$STLPORT_DIR&quot; != X&quot;&quot;;
+then
+ &nbsp; &nbsp;CXXFLAGS=&quot;-I$STLPORT_DIR $CXXFLAGS&quot;
+fi
+
+dnl Ask user for path to the STLPort library files
+AC_ARG_WITH( stllib,
+ &nbsp; &nbsp;[ &nbsp;--with-stllib=&lt;path&gt; &nbsp; &nbsp;path to the STLPort installation directory.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local/lib/stlport],
+ &nbsp; &nbsp;[STLLIB_DIR=$with_stllib
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using STLPort library located in $with_stllib)]
+)
+
+if test X&quot;$STLLIB_DIR&quot; != X&quot;&quot;;
+then
+ &nbsp; &nbsp;LIBS=&quot;-L$STLLIB_DIR $LIBS&quot;
+fi
+
+LIBS=&quot;$LIBS -lstlport_gcc&quot;
+
+_CPPFLAGS=&quot;$CPPFLAGS&quot;
+CPPFLAGS=&quot;$CXXFLAGS&quot;
+
+AC_MSG_CHECKING(for STLPort)
+AC_EGREP_CPP( yo_stlport,
+[#include &lt;algorithm&gt;
+#ifdef __SGI_STL_PORT
+ &nbsp; yo_stlport
+#endif],
+[AC_MSG_RESULT(yes)],
+AC_MSG_ERROR([STLPort is needed to compile NeLNS (www.stlport.org)])
+)
+
+CPPFLAGS=&quot;$_CPPFLAGS&quot;
+
+
+dnl ==========
+dnl NeL
+dnl ==========
+
+dnl Ask user for path to the NeL header files
+AC_ARG_WITH( nel,
+ &nbsp; &nbsp;[ &nbsp;--with-nel=&lt;prefix&gt; &nbsp; &nbsp; prefix to the NeL files installation.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local/include],
+ &nbsp; &nbsp;[NEL_DIR=$with_nel
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using NeL header files located in $with_nel)]
+)
+
+if test X&quot;$NEL_DIR&quot; != X&quot;&quot;;
+then
+ &nbsp; &nbsp;CXXFLAGS=&quot;-I$NEL_DIR/include $CXXFLAGS&quot;
+ &nbsp; &nbsp;LIBS=&quot;-L$NEL_DIR/lib $LIBS&quot;
+fi
+
+_CPPFLAGS=&quot;$CPPFLAGS&quot;
+CPPFLAGS=&quot;$CXXFLAGS&quot;
+
+AC_MSG_CHECKING(for NeL)
+AC_EGREP_CPP( yo_nel,
+[#include &lt;nel/net.h&gt;
+#ifdef NL_NET_H
+ &nbsp; yo_nel
+#endif],
+[AC_MSG_RESULT(yes)],
+AC_MSG_ERROR([NeL is needed to compile the NeLNS (www.nevrax.org)])
+)
+
+
+dnl ==========
+dnl Python
+dnl ==========
+
+PYTHON_PREFIX=`$PYTHON -c 'import sys; print &quot;%s&quot; % (sys.prefix)'`
+PYTHON_VERSION=`$PYTHON -c 'import sys; print &quot;%s&quot; % (sys.version[[:3]])'`
+
+PYTHON_CFLAGS=&quot;-I$PYTHON_PREFIX/include/python$PYTHON_VERSION&quot;
+PYTHON_LIBS=&quot;-L$PYTHON_PREFIX/lib/python$PYTHON_VERSION/config -lpython$PYTHON_VERSION&quot;
+
+_CPPFLAGS=&quot;$CPPFLAGS&quot;
+CPPFLAGS=&quot;$CXXFLAGS ${PYTHON_CFLAGS}&quot;
+
+AC_SUBST(PYTHON_CFLAGS)
+
+AC_MSG_CHECKING(for Python header files)
+AC_EGREP_CPP( yo_python,
+[#include &lt;Python.h&gt;
+ &nbsp; yo_python
+],
+[AC_MSG_RESULT(ok)],
+AC_MSG_ERROR([Python is needed to compile NeL (www.python.org).])
+)
+
+CPPFLAGS=&quot;$_CPPFLAGS&quot;
+
+AC_SUBST(PYTHON_CFLAGS)
+AC_SUBST(PYTHON_LIBS)
+
+
+dnl ==========
+dnl Debug/optimized compilation mode
+dnl ==========
+
+MAX_C_OPTIMIZE=&quot;-O6&quot;
+
+dnl Build optimized or debug version ?
+dnl First check for gcc and g++
+if test &quot;$ac_cv_prog_gcc&quot; = &quot;yes&quot;
+then
+ &nbsp;DEBUG_CFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CC=&quot;-O&quot;
+ &nbsp;OPTIMIZE_CFLAGS=&quot;$MAX_C_OPTIMIZE&quot;
+else
+ &nbsp;DEBUG_CFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CC=&quot;&quot;
+ &nbsp;OPTIMIZE_CFLAGS=&quot;-O&quot;
+fi
+if test &quot;$ac_cv_prog_cxx_g&quot; = &quot;yes&quot;
+then
+ &nbsp;DEBUG_CXXFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CXX=&quot;-O&quot;
+ &nbsp;OPTIMIZE_CXXFLAGS=&quot;-O3&quot;
+else
+ &nbsp;DEBUG_CXXFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CXX=&quot;&quot;
+ &nbsp;OPTIMIZE_CXXFLAGS=&quot;-O&quot;
+fi
+AC_ARG_WITH(debug,
+ &nbsp; &nbsp;[ &nbsp;--with-debug[=full] &nbsp; &nbsp; Build a debug version (huge libraries)
+ &nbsp;--without-debug &nbsp; &nbsp; &nbsp; &nbsp; Build withoug debugging code (default)],
+ &nbsp; &nbsp;[with_debug=$withval],
+ &nbsp; &nbsp;[with_debug=no])
+if test &quot;$with_debug&quot; = &quot;yes&quot;
+then
+ &nbsp;dnl Medium debug.
+ &nbsp;CFLAGS=&quot;$DEBUG_CFLAGS $DEBUG_OPTIMIZE_CC $CFLAGS&quot;
+ &nbsp;CXXFLAGS=&quot;$DEBUG_CXXFLAGS $DEBUG_OPTIMIZE_CXX $CXXFLAGS&quot;
+elif test &quot;$with_debug&quot; = &quot;full&quot;
+then
+ &nbsp;dnl Full debug. Very slow in some cases
+ &nbsp;CFLAGS=&quot;$DEBUG_CFLAGS $CFLAGS&quot;
+ &nbsp;CXXFLAGS=&quot;$DEBUG_CXXFLAGS $CXXFLAGS&quot;
+else
+ &nbsp;dnl Optimized version. No debug
+ &nbsp;CFLAGS=&quot;$OPTIMIZE_CFLAGS $CFLAGS&quot;
+ &nbsp;CXXFLAGS=&quot;$OPTIMIZE_CXXFLAGS $CXXFLAGS&quot;
+fi
+
+
+dnl ====================================================================
+dnl Checks for libraries.
+
+
+dnl ====================================================================
+dnl Checks for library functions.
+
+
+dnl ====================================================================
+dnl Output files to generate.
+
+AC_OUTPUT( Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; login_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; log_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; naming_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; time_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; admin_executor_service/Makefile \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; admin_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; welcome_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp;\
+)
+
+
+dnl End of configure.in
+</PRE> \ No newline at end of file
diff --git a/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=date/index.html b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=date/index.html
new file mode 100644
index 00000000..b167ccb0
--- /dev/null
+++ b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=date/index.html
@@ -0,0 +1,302 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML>
+<HEAD><style> A { color:black }</style>
+<!-- hennerik CVSweb $Revision: 1.93 $ -->
+<TITLE>code/nelns/configure.in - view - 1.3</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=date"><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=date">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=date">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/?sortby=date">code</a> / <a href="/cvs/cvsweb.cgi/code/nelns/?sortby=date">nelns</a></b></td></tr></table><HR noshade><table width="100%"><tr><td bgcolor="#ffffff">File: <a href="/cvs/cvsweb.cgi/?sortby=date">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/?sortby=date">code</a> / <a href="/cvs/cvsweb.cgi/code/nelns/?sortby=date">nelns</a> / <a href="/cvs/cvsweb.cgi/code/nelns/configure.in?sortby=date">configure.in</a>&nbsp;(<A HREF="/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.3&amp;sortby=date" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.3','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>)<BR>
+Revision <B>1.3</B>, <i>Mon Jun 18 14:04:46 2001 UTC</i> (13 months, 1 week ago) by <i>valignat</i>
+<BR>Branch: <b>MAIN</b>
+<BR>Changes since <b>1.2: +1 -4
+ lines</b><PRE>
+REMOVED the agnet_service from NELNS compilatiom/install process.
+</PRE>
+</td></tr></table><HR noshade><PRE>dnl
+dnl Configuration script for NeLNS
+dnl
+dnl $Id: configure.in,v 1.3 2001/06/18 14:04:46 valignat Exp $
+dnl
+
+dnl Process this file with autoconf to produce a configure script.
+
+AC_INIT(log_service/log_service.h)
+
+MAJOR_VERSION=0
+MINOR_VERSION=3
+PICO_VERSION=0
+
+AM_INIT_AUTOMAKE(netns, $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 for programs.
+
+AC_PROG_MAKE_SET
+
+AC_PROG_CC
+AC_PROG_CXX
+
+AM_PROG_LIBTOOL
+
+AM_SANITY_CHECK
+
+AC_PROG_INSTALL
+
+
+dnl ==========
+dnl Python
+dnl ==========
+
+AC_ARG_WITH( python,
+ &nbsp; &nbsp;[ &nbsp;--with-python=&lt;path&gt; &nbsp; &nbsp;path to the Python prefix installation directory.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local],
+ &nbsp; &nbsp;[PYTHON_PREFIX=$withval
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using Python located in $withval.)]
+)
+
+if test ! &quot;$PYTHON_PREFIX&quot; = &quot;&quot;
+then
+ &nbsp; &nbsp;PATH=&quot;$PYTHON_PREFIX/bin:$PATH&quot;
+fi
+
+AC_ARG_WITH( python-version,
+ &nbsp; &nbsp;[ &nbsp;--with-python-version=&lt;version&gt;
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Python version to use, e.g. 1.5],
+ &nbsp; &nbsp;[PYTHON_VERSION=$withval
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using Python $withval.)]
+)
+
+if test ! &quot;$PYTHON_VERSION&quot; = &quot;&quot;
+then
+ &nbsp; &nbsp;PYTHON_EXEC=&quot;python$PYTHON_VERSION&quot;
+else
+ &nbsp; &nbsp;PYTHON_EXEC=&quot;python python2.0 python1.5&quot;
+fi
+
+AC_PATH_PROGS(PYTHON, $PYTHON_EXEC, no, $PATH)
+if test &quot;$PYTHON&quot; = &quot;no&quot;;
+then
+ &nbsp; &nbsp;AC_MSG_ERROR([Python is needed to compile NeL (www.python.org)])
+fi
+
+
+dnl ====================================================================
+dnl Configure Settings
+
+AC_LANG_CPLUSPLUS
+
+
+dnl ====================================================================
+dnl Checks for typedefs, structures, and compiler characteristics.
+
+AC_C_CONST
+
+dnl Add the define _REENTRANT for a correct use of the threads
+if test &quot;X$CC&quot; = &quot;Xgcc&quot;;
+then
+ &nbsp; &nbsp;CXXFLAGS=&quot;$CXXFLAGS -D_REENTRANT&quot;
+fi
+
+
+dnl ====================================================================
+dnl Checks for header files.
+
+AC_STDC_HEADERS
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+
+dnl ==========
+dnl STLPort
+dnl ==========
+
+dnl Ask user for path to the STLport header files
+AC_ARG_WITH( stlport,
+ &nbsp; &nbsp;[ &nbsp;--with-stlport=&lt;path&gt; &nbsp; path to the STLPort header files directory.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local/include/stlport],
+ &nbsp; &nbsp;[STLPORT_DIR=$with_stlport
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using STLPort header files located in $with_stlport)],
+ &nbsp; &nbsp;AC_MSG_ERROR([You must call configure with the --with-stlport option.
+ &nbsp; &nbsp;This tells configure where to find the STLPort header files.
+ &nbsp; &nbsp;e.g. --with-stlport=/usr/local/include/stlport])
+)
+
+if test X&quot;$STLPORT_DIR&quot; != X&quot;&quot;;
+then
+ &nbsp; &nbsp;CXXFLAGS=&quot;-I$STLPORT_DIR $CXXFLAGS&quot;
+fi
+
+dnl Ask user for path to the STLPort library files
+AC_ARG_WITH( stllib,
+ &nbsp; &nbsp;[ &nbsp;--with-stllib=&lt;path&gt; &nbsp; &nbsp;path to the STLPort installation directory.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local/lib/stlport],
+ &nbsp; &nbsp;[STLLIB_DIR=$with_stllib
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using STLPort library located in $with_stllib)]
+)
+
+if test X&quot;$STLLIB_DIR&quot; != X&quot;&quot;;
+then
+ &nbsp; &nbsp;LIBS=&quot;-L$STLLIB_DIR $LIBS&quot;
+fi
+
+LIBS=&quot;$LIBS -lstlport_gcc&quot;
+
+_CPPFLAGS=&quot;$CPPFLAGS&quot;
+CPPFLAGS=&quot;$CXXFLAGS&quot;
+
+AC_MSG_CHECKING(for STLPort)
+AC_EGREP_CPP( yo_stlport,
+[#include &lt;algorithm&gt;
+#ifdef __SGI_STL_PORT
+ &nbsp; yo_stlport
+#endif],
+[AC_MSG_RESULT(yes)],
+AC_MSG_ERROR([STLPort is needed to compile NeLNS (www.stlport.org)])
+)
+
+CPPFLAGS=&quot;$_CPPFLAGS&quot;
+
+
+dnl ==========
+dnl NeL
+dnl ==========
+
+dnl Ask user for path to the NeL header files
+AC_ARG_WITH( nel,
+ &nbsp; &nbsp;[ &nbsp;--with-nel=&lt;prefix&gt; &nbsp; &nbsp; prefix to the NeL files installation.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local/include],
+ &nbsp; &nbsp;[NEL_DIR=$with_nel
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using NeL header files located in $with_nel)]
+)
+
+if test X&quot;$NEL_DIR&quot; != X&quot;&quot;;
+then
+ &nbsp; &nbsp;CXXFLAGS=&quot;-I$NEL_DIR/include $CXXFLAGS&quot;
+ &nbsp; &nbsp;LIBS=&quot;-L$NEL_DIR/lib $LIBS&quot;
+fi
+
+_CPPFLAGS=&quot;$CPPFLAGS&quot;
+CPPFLAGS=&quot;$CXXFLAGS&quot;
+
+AC_MSG_CHECKING(for NeL)
+AC_EGREP_CPP( yo_nel,
+[#include &lt;nel/net.h&gt;
+#ifdef NL_NET_H
+ &nbsp; yo_nel
+#endif],
+[AC_MSG_RESULT(yes)],
+AC_MSG_ERROR([NeL is needed to compile the NeLNS (www.nevrax.org)])
+)
+
+
+dnl ==========
+dnl Python
+dnl ==========
+
+PYTHON_PREFIX=`$PYTHON -c 'import sys; print &quot;%s&quot; % (sys.prefix)'`
+PYTHON_VERSION=`$PYTHON -c 'import sys; print &quot;%s&quot; % (sys.version[[:3]])'`
+
+PYTHON_CFLAGS=&quot;-I$PYTHON_PREFIX/include/python$PYTHON_VERSION&quot;
+PYTHON_LIBS=&quot;-L$PYTHON_PREFIX/lib/python$PYTHON_VERSION/config -lpython$PYTHON_VERSION&quot;
+
+_CPPFLAGS=&quot;$CPPFLAGS&quot;
+CPPFLAGS=&quot;$CXXFLAGS ${PYTHON_CFLAGS}&quot;
+
+AC_SUBST(PYTHON_CFLAGS)
+
+AC_MSG_CHECKING(for Python header files)
+AC_EGREP_CPP( yo_python,
+[#include &lt;Python.h&gt;
+ &nbsp; yo_python
+],
+[AC_MSG_RESULT(ok)],
+AC_MSG_ERROR([Python is needed to compile NeL (www.python.org).])
+)
+
+CPPFLAGS=&quot;$_CPPFLAGS&quot;
+
+AC_SUBST(PYTHON_CFLAGS)
+AC_SUBST(PYTHON_LIBS)
+
+
+dnl ==========
+dnl Debug/optimized compilation mode
+dnl ==========
+
+MAX_C_OPTIMIZE=&quot;-O6&quot;
+
+dnl Build optimized or debug version ?
+dnl First check for gcc and g++
+if test &quot;$ac_cv_prog_gcc&quot; = &quot;yes&quot;
+then
+ &nbsp;DEBUG_CFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CC=&quot;-O&quot;
+ &nbsp;OPTIMIZE_CFLAGS=&quot;$MAX_C_OPTIMIZE&quot;
+else
+ &nbsp;DEBUG_CFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CC=&quot;&quot;
+ &nbsp;OPTIMIZE_CFLAGS=&quot;-O&quot;
+fi
+if test &quot;$ac_cv_prog_cxx_g&quot; = &quot;yes&quot;
+then
+ &nbsp;DEBUG_CXXFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CXX=&quot;-O&quot;
+ &nbsp;OPTIMIZE_CXXFLAGS=&quot;-O3&quot;
+else
+ &nbsp;DEBUG_CXXFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CXX=&quot;&quot;
+ &nbsp;OPTIMIZE_CXXFLAGS=&quot;-O&quot;
+fi
+AC_ARG_WITH(debug,
+ &nbsp; &nbsp;[ &nbsp;--with-debug[=full] &nbsp; &nbsp; Build a debug version (huge libraries)
+ &nbsp;--without-debug &nbsp; &nbsp; &nbsp; &nbsp; Build withoug debugging code (default)],
+ &nbsp; &nbsp;[with_debug=$withval],
+ &nbsp; &nbsp;[with_debug=no])
+if test &quot;$with_debug&quot; = &quot;yes&quot;
+then
+ &nbsp;dnl Medium debug.
+ &nbsp;CFLAGS=&quot;$DEBUG_CFLAGS $DEBUG_OPTIMIZE_CC $CFLAGS&quot;
+ &nbsp;CXXFLAGS=&quot;$DEBUG_CXXFLAGS $DEBUG_OPTIMIZE_CXX $CXXFLAGS&quot;
+elif test &quot;$with_debug&quot; = &quot;full&quot;
+then
+ &nbsp;dnl Full debug. Very slow in some cases
+ &nbsp;CFLAGS=&quot;$DEBUG_CFLAGS $CFLAGS&quot;
+ &nbsp;CXXFLAGS=&quot;$DEBUG_CXXFLAGS $CXXFLAGS&quot;
+else
+ &nbsp;dnl Optimized version. No debug
+ &nbsp;CFLAGS=&quot;$OPTIMIZE_CFLAGS $CFLAGS&quot;
+ &nbsp;CXXFLAGS=&quot;$OPTIMIZE_CXXFLAGS $CXXFLAGS&quot;
+fi
+
+
+dnl ====================================================================
+dnl Checks for libraries.
+
+
+dnl ====================================================================
+dnl Checks for library functions.
+
+
+dnl ====================================================================
+dnl Output files to generate.
+
+AC_OUTPUT( Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; login_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; log_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; naming_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; time_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; admin_executor_service/Makefile \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; admin_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; welcome_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp;\
+)
+
+
+dnl End of configure.in
+</PRE> \ No newline at end of file
diff --git a/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=log/index.html b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=log/index.html
new file mode 100644
index 00000000..739ca9b1
--- /dev/null
+++ b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=log/index.html
@@ -0,0 +1,154 @@
+<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+<HTML>
+<HEAD>
+ <TITLE>nevrax.org : cvs</TITLE>
+ <META name="keywords" content="freesoftware,nel,newt,snowballs,richard stallman,GNU,Multi-User Online World">
+
+ <LINK REL=stylesheet TYPE="text/css" HREF="http://www.nevrax.org/inc/css/nevrax.css">
+</HEAD>
+<BODY MARGINHEIGHT="0" MARGINWIDTH="0">
+
+<!-- uplinks -->
+<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0>
+ <TR>
+ <TD WIDTH=16><IMG SRC="http://www.nevrax.org/inc/img/pixel.gif" WIDTH="16" HEIGHT="16" BORDER=0 ALT=""></TD>
+ <TD WIDTH=140 BGCOLOR=#dddddd><IMG SRC="http://www.nevrax.org/inc/img/pixel.gif" WIDTH="140" HEIGHT="16" BORDER=0 ALT=""></TD>
+ <TD WIDTH=16><IMG SRC="http://www.nevrax.org/inc/img/pixel.gif" WIDTH="16" HEIGHT="16" BORDER=0 ALT=""></TD>
+ <TD><IMG width=6 height=14 SRC="http://www.nevrax.org/inc/img/reddots.gif" ALT="#" VSPACE=2 HSPACE=2 BORDER=0 ></TD><TD VALIGN=middle>&nbsp;<A CLASS=uplinks HREF=http://www.nevrax.org><b>Home</B></FONT></A>&nbsp;&nbsp;&nbsp;</TD>
+ <TD><IMG width=6 height=14 SRC="http://www.nevrax.org/inc/img/reddots.gif" ALT="#" VSPACE=2 HSPACE=2 BORDER=0 ></TD><TD VALIGN=middle>&nbsp;<A CLASS=uplinks HREF=http://www.nevrax.com><b>nevrax.com</B></FONT></A>&nbsp;&nbsp;&nbsp;</TD>
+ </TR>
+</TABLE>
+
+<!-- banner Nevrax -->
+<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 WIDTH=100%>
+ <TR><TD BGCOLOR="#000000" BACKGROUND="http://www.nevrax.org/inc/img/black_banner.jpg"><A HREF="http://www.nevrax.org"><IMG SRC="http://www.nevrax.org/inc/img/nevrax.gif" WIDTH="170" HEIGHT="45" BORDER=0 ALT="Nevrax" ></A></TD></TR>
+</TABLE>
+
+<!-- main table -->
+<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 height=100%>
+ <TR>
+ <TD WIDTH=16><IMG SRC="http://www.nevrax.org/inc/img/pixel.gif" WIDTH="16" HEIGHT="10" BORDER=0 ALT=""></TD>
+ <TD WIDTH=140 BGCOLOR=#dddddd VALIGN=TOP ALIGN=middle><IMG SRC="http://www.nevrax.org/inc/img/pixel.gif" WIDTH="140" HEIGHT="10" BORDER=0 ALT="">
+
+ <!------ Begin Box ------>
+ <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 BGCOLOR=black><TR><TD><TABLE border=0 cellspacing=2 cellpadding=0 width=120><tr><TD ALIGN=middle bgcolor=black>
+ <FONT COLOR=white FACE="sans-serif"><B>Nevrax.org</B></FONT></TD></TR><tr><td colspan=2 bgcolor=#FFFFFF>
+ <TABLE cellspacing=0 cellpadding=1 border=0>
+ <tr><td ALIGN=middle><a class='linkbox' href="http://www.nevrax.org/news/" TITLE="Rubrique news"><img width=13 height=15 hspace=5 border=0 src=http://www.nevrax.org/inc/img/picto-news.gif ALT=#></A></td><td><a class='linkbox' href="http://www.nevrax.org/news/" TITLE="News">News</a></td></tr>
+ <tr><td ALIGN=middle><a class='linkbox' href="http://www.nevrax.org/mail/" TITLE="Rubrique mail"><img width=15 height=11 hspace=5 border=0 src=http://www.nevrax.org/inc/img/picto-mail.gif ALT=#></A></td><td><a class='linkbox' href="http://www.nevrax.org/mail/" TITLE="Mailing list archive">Mailing-list</a></td></tr>
+ <tr><td ALIGN=middle><a class='linkbox' href="http://www.nevrax.org/docs/" TITLE="Rubrique docs"><img width=14 height=16 hspace=5 border=0 src=http://www.nevrax.org/inc/img/picto-docs.gif ALT=#></A></td><td><a class='linkbox' href="http://www.nevrax.org/docs/" TITLE="Documentation">Documentation</a></td></tr>
+ <tr><td ALIGN=middle><a class='linkbox' href="http://www.nevrax.org/cvs/" TITLE="Rubrique cvs"><img width=13 height=17 hspace=5 border=0 src=http://www.nevrax.org/inc/img/picto-cvs.gif ALT=#></A></td><td><a class='linkbox' href="http://www.nevrax.org/cvs/" TITLE="CVS Web">CVS</a></td></tr>
+ <tr><td ALIGN=middle><a class='linkbox' href="http://www.nevrax.org/bugs/" TITLE="Rubrique bugs"><img width=20 height=16 hspace=5 border=0 src=http://www.nevrax.org/inc/img/picto-bugs.gif ALT=#></A></td><td><a class='linkbox' href="http://www.nevrax.org/bugs/" TITLE="Bugtracking">Bugs</a></td></tr>
+ <tr><td ALIGN=middle><a class='linkbox' href="http://www.nevrax.org/free/" TITLE="Rubrique license"><img width=18 height=12 hspace=5 border=0 src=http://www.nevrax.org/inc/img/picto-free.gif ALT=#></A></td><td><a class='linkbox' href="http://www.nevrax.org/free/" TITLE="Free Software">Free software</a></td></tr>
+ </TABLE>
+ </TD></TR></TABLE></TD></TR></TABLE>
+ <!------ End Box ------>
+
+ </TD>
+ <TD WIDTH=15><IMG SRC="http://www.nevrax.org/inc/img/pixel.gif" WIDTH="16" HEIGHT="16" BORDER=0 ALT=""></TD>
+ <TD ALIGN=left valign=top><IMG SRC="http://www.nevrax.org/inc/img/pixel.gif" WIDTH="140" HEIGHT="10" BORDER=0 ALT="">
+
+<!-- title -->
+<TABLE background="http://www.nevrax.org/inc/img/redline.gif" CELLSPACING=0 CELLPADDING=0 BORDER=0 width=100%><tr><td>
+<A HREF="http://www.nevrax.org/cvs/"><img src="http://www.nevrax.org/inc/img/t_cvs.gif" ALT="cvs" HEIGHT=20 BORDER=0></A>
+</td><td><IMG SRC="http://www.nevrax.org/inc/img/pixel.gif" WIDTH="1" HEIGHT="1" BORDER=0 ALT="">
+</td></tr></table>
+
+<!-- title -->
+<table width=100%><tr><td align=left><b> <a href="/cvs/cvsweb.cgi/">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/">code</a> / <a href="/cvs/cvsweb.cgi/code/nelns/">nelns</a> / configure.in</b></td><td align=right><b></b></td></TR></TABLE>
+
+<!-- block -->
+<TABLE bgcolor="#dddddd" CELLSPACING=0 CELLPADDING=0 BORDER=0 width=100%><tr><td width=1% valign=middle><img width=6 height=14 hspace=2 vspace=2 src="http://www.nevrax.org/inc/img/reddots.gif"></TD>
+ <TD><B>configure.in</B></TD>
+ <TD ALIGN=RIGHT> </td>
+</tr></table>
+<P>
+<p>Default branch: MAIN<BR>
+<HR size=1 NOSHADE><P><a NAME="rev1.3"></a><a NAME="HEAD"></a><a NAME="MAIN"></a>
+ Revision <A HREF="configure.in?rev=1.3&amp;content-type=text/x-cvsweb-markup"><b>1.3</b></A> / (<A HREF="/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.3&amp;content-type=text/plain" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.3&amp;content-type=text/plain','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>) - <a href="/cvs/cvsweb.cgi/code/nelns/configure.in?annotate=1.3">annotate</a> - <A HREF="/cvs/cvsweb.cgi/code/nelns/configure.in?r1=1.3">[select for diffs]</A>
+, <i>Mon Jun 18 14:04:46 2001 UTC</i> (4 weeks, 4 days ago) by <i>valignat</i>
+<BR>Branch: <b><A HREF="configure.in?only_with_tag=MAIN">MAIN</A>
+</b>
+<BR>CVS Tags: <b><A HREF="configure.in?only_with_tag=HEAD">HEAD</A>
+</b><BR>Changes since <b>1.2: +1 -4
+ lines</b><BR>Diff to previous <A HREF="/cvs/cvsweb.cgi/code/nelns/configure.in.diff?r1=1.2&amp;r2=1.3">1.2</A>
+<PRE>
+REMOVED the agnet_service from NELNS compilatiom/install process.
+</PRE>
+<HR size=1 NOSHADE><P><a NAME="rev1.2"></a>
+ Revision <A HREF="configure.in?rev=1.2&amp;content-type=text/x-cvsweb-markup"><b>1.2</b></A> / (<A HREF="/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.2&amp;content-type=text/plain" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.2&amp;content-type=text/plain','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>) - <a href="/cvs/cvsweb.cgi/code/nelns/configure.in?annotate=1.2">annotate</a> - <A HREF="/cvs/cvsweb.cgi/code/nelns/configure.in?r1=1.2">[select for diffs]</A>
+, <i>Thu May 3 13:19:13 2001 UTC</i> (2 months, 2 weeks ago) by <i>lecroart</i>
+<BR>Branch: <b><A HREF="configure.in?only_with_tag=MAIN">MAIN</A>
+</b>
+<BR>Changes since <b>1.1: +3 -1
+ lines</b><BR>Diff to previous <A HREF="/cvs/cvsweb.cgi/code/nelns/configure.in.diff?r1=1.1&amp;r2=1.2">1.1</A>
+<PRE>
+BUGFIX: now compile on linux
+</PRE>
+<HR size=1 NOSHADE><P><a NAME="rev1.1"></a>
+ Revision <A HREF="configure.in?rev=1.1&amp;content-type=text/x-cvsweb-markup"><b>1.1</b></A> / (<A HREF="/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.1&amp;content-type=text/plain" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.1&amp;content-type=text/plain','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>) - <a href="/cvs/cvsweb.cgi/code/nelns/configure.in?annotate=1.1">annotate</a> - <A HREF="/cvs/cvsweb.cgi/code/nelns/configure.in?r1=1.1">[select for diffs]</A>
+, <i>Wed Apr 18 13:54:25 2001 UTC</i> (3 months ago) by <i>valignat</i>
+<BR>Branch: <b><A HREF="configure.in?only_with_tag=MAIN">MAIN</A>
+</b>
+<BR>Diff<PRE>
+RENAMED code/server to code/nelns.
+</PRE>
+
+<!-- block -->
+<TABLE bgcolor="#dddddd" CELLSPACING=0 CELLPADDING=0 BORDER=0 width=100%><tr><td width=1% valign=middle><img width=6 height=14 hspace=2 vspace=2 src="http://www.nevrax.org/inc/img/reddots.gif"></TD>
+ <TD><B>Request Diffs</B></TD>
+ <TD ALIGN=RIGHT> </td>
+</tr></table>
+<P>
+<P>
+<FORM METHOD="GET" ACTION="/cvs/cvsweb.cgi/code/nelns/configure.in.diff" NAME="diff_select">
+Diffs between
+<SELECT NAME="r1">
+<OPTION VALUE="text" SELECTED>Use Text Field
+<OPTION VALUE="1:MAIN">MAIN
+<OPTION VALUE="1.3:HEAD">HEAD
+</SELECT>
+<INPUT TYPE="TEXT" SIZE="12" NAME="tr1" VALUE="1.1" onChange='document.diff_select.r1.selectedIndex=0'>
+ and
+<SELECT NAME="r2">
+<OPTION VALUE="text" SELECTED>Use Text Field
+<OPTION VALUE="1:MAIN">MAIN
+<OPTION VALUE="1.3:HEAD">HEAD
+</SELECT>
+<INPUT TYPE="TEXT" SIZE="12" NAME="tr2" VALUE="1.3" onChange='docuement.diff_select.r2.selectedIndex=0'>
+<BR>Type of Diff should be a&nbsp;<SELECT NAME="f">
+<OPTION VALUE=h SELECTED>Colored Diff<OPTION VALUE=H>Long Colored Diff<OPTION VALUE=u>Unidiff<OPTION VALUE=c>Context Diff<OPTION VALUE=s>Side by Side</SELECT><INPUT TYPE=SUBMIT VALUE=" Get Diffs ">
+</FORM>
+
+<!-- block -->
+<TABLE bgcolor="#dddddd" CELLSPACING=0 CELLPADDING=0 BORDER=0 width=100%><tr><td width=1% valign=middle><img width=6 height=14 hspace=2 vspace=2 src="http://www.nevrax.org/inc/img/reddots.gif"></TD>
+ <TD><B>Select branch</B></TD>
+ <TD ALIGN=RIGHT> </td>
+</tr></table>
+<P>
+<P>
+<A name=branch></A>
+<FORM METHOD="GET" ACTION="/cvs/cvsweb.cgi/code/nelns/configure.in">
+View only Branch:
+<SELECT NAME="only_with_tag" onchange="submit()">
+<OPTION VALUE="">Show all branches
+<OPTION>MAIN
+</SELECT>
+<INPUT TYPE=SUBMIT VALUE=" View Branch ">
+</FORM>
+<A name=logsort></A>
+<FORM METHOD="GET" ACTION="/cvs/cvsweb.cgi/code/nelns/configure.in">
+Sort log by:
+<SELECT NAME="logsort" onchange="submit()">
+<OPTION VALUE=cvs>Not sorted<OPTION VALUE=date SELECTED>Commit date<OPTION VALUE=rev>Revision</SELECT>
+<INPUT TYPE=SUBMIT VALUE=" Sort ">
+</FORM>
+
+<!-- footer -->
+<BR><FONT Size=+5>&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; &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; &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; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </FONT>
+</TD>
+<TD WIDTH=15><IMG SRC=http://www.nevrax.org/inc/img/pixel.gif WIDTH=15 HEIGHT=15 BORDER=0 ALT=""></TD>
+</TR>
+</TABLE>
+</BODY>
+</HTML></BODY></HTML>
diff --git a/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=rev/index.html b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=rev/index.html
new file mode 100644
index 00000000..5070a8ae
--- /dev/null
+++ b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.3&content-type=text/x-cvsweb-markup&sortby=rev/index.html
@@ -0,0 +1,302 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML>
+<HEAD><style> A { color:black }</style>
+<!-- hennerik CVSweb $Revision: 1.93 $ -->
+<TITLE>code/nelns/configure.in - view - 1.3</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/nelns/?sortby=rev">nelns</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/nelns/?sortby=rev">nelns</a> / <a href="/cvs/cvsweb.cgi/code/nelns/configure.in?sortby=rev">configure.in</a>&nbsp;(<A HREF="/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.3&amp;sortby=rev" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.3','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>)<BR>
+Revision <B>1.3</B>, <i>Mon Jun 18 14:04:46 2001 UTC</i> (13 months, 1 week ago) by <i>valignat</i>
+<BR>Branch: <b>MAIN</b>
+<BR>Changes since <b>1.2: +1 -4
+ lines</b><PRE>
+REMOVED the agnet_service from NELNS compilatiom/install process.
+</PRE>
+</td></tr></table><HR noshade><PRE>dnl
+dnl Configuration script for NeLNS
+dnl
+dnl $Id: configure.in,v 1.3 2001/06/18 14:04:46 valignat Exp $
+dnl
+
+dnl Process this file with autoconf to produce a configure script.
+
+AC_INIT(log_service/log_service.h)
+
+MAJOR_VERSION=0
+MINOR_VERSION=3
+PICO_VERSION=0
+
+AM_INIT_AUTOMAKE(netns, $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 for programs.
+
+AC_PROG_MAKE_SET
+
+AC_PROG_CC
+AC_PROG_CXX
+
+AM_PROG_LIBTOOL
+
+AM_SANITY_CHECK
+
+AC_PROG_INSTALL
+
+
+dnl ==========
+dnl Python
+dnl ==========
+
+AC_ARG_WITH( python,
+ &nbsp; &nbsp;[ &nbsp;--with-python=&lt;path&gt; &nbsp; &nbsp;path to the Python prefix installation directory.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local],
+ &nbsp; &nbsp;[PYTHON_PREFIX=$withval
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using Python located in $withval.)]
+)
+
+if test ! &quot;$PYTHON_PREFIX&quot; = &quot;&quot;
+then
+ &nbsp; &nbsp;PATH=&quot;$PYTHON_PREFIX/bin:$PATH&quot;
+fi
+
+AC_ARG_WITH( python-version,
+ &nbsp; &nbsp;[ &nbsp;--with-python-version=&lt;version&gt;
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Python version to use, e.g. 1.5],
+ &nbsp; &nbsp;[PYTHON_VERSION=$withval
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using Python $withval.)]
+)
+
+if test ! &quot;$PYTHON_VERSION&quot; = &quot;&quot;
+then
+ &nbsp; &nbsp;PYTHON_EXEC=&quot;python$PYTHON_VERSION&quot;
+else
+ &nbsp; &nbsp;PYTHON_EXEC=&quot;python python2.0 python1.5&quot;
+fi
+
+AC_PATH_PROGS(PYTHON, $PYTHON_EXEC, no, $PATH)
+if test &quot;$PYTHON&quot; = &quot;no&quot;;
+then
+ &nbsp; &nbsp;AC_MSG_ERROR([Python is needed to compile NeL (www.python.org)])
+fi
+
+
+dnl ====================================================================
+dnl Configure Settings
+
+AC_LANG_CPLUSPLUS
+
+
+dnl ====================================================================
+dnl Checks for typedefs, structures, and compiler characteristics.
+
+AC_C_CONST
+
+dnl Add the define _REENTRANT for a correct use of the threads
+if test &quot;X$CC&quot; = &quot;Xgcc&quot;;
+then
+ &nbsp; &nbsp;CXXFLAGS=&quot;$CXXFLAGS -D_REENTRANT&quot;
+fi
+
+
+dnl ====================================================================
+dnl Checks for header files.
+
+AC_STDC_HEADERS
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+
+dnl ==========
+dnl STLPort
+dnl ==========
+
+dnl Ask user for path to the STLport header files
+AC_ARG_WITH( stlport,
+ &nbsp; &nbsp;[ &nbsp;--with-stlport=&lt;path&gt; &nbsp; path to the STLPort header files directory.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local/include/stlport],
+ &nbsp; &nbsp;[STLPORT_DIR=$with_stlport
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using STLPort header files located in $with_stlport)],
+ &nbsp; &nbsp;AC_MSG_ERROR([You must call configure with the --with-stlport option.
+ &nbsp; &nbsp;This tells configure where to find the STLPort header files.
+ &nbsp; &nbsp;e.g. --with-stlport=/usr/local/include/stlport])
+)
+
+if test X&quot;$STLPORT_DIR&quot; != X&quot;&quot;;
+then
+ &nbsp; &nbsp;CXXFLAGS=&quot;-I$STLPORT_DIR $CXXFLAGS&quot;
+fi
+
+dnl Ask user for path to the STLPort library files
+AC_ARG_WITH( stllib,
+ &nbsp; &nbsp;[ &nbsp;--with-stllib=&lt;path&gt; &nbsp; &nbsp;path to the STLPort installation directory.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local/lib/stlport],
+ &nbsp; &nbsp;[STLLIB_DIR=$with_stllib
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using STLPort library located in $with_stllib)]
+)
+
+if test X&quot;$STLLIB_DIR&quot; != X&quot;&quot;;
+then
+ &nbsp; &nbsp;LIBS=&quot;-L$STLLIB_DIR $LIBS&quot;
+fi
+
+LIBS=&quot;$LIBS -lstlport_gcc&quot;
+
+_CPPFLAGS=&quot;$CPPFLAGS&quot;
+CPPFLAGS=&quot;$CXXFLAGS&quot;
+
+AC_MSG_CHECKING(for STLPort)
+AC_EGREP_CPP( yo_stlport,
+[#include &lt;algorithm&gt;
+#ifdef __SGI_STL_PORT
+ &nbsp; yo_stlport
+#endif],
+[AC_MSG_RESULT(yes)],
+AC_MSG_ERROR([STLPort is needed to compile NeLNS (www.stlport.org)])
+)
+
+CPPFLAGS=&quot;$_CPPFLAGS&quot;
+
+
+dnl ==========
+dnl NeL
+dnl ==========
+
+dnl Ask user for path to the NeL header files
+AC_ARG_WITH( nel,
+ &nbsp; &nbsp;[ &nbsp;--with-nel=&lt;prefix&gt; &nbsp; &nbsp; prefix to the NeL files installation.
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;e.g. /usr/local/include],
+ &nbsp; &nbsp;[NEL_DIR=$with_nel
+ &nbsp; &nbsp; &nbsp;AC_MSG_RESULT(using NeL header files located in $with_nel)]
+)
+
+if test X&quot;$NEL_DIR&quot; != X&quot;&quot;;
+then
+ &nbsp; &nbsp;CXXFLAGS=&quot;-I$NEL_DIR/include $CXXFLAGS&quot;
+ &nbsp; &nbsp;LIBS=&quot;-L$NEL_DIR/lib $LIBS&quot;
+fi
+
+_CPPFLAGS=&quot;$CPPFLAGS&quot;
+CPPFLAGS=&quot;$CXXFLAGS&quot;
+
+AC_MSG_CHECKING(for NeL)
+AC_EGREP_CPP( yo_nel,
+[#include &lt;nel/net.h&gt;
+#ifdef NL_NET_H
+ &nbsp; yo_nel
+#endif],
+[AC_MSG_RESULT(yes)],
+AC_MSG_ERROR([NeL is needed to compile the NeLNS (www.nevrax.org)])
+)
+
+
+dnl ==========
+dnl Python
+dnl ==========
+
+PYTHON_PREFIX=`$PYTHON -c 'import sys; print &quot;%s&quot; % (sys.prefix)'`
+PYTHON_VERSION=`$PYTHON -c 'import sys; print &quot;%s&quot; % (sys.version[[:3]])'`
+
+PYTHON_CFLAGS=&quot;-I$PYTHON_PREFIX/include/python$PYTHON_VERSION&quot;
+PYTHON_LIBS=&quot;-L$PYTHON_PREFIX/lib/python$PYTHON_VERSION/config -lpython$PYTHON_VERSION&quot;
+
+_CPPFLAGS=&quot;$CPPFLAGS&quot;
+CPPFLAGS=&quot;$CXXFLAGS ${PYTHON_CFLAGS}&quot;
+
+AC_SUBST(PYTHON_CFLAGS)
+
+AC_MSG_CHECKING(for Python header files)
+AC_EGREP_CPP( yo_python,
+[#include &lt;Python.h&gt;
+ &nbsp; yo_python
+],
+[AC_MSG_RESULT(ok)],
+AC_MSG_ERROR([Python is needed to compile NeL (www.python.org).])
+)
+
+CPPFLAGS=&quot;$_CPPFLAGS&quot;
+
+AC_SUBST(PYTHON_CFLAGS)
+AC_SUBST(PYTHON_LIBS)
+
+
+dnl ==========
+dnl Debug/optimized compilation mode
+dnl ==========
+
+MAX_C_OPTIMIZE=&quot;-O6&quot;
+
+dnl Build optimized or debug version ?
+dnl First check for gcc and g++
+if test &quot;$ac_cv_prog_gcc&quot; = &quot;yes&quot;
+then
+ &nbsp;DEBUG_CFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CC=&quot;-O&quot;
+ &nbsp;OPTIMIZE_CFLAGS=&quot;$MAX_C_OPTIMIZE&quot;
+else
+ &nbsp;DEBUG_CFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CC=&quot;&quot;
+ &nbsp;OPTIMIZE_CFLAGS=&quot;-O&quot;
+fi
+if test &quot;$ac_cv_prog_cxx_g&quot; = &quot;yes&quot;
+then
+ &nbsp;DEBUG_CXXFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CXX=&quot;-O&quot;
+ &nbsp;OPTIMIZE_CXXFLAGS=&quot;-O3&quot;
+else
+ &nbsp;DEBUG_CXXFLAGS=&quot;-g&quot;
+ &nbsp;DEBUG_OPTIMIZE_CXX=&quot;&quot;
+ &nbsp;OPTIMIZE_CXXFLAGS=&quot;-O&quot;
+fi
+AC_ARG_WITH(debug,
+ &nbsp; &nbsp;[ &nbsp;--with-debug[=full] &nbsp; &nbsp; Build a debug version (huge libraries)
+ &nbsp;--without-debug &nbsp; &nbsp; &nbsp; &nbsp; Build withoug debugging code (default)],
+ &nbsp; &nbsp;[with_debug=$withval],
+ &nbsp; &nbsp;[with_debug=no])
+if test &quot;$with_debug&quot; = &quot;yes&quot;
+then
+ &nbsp;dnl Medium debug.
+ &nbsp;CFLAGS=&quot;$DEBUG_CFLAGS $DEBUG_OPTIMIZE_CC $CFLAGS&quot;
+ &nbsp;CXXFLAGS=&quot;$DEBUG_CXXFLAGS $DEBUG_OPTIMIZE_CXX $CXXFLAGS&quot;
+elif test &quot;$with_debug&quot; = &quot;full&quot;
+then
+ &nbsp;dnl Full debug. Very slow in some cases
+ &nbsp;CFLAGS=&quot;$DEBUG_CFLAGS $CFLAGS&quot;
+ &nbsp;CXXFLAGS=&quot;$DEBUG_CXXFLAGS $CXXFLAGS&quot;
+else
+ &nbsp;dnl Optimized version. No debug
+ &nbsp;CFLAGS=&quot;$OPTIMIZE_CFLAGS $CFLAGS&quot;
+ &nbsp;CXXFLAGS=&quot;$OPTIMIZE_CXXFLAGS $CXXFLAGS&quot;
+fi
+
+
+dnl ====================================================================
+dnl Checks for libraries.
+
+
+dnl ====================================================================
+dnl Checks for library functions.
+
+
+dnl ====================================================================
+dnl Output files to generate.
+
+AC_OUTPUT( Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; login_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; log_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; naming_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; time_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; admin_executor_service/Makefile \
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; admin_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; welcome_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp;\
+)
+
+
+dnl End of configure.in
+</PRE> \ No newline at end of file