]> jfr.im git - irc/evilnet/x3.git/blame - configure.in
invite now checks silence/invite lists
[irc/evilnet/x3.git] / configure.in
CommitLineData
d76ed9a9
AS
1dnl Process this file with autoconf to create a configure script.
2
3dnl General initialization.
4AC_REVISION([$Id$])
697f4c9a 5AC_PREREQ(2.59)
63c95a47 6AC_INIT([X3],[1.5],[evilnet-devel@lists.sourceforge.net])
ceafd592 7CODENAME=X3
d76ed9a9
AS
8AC_CONFIG_HEADERS(src/config.h)
9AC_CONFIG_SRCDIR(src/opserv.c)
10dnl AM_CANONICAL_TARGET must be before AM_INIT_AUTOMAKE() or autoconf whines
11AC_CANONICAL_TARGET
12AM_INIT_AUTOMAKE([gnu 1.6])
13AM_MAINTAINER_MODE
14
15dnl Compiler/runtime feature checks.
16AC_TYPE_SIGNAL
17AC_C_CONST
18AC_C_INLINE
19
20dnl Checks for programs.
21AC_PROG_AWK
22AC_PROG_CC
d76ed9a9 23AC_PROG_INSTALL
2f61d1d7 24AC_PROG_LIBTOOL
d76ed9a9
AS
25AC_PROG_LN_S
26AC_PROG_MAKE_SET
27AC_PROG_GCC_TRADITIONAL
5b1166fd 28AC_CHECK_PROG(MAKER, gmake, gmake, make)
d76ed9a9
AS
29
30dnl nice that unixes can all follow a standard.
31case $target in
32 *-freebsd2* | *-freebsdelf2* | *-freebsd*out3*)
33 ANSI_SRC=""
34 ;;
35 *-freebsd3* | *-freebsdelf3* | *-freebsd*out3*)
36 ANSI_SRC=""
d76ed9a9
AS
37 ;;
38 *-solaris*)
39 EXTRA_DEFINE="-D__SOLARIS__"
40 ANSI_SRC="-fno-builtin"
41 ;;
42 *-cygwin)
43 ANSI_SRC="-fno-builtin"
44 ;;
45 *-linux*)
46 dnl -D_GNU_SOURCE needed for strsignal()
47 EXTRA_DEFINE="-D_GNU_SOURCE"
48 ANSI_SRC=""
49 ;;
50 *)
51 ANSI_SRC=""
52 ;;
53esac
54CFLAGS="$CFLAGS $EXTRA_DEFINE"
55
56dnl Checks for libraries.
57AC_CHECK_LIB(socket, socket)
58AC_CHECK_LIB(nsl, gethostbyname)
d8cf9c21 59AC_CHECK_LIB(m, main)
d76ed9a9
AS
60
61dnl Checks for header files.
62AC_HEADER_STDC
63
64dnl will be used for portability stuff
65AC_HEADER_TIME
66AC_STRUCT_TM
67
68dnl Would rather not bail on headers, BSD has alot of the functions elsewhere. -Jedi
5b1166fd 69AC_CHECK_HEADERS(fcntl.h tgmath.h malloc.h netdb.h netinet/in.h sys/resource.h sys/timeb.h sys/times.h sys/param.h sys/socket.h sys/time.h sys/types.h sys/wait.h unistd.h getopt.h memory.h arpa/inet.h sys/mman.h sys/stat.h dirent.h,,)
d76ed9a9 70
d76ed9a9 71dnl portability stuff, hurray! -Jedi
2f61d1d7 72AC_CHECK_MEMBER([struct sockaddr.sa_len],
73 [AC_DEFINE([HAVE_SOCKADDR_SA_LEN],,[Define if struct sockaddr has sa_len field])],
74 [],[#include <sys/types.h>
75#include <sys/socket.h>])
76AC_CHECK_MEMBER([struct addrinfo.ai_flags],
77 [AC_DEFINE([HAVE_STRUCT_ADDRINFO],,[Define if struct addrinfo declared])],
78 [],[#include <sys/types.h>
79#include <sys/socket.h>
80#include <netdb.h>])
d76ed9a9
AS
81AC_CHECK_FUNCS(gettimeofday)
82if test $ac_cv_func_gettimeofday = no; then
2f61d1d7 83 AC_CHECK_FUNCS(ftime,,AC_MSG_ERROR([ftime or gettimeofday required. X3 build will fail.]))
d76ed9a9
AS
84fi
85
86dnl We have fallbacks in case these are missing, so just check for them.
5b1166fd 87AC_CHECK_FUNCS(freeaddrinfo getaddrinfo getnameinfo getpagesize memcpy memset strdup strerror strsignal localtime_r setrlimit getopt getopt_long sysconf,,)
2f61d1d7 88
d76ed9a9 89dnl Check for absolutely required library functions.
2f61d1d7 90AC_CHECK_FUNCS(select socket strcspn strspn strtod strtoul,,AC_MSG_ERROR([a required function was not found. X3 build will fail.]))
d76ed9a9
AS
91
92dnl Check for functions (and how to get them).
93AC_FUNC_ALLOCA
94AC_FUNC_MMAP
95
96AC_CACHE_CHECK([for sin_len], ac_cv_sin_len,
97[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>
98#include <netinet/in.h>],[struct sockaddr_in *sin; sin->sin_len = 0;])],
99ac_cv_sin_len="yes", ac_cv_sin_len="no")])
100if test $ac_cv_sin_len = yes ; then
101 AC_DEFINE(HAVE_SIN_LEN, 1, [Define if struct sockaddr_in contains a sin_len field])
102fi
103
697f4c9a 104dnl Check for socklen_t. In traditional BSD this is an int, but some
105dnl OSes use a different type. Test until we find something that will
106dnl work properly. Test borrowed from a patch submitted for Python.
107AC_CHECK_TYPE([socklen_t], ,[
108 AC_MSG_CHECKING([for socklen_t equivalent])
109 AC_CACHE_VAL([curl_cv_socklen_t_equiv],
110 [
111dnl Systems have either "struct sockaddr*" or "void*" as second
112dnl arg to getpeername.
113 curl_cv_socklen_t_equiv=
114 for arg2 in "struct sockaddr" void ; do
115 for t in int size_t unsigned long "unsigned long" ; do
116 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
117#include <sys/socket.h>
118int getpeername (int $arg2 *, $t *);]], [[$t len;
119 getpeername(0, 0, &len);]])],[curl_cv_socklen_t_equiv="$t"
120 break],[])
121 done
122 done
123 ])
124 AC_MSG_RESULT($curl_cv_socklen_t_equiv)
125 AC_DEFINE_UNQUOTED(socklen_t, $curl_cv_socklen_t_equiv,
126 [type to use in place of socklen_t if not defined])],
127 [#include <sys/types.h>
128#include<sys/socket.h>])
129
d76ed9a9
AS
130dnl Can only check with -Werror, but the rest of configure doesn't like -Werror
131OLD_CFLAGS=$CFLAGS
132CFLAGS="$CFLAGS -W -Wall -Werror"
133
134dnl Now figure out how to printf() a time_t
135AC_MSG_CHECKING(for time_t format)
136AC_CACHE_VAL(ac_cv_fmt_time_t, [
137ac_cv_fmt_time_t=no
138AC_COMPILE_IFELSE([#include <sys/types.h>
139#include <stdio.h>
140void myfunc(void) {
141 time_t test=0;
142 printf("%li", test);
143}], ac_cv_fmt_time_t="\"%li\"")
144if test $ac_cv_fmt_time_t = no; then
145AC_COMPILE_IFELSE([#include <sys/types.h>
146#include <stdio.h>
147void myfunc(void) {
148 time_t test=0;
149 printf("%i", test);
150}], ac_cv_fmt_time_t="\"%i\"")
151fi
152if test $ac_cv_fmt_time_t = no; then
153AC_MSG_ERROR([Cannot detect format string for time_t
154Please check sys/types.h for the typedef of time_t and submit to a developer])
155fi
156])
157AC_DEFINE_UNQUOTED(FMT_TIME_T, $ac_cv_fmt_time_t, [Define to printf format for a time_t variable])
158AC_MSG_RESULT($ac_cv_fmt_time_t)
159
160dnl How to copy one va_list to another?
161AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy, [AC_LINK_IFELSE(
162 [AC_LANG_PROGRAM([#include <stdarg.h>], [va_list ap1, ap2; va_copy(ap1, ap2);])],
163 [ac_cv_c_va_copy="yes"],
164 [ac_cv_c_va_copy="no"]
165)])
166if test "$ac_cv_c_va_copy" = "yes" ; then
167 AC_DEFINE(HAVE_VA_COPY, 1, [Define if we have va_copy])
168fi
169
170AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy, [AC_LINK_IFELSE(
171 [AC_LANG_PROGRAM([#include <stdarg.h>], [va_list ap1, ap2; __va_copy(ap1, ap2);])],
172 [ac_cv_c___va_copy="yes"],
173 [ac_cv_c___va_copy="no"]
174)])
175if test "$ac_cv_c___va_copy" = "yes" ; then
176 AC_DEFINE(HAVE___VA_COPY, 1, [Define if we have __va_copy])
177fi
178
179dnl Now fix things back up
180CFLAGS=$OLD_CFLAGS
181
182dnl Optional features.
183AC_MSG_CHECKING(which malloc to use)
184AC_ARG_WITH(malloc,
185[ --with-malloc=type Enables use of a special malloc library; one of:
b8cb2a14 186 system (the default), boehm-gc, dmalloc, mpatrol, x3, slab],
d76ed9a9
AS
187[],
188[withval="system"])
189if test "x$withval" = "xsystem" ; then
190 AC_MSG_RESULT(system)
191 AC_DEFINE(WITH_MALLOC_SYSTEM, 1, [Define if using the system's malloc])
5b1166fd 192 x3_malloc="System"
d76ed9a9
AS
193elif test "x$withval" = "xdmalloc" ; then
194 AC_MSG_RESULT(dmalloc)
195 AC_CHECK_HEADERS(dmalloc.h,,AC_MSG_ERROR([dmalloc header file missing. dmalloc build will fail.]))
196 AC_CHECK_LIB(dmalloc,malloc,,AC_MSG_ERROR([dmalloc library is missing. dmalloc build will fail.]))
197 AC_DEFINE(WITH_MALLOC_DMALLOC, 1, [Define if using the dmalloc debugging malloc package])
5b1166fd 198 x3_malloc="DMalloc"
d76ed9a9
AS
199elif test "x$withval" = "xmpatrol" ; then
200 AC_MSG_RESULT(mpatrol)
201 AC_CHECK_HEADERS(mpatrol.h,,AC_MSG_ERROR([mpatrol header file missing. mpatrol build will fail.]))
202 dnl Using mpatrol requires linking against libelf, at least on Linux.
203 AC_CHECK_LIB(elf, elf_begin)
204 AC_CHECK_LIB(mpatrol,__mp_atexit,,AC_MSG_ERROR([mpatrol library is missing completely. mpatrol build will fail.]))
205 AC_DEFINE(WITH_MALLOC_MPATROL, 1, [Define if using the mpatrol malloc debugging package])
5b1166fd 206 x3_malloc="MPatrol"
d76ed9a9
AS
207elif test "x$withval" = "xboehm-gc" ; then
208 AC_MSG_RESULT(boehm-gc)
209 AC_CHECK_HEADERS(gc/gc.h,,AC_MSG_ERROR([Boehm GC header file missing. boehm-gc build will fail.]))
210 AC_CHECK_LIB(dl, dlopen, , AC_MSG_ERROR([libdl library is missing. boehm-gc build will fail.]))
211 AC_CHECK_LIB(gc, GC_gcollect, , AC_MSG_ERROR([Boehm GC library is missing. boehm-gc build will fail.]))
212 AC_DEFINE(WITH_MALLOC_BOEHM_GC, 1, [Define if using the Boehm GC to garbage collect and check memory leaks])
5b1166fd 213 x3_malloc="Boehm"
b8cb2a14
AS
214elif test "x$withval" = "xx3" ; then
215 AC_MSG_RESULT(x3)
2f61d1d7 216 AC_DEFINE(WITH_MALLOC_X3, 1, [Define if using the X3 internal debug allocator])
b8cb2a14 217 MODULE_OBJS="$MODULE_OBJS alloc-x3.\$(OBJEXT)"
5b1166fd 218 x3_malloc="X3"
0d16e639 219elif test "x$withval" = "xslab" ; then
220 AC_MSG_RESULT(slab)
221 AC_DEFINE(WITH_MALLOC_SLAB, 1, [Define if using the slab internal debug allocator])
222 MODULE_OBJS="$MODULE_OBJS alloc-slab.\$(OBJEXT)"
5b1166fd 223 x3_malloc="Slab"
d76ed9a9
AS
224else
225 AC_MSG_ERROR([Unknown malloc type $withval])
226fi
227
228AC_MSG_CHECKING(which protocol to use)
229AC_ARG_WITH(protocol,
230[ --with-protocol=name Choose IRC dialect to support; one of:
231 p10 (the default), bahamut],
232[],
233[withval="p10"])
234if test "x$withval" = "xp10" ; then
235 AC_MSG_RESULT(P10)
236 AC_DEFINE(WITH_PROTOCOL_P10, 1, [Define if using the P10 dialect of IRC])
2f61d1d7 237 MODULE_OBJS="$MODULE_OBJS proto-p10.\$(OBJEXT)"
d76ed9a9 238 PROTO_FILES=proto-p10.c
5b1166fd 239 x3_ircd="P10"
d76ed9a9
AS
240elif test "x$withval" = "xbahamut" ; then
241 AC_MSG_RESULT(Bahamut)
242 AC_DEFINE(WITH_PROTOCOL_BAHAMUT, 1, [Define if using the Bahamut dialect of IRC])
2f61d1d7 243 MODULE_OBJS="$MODULE_OBJS proto-bahamut.\$(OBJEXT)"
5b1166fd 244 x3_ircd="Bahamut"
d76ed9a9
AS
245else
246 AC_MSG_ERROR([Unknown IRC dialect $withval])
247fi
248
249AC_ARG_WITH(getopt,
250[ --without-getopt Disables building of the GNU getopt library],
251[if test "$withval" = no; then
252 AC_DEFINE(IGNORE_GETOPT, 1, [Define to disable built-in getopt library])
253fi])
254
255AC_MSG_CHECKING(whether to enable tokenization)
256AC_ARG_ENABLE(tokens,
257[ --disable-tokens Disables tokenization of P10 protocol output
258 (tokens required if linking to ircu 2.10.11)],
259[],[enableval=yes])
260if test "z$enableval" = zno ; then
261 AC_MSG_RESULT(no)
262else
263 AC_DEFINE(ENABLE_TOKENS, 1, [Define if tokenized P10 desired])
264 AC_MSG_RESULT(yes)
265fi
266
267AC_MSG_CHECKING(whether to enable debug behaviors)
268AC_ARG_ENABLE(debug,
269[ --enable-debug Enables debugging behaviors],
270[
271 CPPFLAGS="$CPPFLAGS"
272 AC_MSG_RESULT(yes)
5b1166fd 273 x3_debug="Enabled"
d76ed9a9
AS
274],
275[
276 CPPFLAGS="$CPPFLAGS -DNDEBUG"
277 AC_MSG_RESULT(no)
5b1166fd 278 x3_debug="Disabled"
d76ed9a9
AS
279])
280
281if test -e src ; then
282 if test ! -d src ; then
283 AC_MSG_ERROR([src exists but is not a directory; please move it out of the way.])
284 fi
285else
286 mkdir src
287fi
288AC_MSG_CHECKING(for extra module files)
289MODULE_DEFINES="src/modules-list.h"
290echo > $MODULE_DEFINES
291touch $MODULE_DEFINES
292AC_ARG_ENABLE(modules,
293[ --enable-modules=list,of,modules Enable extra modules],
294[
295 OIFS="$IFS"
296 IFS=','
297 EXTRA_MODULE_OBJS=""
298 module_list=""
299 dnl Must use a separate file because autoconf can't stand newlines in an AC_SUBSTed variable.
300 for module in $enableval ; do
301 module=`echo $module | sed -e s/^mod-// -e s/\.c\$//`
2f61d1d7 302 EXTRA_MODULE_OBJS="$EXTRA_MODULE_OBJS mod-$module.\$(OBJEXT)"
d76ed9a9
AS
303 module_list="$module_list $module"
304 echo "WITH_MODULE($module)" >> $MODULE_DEFINES
ec311f39 305 if test "x$module" = "xtrack" ; then
306 TRACK="-D HAVE_TRACK"
307 fi
d76ed9a9
AS
308 done
309 IFS="$OIFS"
310 MODULE_OBJS="$MODULE_OBJS $EXTRA_MODULE_OBJS"
311 AC_MSG_RESULT($module_list)
312],
313[
314 AC_MSG_RESULT(none)
315])
316
317MY_SUBDIRS=""
318RX_INCLUDES=""
319RX_LIBS=""
320if test "${BROKEN_REGEX}" = yes -o "${ac_cv_func_regcomp}" = no; then
321 MY_SUBDIRS="rx $MY_SUBDIRS"
322 RX_INCLUDES="-I../rx"
323 RX_LIBS="../rx/librx.a"
324fi
325MY_SUBDIRS="$MY_SUBDIRS src"
326CFLAGS="$CFLAGS $ANSI_SRC -W -Wall"
327if test "z$USE_MAINTAINER_MODE" = zyes ; then
328 CFLAGS="$CFLAGS -Werror"
329fi
330
5b1166fd 331dnl REMEMBER TO CHANGE WITH A NEW TRE RELEASE!
332tre_version="0.7.4"
333AC_MSG_RESULT(extracting TRE regex library)
334cur_dir=`pwd`
335cd tools
336dnl remove old tre directory to force a recompile...
337rm -rf tre-$tre_version
338if test "x$ac_cv_path_GUNZIP" = "x" ; then
339 tar xfz tre.tar.gz
340else
341 cp tre.tar.gz tre.tar.gz.bak
342 gunzip -f tre.tar.gz
343 cp tre.tar.gz.bak tre.tar.gz
344 tar xf tre.tar
345fi
346AC_MSG_RESULT(configuring TRE regex library)
347cd tre-$tre_version
348./configure --disable-agrep --disable-shared --disable-system-abi --disable-wchar --disable-multibyte --prefix=$prefix || exit 1
349AC_MSG_RESULT(compiling TRE regex library)
350$ac_cv_prog_MAKER || exit 1
351AC_MSG_RESULT(installing TRE regex library)
352$ac_cv_prog_MAKER install || exit 1
353TREINCDIR="$prefix/include"
354AC_SUBST(TREINCDIR)
355if test "x$ac_cv_path_PKGCONFIG" = "x" ; then
356 TRELIBS="-L$prefix/lib -ltre"
357else
358 TRELIBS=`$ac_cv_path_PKGCONFIG --libs tre.pc`
359fi
360AC_SUBST(TRELIBS)
361cd $cur_dir
362
d76ed9a9
AS
363AC_DEFINE_UNQUOTED(CODENAME, "${CODENAME}", [Code name for this release])
364AC_SUBST(MODULE_OBJS)
365AC_SUBST(MY_SUBDIRS)
366AC_SUBST(RX_INCLUDES)
367AC_SUBST(RX_LIBS)
ec311f39 368AC_SUBST(TRACK)
d76ed9a9
AS
369AC_CONFIG_FILES(Makefile rx/Makefile src/Makefile)
370AC_OUTPUT
5b1166fd 371
372
373dnl Print configuration summary
374
375cat <<EOF
376
377Configuration summary
378=====================
379
380X3 is now configured as follows:
381
382* Compilation environment
383
384 CC = $CC
385 CFLAGS = $CFLAGS
386 CPP = $CPP
387 CPPFLAGS = $CPPFLAGS
388 LD = $LD
389 LDFLAGS = $LDFLAGS
390 LIBS = $LIBS
391
392* X3 options
393
394 Debug: $x3_debug
395 Extra Modules: $module_list
396 Malloc: $x3_malloc
397 Protocol: $x3_ircd
398 Regexp Library TRE $tre_version
399
400Now you can proceed with compiling X3
401
402EOF
403