aboutsummaryrefslogtreecommitdiff
path: root/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.2&content-type=text/x-cvsweb-markup&sortby=rev/index.html
blob: 12a033b8528b773f01ef8a679dfa152f4794a616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<!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.2</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="/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="/inc/img/picto-news.gif" ALT="[TXT]" BORDER="0" WIDTH="13" HEIGHT="15"></td><td align=right><IMG SRC="/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.2&amp;sortby=rev" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.2','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>)<BR>
Revision <B>1.2</B>, <i>Thu May  3 13:19:13 2001 UTC</i> (14 months, 3 weeks ago) by <i>lecroart</i>
<BR>Branch: <b>MAIN</b>
<BR>Changes since <b>1.1: +3 -1
 lines</b><PRE>
BUGFIX: now compile on linux
</PRE>
</td></tr></table><HR noshade><PRE>dnl
dnl Configuration script for NeLNS
dnl
dnl $Id: configure.in,v 1.2 2001/05/03 13:19:13 lecroart 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; agent_service/Makefile &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; agent_service/creature/Makefile \
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; agent_service/plugin/Makefile &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>