]> jfr.im git - irc/evilnet/x3.git/blame - configure.in
help tweak and tab cleanup
[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)
6AC_INIT([X3],[1.4],[x2serv-general@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
23AC_PROG_RANLIB
24AC_PROG_INSTALL
25AC_PROG_LN_S
26AC_PROG_MAKE_SET
27AC_PROG_GCC_TRADITIONAL
28
29dnl nice that unixes can all follow a standard.
30case $target in
31 *-freebsd2* | *-freebsdelf2* | *-freebsd*out3*)
32 ANSI_SRC=""
33 ;;
34 *-freebsd3* | *-freebsdelf3* | *-freebsd*out3*)
35 ANSI_SRC=""
36 AC_DEFINE(BROKEN_REGEX, 1, [Define if the system regex library is unreliable.])
37 BROKEN_REGEX=yes
38 ;;
39 *-solaris*)
40 EXTRA_DEFINE="-D__SOLARIS__"
41 ANSI_SRC="-fno-builtin"
42 ;;
43 *-cygwin)
44 ANSI_SRC="-fno-builtin"
45 ;;
46 *-linux*)
47 dnl -D_GNU_SOURCE needed for strsignal()
48 EXTRA_DEFINE="-D_GNU_SOURCE"
49 ANSI_SRC=""
50 ;;
51 *)
52 ANSI_SRC=""
53 ;;
54esac
55CFLAGS="$CFLAGS $EXTRA_DEFINE"
56
57dnl Checks for libraries.
58AC_CHECK_LIB(socket, socket)
59AC_CHECK_LIB(nsl, gethostbyname)
d8cf9c21 60AC_CHECK_LIB(m, main)
d76ed9a9
AS
61
62dnl Checks for header files.
63AC_HEADER_STDC
64
65dnl will be used for portability stuff
66AC_HEADER_TIME
67AC_STRUCT_TM
68
69dnl Would rather not bail on headers, BSD has alot of the functions elsewhere. -Jedi
23475fc6 70AC_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 regex.h arpa/inet.h sys/mman.h sys/stat.h dirent.h,,)
d76ed9a9
AS
71
72dnl Cygwin does not have d_type in struct dirent. We use stat() as a fallback.
73AC_CHECK_MEMBER([struct dirent.d_type],
74 [AC_DEFINE(HAVE_DIRENT_D_TYPE, 1, [Define if struct dirent exists and includes the d_type element.])],,[#include <dirent.h>])
75
76dnl portability stuff, hurray! -Jedi
77AC_CHECK_FUNCS(gettimeofday)
78if test $ac_cv_func_gettimeofday = no; then
ceafd592 79 AC_CHECK_FUNCS(ftime,,AC_MSG_ERROR([ftime or gettimeofday required. X3 build will fail.]))
d76ed9a9
AS
80fi
81
82dnl We have fallbacks in case these are missing, so just check for them.
0d16e639 83AC_CHECK_FUNCS(bcopy getpagesize memcpy memset strdup strerror strsignal localtime_r setrlimit inet_ntoa getopt getopt_long regcomp regexec regfree sysconf,,)
84
d76ed9a9 85dnl Check for absolutely required library functions.
ceafd592 86AC_CHECK_FUNCS(select socket strcspn strspn strtod strtoul,,AC_MSG_ERROR([a required function was not found. X3 build will fail.]))
d76ed9a9
AS
87
88dnl Check for functions (and how to get them).
89AC_FUNC_ALLOCA
90AC_FUNC_MMAP
91
92AC_CACHE_CHECK([for sin_len], ac_cv_sin_len,
93[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>
94#include <netinet/in.h>],[struct sockaddr_in *sin; sin->sin_len = 0;])],
95ac_cv_sin_len="yes", ac_cv_sin_len="no")])
96if test $ac_cv_sin_len = yes ; then
97 AC_DEFINE(HAVE_SIN_LEN, 1, [Define if struct sockaddr_in contains a sin_len field])
98fi
99
697f4c9a 100dnl Check for socklen_t. In traditional BSD this is an int, but some
101dnl OSes use a different type. Test until we find something that will
102dnl work properly. Test borrowed from a patch submitted for Python.
103AC_CHECK_TYPE([socklen_t], ,[
104 AC_MSG_CHECKING([for socklen_t equivalent])
105 AC_CACHE_VAL([curl_cv_socklen_t_equiv],
106 [
107dnl Systems have either "struct sockaddr*" or "void*" as second
108dnl arg to getpeername.
109 curl_cv_socklen_t_equiv=
110 for arg2 in "struct sockaddr" void ; do
111 for t in int size_t unsigned long "unsigned long" ; do
112 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
113#include <sys/socket.h>
114int getpeername (int $arg2 *, $t *);]], [[$t len;
115 getpeername(0, 0, &len);]])],[curl_cv_socklen_t_equiv="$t"
116 break],[])
117 done
118 done
119 ])
120 AC_MSG_RESULT($curl_cv_socklen_t_equiv)
121 AC_DEFINE_UNQUOTED(socklen_t, $curl_cv_socklen_t_equiv,
122 [type to use in place of socklen_t if not defined])],
123 [#include <sys/types.h>
124#include<sys/socket.h>])
125
d76ed9a9
AS
126dnl Can only check with -Werror, but the rest of configure doesn't like -Werror
127OLD_CFLAGS=$CFLAGS
128CFLAGS="$CFLAGS -W -Wall -Werror"
129
130dnl Now figure out how to printf() a time_t
131AC_MSG_CHECKING(for time_t format)
132AC_CACHE_VAL(ac_cv_fmt_time_t, [
133ac_cv_fmt_time_t=no
134AC_COMPILE_IFELSE([#include <sys/types.h>
135#include <stdio.h>
136void myfunc(void) {
137 time_t test=0;
138 printf("%li", test);
139}], ac_cv_fmt_time_t="\"%li\"")
140if test $ac_cv_fmt_time_t = no; then
141AC_COMPILE_IFELSE([#include <sys/types.h>
142#include <stdio.h>
143void myfunc(void) {
144 time_t test=0;
145 printf("%i", test);
146}], ac_cv_fmt_time_t="\"%i\"")
147fi
148if test $ac_cv_fmt_time_t = no; then
149AC_MSG_ERROR([Cannot detect format string for time_t
150Please check sys/types.h for the typedef of time_t and submit to a developer])
151fi
152])
153AC_DEFINE_UNQUOTED(FMT_TIME_T, $ac_cv_fmt_time_t, [Define to printf format for a time_t variable])
154AC_MSG_RESULT($ac_cv_fmt_time_t)
155
156dnl How to copy one va_list to another?
157AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy, [AC_LINK_IFELSE(
158 [AC_LANG_PROGRAM([#include <stdarg.h>], [va_list ap1, ap2; va_copy(ap1, ap2);])],
159 [ac_cv_c_va_copy="yes"],
160 [ac_cv_c_va_copy="no"]
161)])
162if test "$ac_cv_c_va_copy" = "yes" ; then
163 AC_DEFINE(HAVE_VA_COPY, 1, [Define if we have va_copy])
164fi
165
166AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy, [AC_LINK_IFELSE(
167 [AC_LANG_PROGRAM([#include <stdarg.h>], [va_list ap1, ap2; __va_copy(ap1, ap2);])],
168 [ac_cv_c___va_copy="yes"],
169 [ac_cv_c___va_copy="no"]
170)])
171if test "$ac_cv_c___va_copy" = "yes" ; then
172 AC_DEFINE(HAVE___VA_COPY, 1, [Define if we have __va_copy])
173fi
174
175dnl Now fix things back up
176CFLAGS=$OLD_CFLAGS
177
178dnl Optional features.
179AC_MSG_CHECKING(which malloc to use)
180AC_ARG_WITH(malloc,
181[ --with-malloc=type Enables use of a special malloc library; one of:
b8cb2a14 182 system (the default), boehm-gc, dmalloc, mpatrol, x3, slab],
d76ed9a9
AS
183[],
184[withval="system"])
185if test "x$withval" = "xsystem" ; then
186 AC_MSG_RESULT(system)
187 AC_DEFINE(WITH_MALLOC_SYSTEM, 1, [Define if using the system's malloc])
188elif test "x$withval" = "xdmalloc" ; then
189 AC_MSG_RESULT(dmalloc)
190 AC_CHECK_HEADERS(dmalloc.h,,AC_MSG_ERROR([dmalloc header file missing. dmalloc build will fail.]))
191 AC_CHECK_LIB(dmalloc,malloc,,AC_MSG_ERROR([dmalloc library is missing. dmalloc build will fail.]))
192 AC_DEFINE(WITH_MALLOC_DMALLOC, 1, [Define if using the dmalloc debugging malloc package])
193elif test "x$withval" = "xmpatrol" ; then
194 AC_MSG_RESULT(mpatrol)
195 AC_CHECK_HEADERS(mpatrol.h,,AC_MSG_ERROR([mpatrol header file missing. mpatrol build will fail.]))
196 dnl Using mpatrol requires linking against libelf, at least on Linux.
197 AC_CHECK_LIB(elf, elf_begin)
198 AC_CHECK_LIB(mpatrol,__mp_atexit,,AC_MSG_ERROR([mpatrol library is missing completely. mpatrol build will fail.]))
199 AC_DEFINE(WITH_MALLOC_MPATROL, 1, [Define if using the mpatrol malloc debugging package])
200elif test "x$withval" = "xboehm-gc" ; then
201 AC_MSG_RESULT(boehm-gc)
202 AC_CHECK_HEADERS(gc/gc.h,,AC_MSG_ERROR([Boehm GC header file missing. boehm-gc build will fail.]))
203 AC_CHECK_LIB(dl, dlopen, , AC_MSG_ERROR([libdl library is missing. boehm-gc build will fail.]))
204 AC_CHECK_LIB(gc, GC_gcollect, , AC_MSG_ERROR([Boehm GC library is missing. boehm-gc build will fail.]))
205 AC_DEFINE(WITH_MALLOC_BOEHM_GC, 1, [Define if using the Boehm GC to garbage collect and check memory leaks])
b8cb2a14
AS
206elif test "x$withval" = "xx3" ; then
207 AC_MSG_RESULT(x3)
208 AC_DEFINE(WITH_MALLOC_X3, 1, [Define if using the x3 internal debug allocator])
209 MODULE_OBJS="$MODULE_OBJS alloc-x3.\$(OBJEXT)"
0d16e639 210elif test "x$withval" = "xslab" ; then
211 AC_MSG_RESULT(slab)
212 AC_DEFINE(WITH_MALLOC_SLAB, 1, [Define if using the slab internal debug allocator])
213 MODULE_OBJS="$MODULE_OBJS alloc-slab.\$(OBJEXT)"
d76ed9a9
AS
214else
215 AC_MSG_ERROR([Unknown malloc type $withval])
216fi
217
218AC_MSG_CHECKING(which protocol to use)
219AC_ARG_WITH(protocol,
220[ --with-protocol=name Choose IRC dialect to support; one of:
221 p10 (the default), bahamut],
222[],
223[withval="p10"])
224if test "x$withval" = "xp10" ; then
225 AC_MSG_RESULT(P10)
226 AC_DEFINE(WITH_PROTOCOL_P10, 1, [Define if using the P10 dialect of IRC])
b2cf3d66 227 MODULE_OBJS="$MODULE_OBJS proto-p10.o"
d76ed9a9
AS
228 PROTO_FILES=proto-p10.c
229elif test "x$withval" = "xbahamut" ; then
230 AC_MSG_RESULT(Bahamut)
231 AC_DEFINE(WITH_PROTOCOL_BAHAMUT, 1, [Define if using the Bahamut dialect of IRC])
b2cf3d66 232 MODULE_OBJS="$MODULE_OBJS proto-bahamut.o"
d76ed9a9
AS
233else
234 AC_MSG_ERROR([Unknown IRC dialect $withval])
235fi
236
237AC_ARG_WITH(getopt,
238[ --without-getopt Disables building of the GNU getopt library],
239[if test "$withval" = no; then
240 AC_DEFINE(IGNORE_GETOPT, 1, [Define to disable built-in getopt library])
241fi])
242
243AC_MSG_CHECKING(whether to enable tokenization)
244AC_ARG_ENABLE(tokens,
245[ --disable-tokens Disables tokenization of P10 protocol output
246 (tokens required if linking to ircu 2.10.11)],
247[],[enableval=yes])
248if test "z$enableval" = zno ; then
249 AC_MSG_RESULT(no)
250else
251 AC_DEFINE(ENABLE_TOKENS, 1, [Define if tokenized P10 desired])
252 AC_MSG_RESULT(yes)
253fi
254
255AC_MSG_CHECKING(whether to enable debug behaviors)
256AC_ARG_ENABLE(debug,
257[ --enable-debug Enables debugging behaviors],
258[
259 CPPFLAGS="$CPPFLAGS"
260 AC_MSG_RESULT(yes)
261],
262[
263 CPPFLAGS="$CPPFLAGS -DNDEBUG"
264 AC_MSG_RESULT(no)
265])
266
267if test -e src ; then
268 if test ! -d src ; then
269 AC_MSG_ERROR([src exists but is not a directory; please move it out of the way.])
270 fi
271else
272 mkdir src
273fi
274AC_MSG_CHECKING(for extra module files)
275MODULE_DEFINES="src/modules-list.h"
276echo > $MODULE_DEFINES
277touch $MODULE_DEFINES
278AC_ARG_ENABLE(modules,
279[ --enable-modules=list,of,modules Enable extra modules],
280[
281 OIFS="$IFS"
282 IFS=','
283 EXTRA_MODULE_OBJS=""
284 module_list=""
285 dnl Must use a separate file because autoconf can't stand newlines in an AC_SUBSTed variable.
286 for module in $enableval ; do
287 module=`echo $module | sed -e s/^mod-// -e s/\.c\$//`
b2cf3d66 288 EXTRA_MODULE_OBJS="$EXTRA_MODULE_OBJS mod-$module.o"
d76ed9a9
AS
289 module_list="$module_list $module"
290 echo "WITH_MODULE($module)" >> $MODULE_DEFINES
291 done
292 IFS="$OIFS"
293 MODULE_OBJS="$MODULE_OBJS $EXTRA_MODULE_OBJS"
294 AC_MSG_RESULT($module_list)
295],
296[
297 AC_MSG_RESULT(none)
298])
299
300MY_SUBDIRS=""
301RX_INCLUDES=""
302RX_LIBS=""
303if test "${BROKEN_REGEX}" = yes -o "${ac_cv_func_regcomp}" = no; then
304 MY_SUBDIRS="rx $MY_SUBDIRS"
305 RX_INCLUDES="-I../rx"
306 RX_LIBS="../rx/librx.a"
307fi
308MY_SUBDIRS="$MY_SUBDIRS src"
309CFLAGS="$CFLAGS $ANSI_SRC -W -Wall"
310if test "z$USE_MAINTAINER_MODE" = zyes ; then
311 CFLAGS="$CFLAGS -Werror"
312fi
313
314AC_DEFINE_UNQUOTED(CODENAME, "${CODENAME}", [Code name for this release])
315AC_SUBST(MODULE_OBJS)
316AC_SUBST(MY_SUBDIRS)
317AC_SUBST(RX_INCLUDES)
318AC_SUBST(RX_LIBS)
319AC_CONFIG_FILES(Makefile rx/Makefile src/Makefile)
320AC_OUTPUT