aboutsummaryrefslogtreecommitdiff
path: root/cvs/cvsweb.cgi/code/nelns/configure.in?rev=1.14&content-type=text/x-cvsweb-markup&only_with_tag=MAIN/index.html
blob: aa75501b052fa6457e21b98d2ce6db31e5485e01 (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
<!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.14</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="/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="/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/?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.14&amp;only_with_tag=MAIN" target="cvs_checkout" onClick="window.open('/cvs/cvsweb.cgi/~checkout~/code/nelns/configure.in?rev=1.14','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>)<BR>
Revision <B>1.14</B>, <i>Mon Apr 15 12:04:30 2002 UTC</i> (3 months, 1 week ago) by <i>lecroart</i>
<BR>Branch: <b>MAIN</b>
<BR>Changes since <b>1.13: +6 -1
 lines</b><PRE>
ADDED: ccache detection
</PRE>
</td></tr></table><HR noshade><PRE>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=&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

AC_PATH_PROG(CCACHE, ccache)
if test &quot;$CCACHE&quot;
then
 CXX=&quot;ccache $CXX&quot;
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 &quot;X$CC&quot; = &quot;Xgcc&quot;;
then
 &nbsp; &nbsp;CXXFLAGS=&quot;$CXXFLAGS -D_REENTRANT&quot;
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 &nbsp; &nbsp; &nbsp; &nbsp; misc &nbsp; net &nbsp; &nbsp;3d &nbsp; &nbsp;pacs &nbsp;sound &nbsp;ai &nbsp; &nbsp;georges
AM_PATH_NEL(&quot;yes&quot;, &quot;yes&quot;, &quot;no&quot;, &quot;no&quot;, &quot;no&quot;, &nbsp;&quot;no&quot;, &quot;no&quot;)

dnl ====================================================================
dnl Checks for library functions.
dnl ====================================================================

dnl ====================================================================
dnl nelns configuration and logs file location
dnl ====================================================================

test &quot;x$prefix&quot; = xNONE &amp;&amp; prefix=$ac_default_prefix

AC_ARG_WITH(sysconfdir,
 &nbsp; &nbsp;[ &nbsp;--with-sysconfdir[=DIR]
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use DIR instead of the default sysconfdir/nelns],
 &nbsp; &nbsp;[pkgsysconfdir=$withval],
 &nbsp; &nbsp;[pkgsysconfdir='${sysconfdir}/nelns'])
AC_SUBST(pkgsysconfdir)

eval eval NELNS_CONFIG=\&quot;$pkgsysconfdir/\&quot;
AC_DEFINE_UNQUOTED(NELNS_CONFIG, &quot;$NELNS_CONFIG&quot;)

AC_ARG_WITH(localstatedir,
 &nbsp; &nbsp;[ &nbsp;--with-localstatedir[=DIR]
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use DIR instead of the default localstatedir/game/nelns],
 &nbsp; &nbsp;[pkglocalstatedir=$withval],
 &nbsp; &nbsp;[pkglocalstatedir=${localstatedir}/game/nelns])
AC_SUBST(pkglocalstatedir)

eval eval NELNS_STATE=\&quot;$pkglocalstatedir/\&quot;
AC_DEFINE_UNQUOTED(NELNS_STATE, &quot;$NELNS_STATE&quot;)

AC_ARG_WITH(logdir,
 &nbsp; &nbsp;[ &nbsp;--with-logdir[=DIR]
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use DIR instead of the default localstatedir/log/nelns],
 &nbsp; &nbsp;[logdir=$withval],
 &nbsp; &nbsp;[logdir='${localstatedir}/log/nelns'])
AC_SUBST(logdir)

eval eval NELNS_LOGS=\&quot;$logdir/\&quot;
AC_DEFINE_UNQUOTED(NELNS_LOGS, &quot;$NELNS_LOGS&quot;)

dnl ====================================================================
dnl Output files to generate.
dnl ====================================================================

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>