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&only_with_tag=MAIN/index.html | 170 +++++++++++++++++++++ .../x-cvsweb-markup&sortby=author/index.html | 170 +++++++++++++++++++++ .../x-cvsweb-markup&sortby=date/index.html | 170 +++++++++++++++++++++ 3 files changed, 510 insertions(+) create mode 100644 cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html create mode 100644 cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&sortby=author/index.html create mode 100644 cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&sortby=date/index.html (limited to 'cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text') diff --git a/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html new file mode 100644 index 00000000..eae93316 --- /dev/null +++ b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html @@ -0,0 +1,170 @@ + + + +code/nelns/configure.in - view - 1.14 + +
[BACK] Return to configure.in + CVS log [TXT][DIR] Up to Nevrax / code / nelns

File: Nevrax / code / nelns / configure.in (download)
+Revision 1.14, Mon Apr 15 12:04:30 2002 UTC (3 months, 1 week ago) by lecroart +
Branch: MAIN +
Changes since 1.13: +6 -1 + lines
+ADDED: ccache detection
+
+

dnl ====================================================================
+dnl Configuration script for NeLNS
+dnl ====================================================================
+dnl
+dnl $Id: configure.in,v 1.14 2002/04/15 12:04:30 lecroart Exp $
+dnl 
+
+
+dnl ====================================================================
+dnl Process this file with autoconf to produce a configure script.
+dnl ====================================================================
+
+AC_INIT(admin_service/admin_service.cpp)
+
+MAJOR_VERSION=0
+MINOR_VERSION=3
+PICO_VERSION=0
+
+AM_INIT_AUTOMAKE(nelns, $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 for programs.
+dnl ====================================================================
+
+AC_PROG_MAKE_SET
+
+AC_PROG_CC
+AC_PROG_CXX
+
+AM_PROG_LIBTOOL
+
+AM_SANITY_CHECK
+
+AC_PROG_INSTALL
+
+AC_PATH_PROG(CCACHE, ccache)
+if test "$CCACHE"
+then
+ CXX="ccache $CXX"
+fi
+
+dnl ====================================================================
+dnl Configure Settings
+dnl ====================================================================
+
+AC_LANG_CPLUSPLUS
+
+
+dnl ====================================================================
+dnl Debug/optimized compilation mode
+dnl ====================================================================
+
+AM_NEL_DEBUG
+
+
+dnl ====================================================================
+dnl Checks for typedefs, structures, and compiler characteristics.
+dnl ====================================================================
+
+dnl Add the define _REENTRANT for a correct use of the threads
+if test "X$CC" = "Xgcc";
+then
+    CXXFLAGS="$CXXFLAGS -D_REENTRANT"
+fi
+
+
+dnl ====================================================================
+dnl Checks for header files.
+dnl ====================================================================
+
+AC_STDC_HEADERS
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+
+dnl ====================================================================
+dnl Checks for libraries.
+dnl ====================================================================
+
+AC_CHECK_LIB(crypt, crypt)
+
+dnl ====================================================================
+dnl STLPort
+
+AM_PATH_STLPORT
+
+
+dnl ====================================================================
+dnl NeL
+
+dnl         misc   net    3d    pacs  sound  ai    georges
+AM_PATH_NEL("yes", "yes", "no", "no", "no",  "no", "no")
+
+dnl ====================================================================
+dnl Checks for library functions.
+dnl ====================================================================
+
+dnl ====================================================================
+dnl nelns configuration and logs file location
+dnl ====================================================================
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+
+AC_ARG_WITH(sysconfdir,
+    [  --with-sysconfdir[=DIR]
+                          use DIR instead of the default sysconfdir/nelns],
+    [pkgsysconfdir=$withval],
+    [pkgsysconfdir='${sysconfdir}/nelns'])
+AC_SUBST(pkgsysconfdir)
+
+eval eval NELNS_CONFIG=\"$pkgsysconfdir/\"
+AC_DEFINE_UNQUOTED(NELNS_CONFIG, "$NELNS_CONFIG")
+
+AC_ARG_WITH(localstatedir,
+    [  --with-localstatedir[=DIR]
+                          use DIR instead of the default localstatedir/game/nelns],
+    [pkglocalstatedir=$withval],
+    [pkglocalstatedir=${localstatedir}/game/nelns])
+AC_SUBST(pkglocalstatedir)
+
+eval eval NELNS_STATE=\"$pkglocalstatedir/\"
+AC_DEFINE_UNQUOTED(NELNS_STATE, "$NELNS_STATE")
+
+AC_ARG_WITH(logdir,
+    [  --with-logdir[=DIR]
+                          use DIR instead of the default localstatedir/log/nelns],
+    [logdir=$withval],
+    [logdir='${localstatedir}/log/nelns'])
+AC_SUBST(logdir)
+
+eval eval NELNS_LOGS=\"$logdir/\"
+AC_DEFINE_UNQUOTED(NELNS_LOGS, "$NELNS_LOGS")
+
+dnl ====================================================================
+dnl Output files to generate.
+dnl ====================================================================
+
+AC_OUTPUT( Makefile                        \
+           login_service/Makefile          \
+           naming_service/Makefile         \
+           admin_executor_service/Makefile \
+           admin_service/Makefile          \
+           welcome_service/Makefile        \
+)
+
+
+dnl End of configure.in
+
+
\ No newline at end of file diff --git a/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&sortby=author/index.html b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&sortby=author/index.html new file mode 100644 index 00000000..cd28c51c --- /dev/null +++ b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&sortby=author/index.html @@ -0,0 +1,170 @@ + + + +code/nelns/configure.in - view - 1.14 + +
[BACK] Return to configure.in + CVS log [TXT][DIR] Up to Nevrax / code / nelns

File: Nevrax / code / nelns / configure.in (download)
+Revision 1.14, Mon Apr 15 12:04:30 2002 UTC (3 months, 1 week ago) by lecroart +
Branch: MAIN +
Changes since 1.13: +6 -1 + lines
+ADDED: ccache detection
+
+

dnl ====================================================================
+dnl Configuration script for NeLNS
+dnl ====================================================================
+dnl
+dnl $Id: configure.in,v 1.14 2002/04/15 12:04:30 lecroart Exp $
+dnl 
+
+
+dnl ====================================================================
+dnl Process this file with autoconf to produce a configure script.
+dnl ====================================================================
+
+AC_INIT(admin_service/admin_service.cpp)
+
+MAJOR_VERSION=0
+MINOR_VERSION=3
+PICO_VERSION=0
+
+AM_INIT_AUTOMAKE(nelns, $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 for programs.
+dnl ====================================================================
+
+AC_PROG_MAKE_SET
+
+AC_PROG_CC
+AC_PROG_CXX
+
+AM_PROG_LIBTOOL
+
+AM_SANITY_CHECK
+
+AC_PROG_INSTALL
+
+AC_PATH_PROG(CCACHE, ccache)
+if test "$CCACHE"
+then
+ CXX="ccache $CXX"
+fi
+
+dnl ====================================================================
+dnl Configure Settings
+dnl ====================================================================
+
+AC_LANG_CPLUSPLUS
+
+
+dnl ====================================================================
+dnl Debug/optimized compilation mode
+dnl ====================================================================
+
+AM_NEL_DEBUG
+
+
+dnl ====================================================================
+dnl Checks for typedefs, structures, and compiler characteristics.
+dnl ====================================================================
+
+dnl Add the define _REENTRANT for a correct use of the threads
+if test "X$CC" = "Xgcc";
+then
+    CXXFLAGS="$CXXFLAGS -D_REENTRANT"
+fi
+
+
+dnl ====================================================================
+dnl Checks for header files.
+dnl ====================================================================
+
+AC_STDC_HEADERS
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+
+dnl ====================================================================
+dnl Checks for libraries.
+dnl ====================================================================
+
+AC_CHECK_LIB(crypt, crypt)
+
+dnl ====================================================================
+dnl STLPort
+
+AM_PATH_STLPORT
+
+
+dnl ====================================================================
+dnl NeL
+
+dnl         misc   net    3d    pacs  sound  ai    georges
+AM_PATH_NEL("yes", "yes", "no", "no", "no",  "no", "no")
+
+dnl ====================================================================
+dnl Checks for library functions.
+dnl ====================================================================
+
+dnl ====================================================================
+dnl nelns configuration and logs file location
+dnl ====================================================================
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+
+AC_ARG_WITH(sysconfdir,
+    [  --with-sysconfdir[=DIR]
+                          use DIR instead of the default sysconfdir/nelns],
+    [pkgsysconfdir=$withval],
+    [pkgsysconfdir='${sysconfdir}/nelns'])
+AC_SUBST(pkgsysconfdir)
+
+eval eval NELNS_CONFIG=\"$pkgsysconfdir/\"
+AC_DEFINE_UNQUOTED(NELNS_CONFIG, "$NELNS_CONFIG")
+
+AC_ARG_WITH(localstatedir,
+    [  --with-localstatedir[=DIR]
+                          use DIR instead of the default localstatedir/game/nelns],
+    [pkglocalstatedir=$withval],
+    [pkglocalstatedir=${localstatedir}/game/nelns])
+AC_SUBST(pkglocalstatedir)
+
+eval eval NELNS_STATE=\"$pkglocalstatedir/\"
+AC_DEFINE_UNQUOTED(NELNS_STATE, "$NELNS_STATE")
+
+AC_ARG_WITH(logdir,
+    [  --with-logdir[=DIR]
+                          use DIR instead of the default localstatedir/log/nelns],
+    [logdir=$withval],
+    [logdir='${localstatedir}/log/nelns'])
+AC_SUBST(logdir)
+
+eval eval NELNS_LOGS=\"$logdir/\"
+AC_DEFINE_UNQUOTED(NELNS_LOGS, "$NELNS_LOGS")
+
+dnl ====================================================================
+dnl Output files to generate.
+dnl ====================================================================
+
+AC_OUTPUT( Makefile                        \
+           login_service/Makefile          \
+           naming_service/Makefile         \
+           admin_executor_service/Makefile \
+           admin_service/Makefile          \
+           welcome_service/Makefile        \
+)
+
+
+dnl End of configure.in
+
+
\ No newline at end of file diff --git a/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&sortby=date/index.html b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&sortby=date/index.html new file mode 100644 index 00000000..a2d7c552 --- /dev/null +++ b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&sortby=date/index.html @@ -0,0 +1,170 @@ + + + +code/nelns/configure.in - view - 1.14 + +
[BACK] Return to configure.in + CVS log [TXT][DIR] Up to Nevrax / code / nelns

File: Nevrax / code / nelns / configure.in (download)
+Revision 1.14, Mon Apr 15 12:04:30 2002 UTC (3 months, 1 week ago) by lecroart +
Branch: MAIN +
Changes since 1.13: +6 -1 + lines
+ADDED: ccache detection
+
+

dnl ====================================================================
+dnl Configuration script for NeLNS
+dnl ====================================================================
+dnl
+dnl $Id: configure.in,v 1.14 2002/04/15 12:04:30 lecroart Exp $
+dnl 
+
+
+dnl ====================================================================
+dnl Process this file with autoconf to produce a configure script.
+dnl ====================================================================
+
+AC_INIT(admin_service/admin_service.cpp)
+
+MAJOR_VERSION=0
+MINOR_VERSION=3
+PICO_VERSION=0
+
+AM_INIT_AUTOMAKE(nelns, $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 for programs.
+dnl ====================================================================
+
+AC_PROG_MAKE_SET
+
+AC_PROG_CC
+AC_PROG_CXX
+
+AM_PROG_LIBTOOL
+
+AM_SANITY_CHECK
+
+AC_PROG_INSTALL
+
+AC_PATH_PROG(CCACHE, ccache)
+if test "$CCACHE"
+then
+ CXX="ccache $CXX"
+fi
+
+dnl ====================================================================
+dnl Configure Settings
+dnl ====================================================================
+
+AC_LANG_CPLUSPLUS
+
+
+dnl ====================================================================
+dnl Debug/optimized compilation mode
+dnl ====================================================================
+
+AM_NEL_DEBUG
+
+
+dnl ====================================================================
+dnl Checks for typedefs, structures, and compiler characteristics.
+dnl ====================================================================
+
+dnl Add the define _REENTRANT for a correct use of the threads
+if test "X$CC" = "Xgcc";
+then
+    CXXFLAGS="$CXXFLAGS -D_REENTRANT"
+fi
+
+
+dnl ====================================================================
+dnl Checks for header files.
+dnl ====================================================================
+
+AC_STDC_HEADERS
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+
+dnl ====================================================================
+dnl Checks for libraries.
+dnl ====================================================================
+
+AC_CHECK_LIB(crypt, crypt)
+
+dnl ====================================================================
+dnl STLPort
+
+AM_PATH_STLPORT
+
+
+dnl ====================================================================
+dnl NeL
+
+dnl         misc   net    3d    pacs  sound  ai    georges
+AM_PATH_NEL("yes", "yes", "no", "no", "no",  "no", "no")
+
+dnl ====================================================================
+dnl Checks for library functions.
+dnl ====================================================================
+
+dnl ====================================================================
+dnl nelns configuration and logs file location
+dnl ====================================================================
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+
+AC_ARG_WITH(sysconfdir,
+    [  --with-sysconfdir[=DIR]
+                          use DIR instead of the default sysconfdir/nelns],
+    [pkgsysconfdir=$withval],
+    [pkgsysconfdir='${sysconfdir}/nelns'])
+AC_SUBST(pkgsysconfdir)
+
+eval eval NELNS_CONFIG=\"$pkgsysconfdir/\"
+AC_DEFINE_UNQUOTED(NELNS_CONFIG, "$NELNS_CONFIG")
+
+AC_ARG_WITH(localstatedir,
+    [  --with-localstatedir[=DIR]
+                          use DIR instead of the default localstatedir/game/nelns],
+    [pkglocalstatedir=$withval],
+    [pkglocalstatedir=${localstatedir}/game/nelns])
+AC_SUBST(pkglocalstatedir)
+
+eval eval NELNS_STATE=\"$pkglocalstatedir/\"
+AC_DEFINE_UNQUOTED(NELNS_STATE, "$NELNS_STATE")
+
+AC_ARG_WITH(logdir,
+    [  --with-logdir[=DIR]
+                          use DIR instead of the default localstatedir/log/nelns],
+    [logdir=$withval],
+    [logdir='${localstatedir}/log/nelns'])
+AC_SUBST(logdir)
+
+eval eval NELNS_LOGS=\"$logdir/\"
+AC_DEFINE_UNQUOTED(NELNS_LOGS, "$NELNS_LOGS")
+
+dnl ====================================================================
+dnl Output files to generate.
+dnl ====================================================================
+
+AC_OUTPUT( Makefile                        \
+           login_service/Makefile          \
+           naming_service/Makefile         \
+           admin_executor_service/Makefile \
+           admin_service/Makefile          \
+           welcome_service/Makefile        \
+)
+
+
+dnl End of configure.in
+
+
\ No newline at end of file -- cgit v1.2.1