aboutsummaryrefslogtreecommitdiff
path: root/cvs/cvsweb.cgi/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/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/code/nelns/configure.in?rev=1.9&content-type=text')
-rw-r--r--cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.9&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html125
-rw-r--r--cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.9&content-type=text/x-cvsweb-markup&sortby=date/index.html125
-rw-r--r--cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.9&content-type=text/x-cvsweb-markup/index.html125
3 files changed, 375 insertions, 0 deletions
diff --git a/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.9&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.9&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html
new file mode 100644
index 00000000..063d7c6d
--- /dev/null
+++ b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.9&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html
@@ -0,0 +1,125 @@
+<!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.9</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.9&amp;only_with_tag=MAIN" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.9','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>)<BR>
+Revision <B>1.9</B>, <i>Mon Jan 7 16:09:52 2002 UTC</i> (6 months, 2 weeks ago) by <i>valignat</i>
+<BR>Branch: <b>MAIN</b>
+<BR>Changes since <b>1.8: +20 -166
+ lines</b><PRE>
+Rewrited NeL, NeLNS, and Snowballs configure.in scripts.
+ADDED an 'acinclude.m4' file which contain all M4 macros to check paths of the libraries that we need and macros to check the intalation of NeL. This file is placed in the code directory and there is symbolic links to that file in the 'nel', 'nelns' and 'snowballs2' directories.
+</PRE>
+</td></tr></table><HR noshade><PRE>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=&quot;$CFLAGS &quot;
+CXXFLAGS=&quot;$CXXFLAGS &quot;
+
+
+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 &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 Checks for libraries.
+
+dnl ==========================================================================
+dnl STLPort
+
+AM_PATH_STLPORT
+
+
+dnl ==========================================================================
+dnl NeL
+
+AM_PATH_NEL(&quot;yes&quot;, &quot;yes&quot;, &quot;no&quot;, &quot;no&quot;, &quot;no&quot;, &quot;no&quot;)
+
+CXXFLAGS=&quot;$CXXFLAGS ${NEL_CFLAGS}&quot;
+LIBS=&quot;$LIBS ${NEL_LIBS}&quot;
+
+
+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; naming_service/Makefile &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.9&content-type=text/x-cvsweb-markup&sortby=date/index.html b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.9&content-type=text/x-cvsweb-markup&sortby=date/index.html
new file mode 100644
index 00000000..446cb67f
--- /dev/null
+++ b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.9&content-type=text/x-cvsweb-markup&sortby=date/index.html
@@ -0,0 +1,125 @@
+<!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.9</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.9&amp;sortby=date" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.9','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>)<BR>
+Revision <B>1.9</B>, <i>Mon Jan 7 16:09:52 2002 UTC</i> (6 months, 2 weeks ago) by <i>valignat</i>
+<BR>Branch: <b>MAIN</b>
+<BR>Changes since <b>1.8: +20 -166
+ lines</b><PRE>
+Rewrited NeL, NeLNS, and Snowballs configure.in scripts.
+ADDED an 'acinclude.m4' file which contain all M4 macros to check paths of the libraries that we need and macros to check the intalation of NeL. This file is placed in the code directory and there is symbolic links to that file in the 'nel', 'nelns' and 'snowballs2' directories.
+</PRE>
+</td></tr></table><HR noshade><PRE>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=&quot;$CFLAGS &quot;
+CXXFLAGS=&quot;$CXXFLAGS &quot;
+
+
+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 &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 Checks for libraries.
+
+dnl ==========================================================================
+dnl STLPort
+
+AM_PATH_STLPORT
+
+
+dnl ==========================================================================
+dnl NeL
+
+AM_PATH_NEL(&quot;yes&quot;, &quot;yes&quot;, &quot;no&quot;, &quot;no&quot;, &quot;no&quot;, &quot;no&quot;)
+
+CXXFLAGS=&quot;$CXXFLAGS ${NEL_CFLAGS}&quot;
+LIBS=&quot;$LIBS ${NEL_LIBS}&quot;
+
+
+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; naming_service/Makefile &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.9&content-type=text/x-cvsweb-markup/index.html b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.9&content-type=text/x-cvsweb-markup/index.html
new file mode 100644
index 00000000..8f18f827
--- /dev/null
+++ b/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.9&content-type=text/x-cvsweb-markup/index.html
@@ -0,0 +1,125 @@
+<!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.9</TITLE></HEAD>
+<BODY BGCOLOR="#eeeeee">
+<table width="100%" border=0 cellspacing=0 cellpadding=1 bgcolor="#aaaaaa"><tr valign=bottom><td><a href="configure.in"><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">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/">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/">code</a> / <a href="/cvs/cvsweb.cgi/code/nelns/">nelns</a></b></td></tr></table><HR noshade><table width="100%"><tr><td bgcolor="#ffffff">File: <a href="/cvs/cvsweb.cgi/">Nevrax</a> / <a href="/cvs/cvsweb.cgi/code/">code</a> / <a href="/cvs/cvsweb.cgi/code/nelns/">nelns</a> / <a href="/cvs/cvsweb.cgi/code/nelns/configure.in">configure.in</a>&nbsp;(<A HREF="/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.9" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.9','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>)<BR>
+Revision <B>1.9</B>, <i>Mon Jan 7 16:09:52 2002 UTC</i> (5 months, 1 week ago) by <i>valignat</i>
+<BR>Branch: <b>MAIN</b>
+<BR>Changes since <b>1.8: +20 -166
+ lines</b><PRE>
+Rewrited NeL, NeLNS, and Snowballs configure.in scripts.
+ADDED an 'acinclude.m4' file which contain all M4 macros to check paths of the libraries that we need and macros to check the intalation of NeL. This file is placed in the code directory and there is symbolic links to that file in the 'nel', 'nelns' and 'snowballs2' directories.
+</PRE>
+</td></tr></table><HR noshade><PRE>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=&quot;$CFLAGS &quot;
+CXXFLAGS=&quot;$CXXFLAGS &quot;
+
+
+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 &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 Checks for libraries.
+
+dnl ==========================================================================
+dnl STLPort
+
+AM_PATH_STLPORT
+
+
+dnl ==========================================================================
+dnl NeL
+
+AM_PATH_NEL(&quot;yes&quot;, &quot;yes&quot;, &quot;no&quot;, &quot;no&quot;, &quot;no&quot;, &quot;no&quot;)
+
+CXXFLAGS=&quot;$CXXFLAGS ${NEL_CFLAGS}&quot;
+LIBS=&quot;$LIBS ${NEL_LIBS}&quot;
+
+
+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; naming_service/Makefile &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