aboutsummaryrefslogtreecommitdiff
path: root/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.9&content-type=text
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2018-08-11 20:21:34 +0200
committerneodarz <neodarz@neodarz.net>2018-08-11 20:21:34 +0200
commit0ea5fc66924303d1bf73ba283a383e2aadee02f2 (patch)
tree2568e71a7ccc44ec23b8bb3f0ff97fb6bf2ed709 /cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.9&content-type=text
downloadnevrax-website-self-hostable-0ea5fc66924303d1bf73ba283a383e2aadee02f2.tar.xz
nevrax-website-self-hostable-0ea5fc66924303d1bf73ba283a383e2aadee02f2.zip
Initial commit
Diffstat (limited to 'cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.9&content-type=text')
-rw-r--r--cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.9&content-type=text/plain/index.html110
1 files changed, 110 insertions, 0 deletions
diff --git a/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.9&content-type=text/plain/index.html b/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.9&content-type=text/plain/index.html
new file mode 100644
index 00000000..86b40350
--- /dev/null
+++ b/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.9&content-type=text/plain/index.html
@@ -0,0 +1,110 @@
+dnl
+dnl Configuration script for NeLNS
+dnl
+dnl $Id: configure.in,v 1.9 2002/01/07 16:09:52 valignat Exp $
+dnl
+
+dnl Process this file with autoconf to produce a configure script.
+
+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
+
+
+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 ====================================================================
+
+AC_C_CONST
+
+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.
+
+AC_STDC_HEADERS
+AC_CHECK_HEADERS(fcntl.h unistd.h)
+
+
+dnl ====================================================================
+dnl Checks for libraries.
+
+dnl ==========================================================================
+dnl STLPort
+
+AM_PATH_STLPORT
+
+
+dnl ==========================================================================
+dnl NeL
+
+AM_PATH_NEL("yes", "yes", "no", "no", "no", "no")
+
+CXXFLAGS="$CXXFLAGS ${NEL_CFLAGS}"
+LIBS="$LIBS ${NEL_LIBS}"
+
+
+dnl ====================================================================
+dnl Checks for library functions.
+
+
+dnl ====================================================================
+dnl Output files to generate.
+
+AC_OUTPUT( Makefile \
+ login_service/Makefile \
+ naming_service/Makefile \
+ admin_executor_service/Makefile \
+ admin_service/Makefile \
+ welcome_service/Makefile \
+)
+
+
+dnl End of configure.in