]> jfr.im git - solanum.git/blame - configure.ac
Add filter.c
[solanum.git] / configure.ac
CommitLineData
212380e3
AC
1dnl TODO: clean up all the OpenSSL and shared module checking stuff;
2dnl the most major changes have already been made and it looks like
3dnl said functions need to be just about as complex as they already are.
4
eec2776c 5AC_PREREQ(2.60)
212380e3 6
9ac03907 7AC_INIT([charybdis], [4.1.3-dev])
212380e3 8
eec2776c 9AC_LANG(C)
eec2776c
AJ
10AC_USE_SYSTEM_EXTENSIONS
11AC_GNU_SOURCE
12
9258de81
VI
13AC_PROG_CC_C99
14
15if test x"$ac_cv_prog_cc_c99" = "xno"; then
16 AC_ERROR([charybdis requires a C99 capable compiler])
17fi
18
c52df125 19AC_PREFIX_DEFAULT($HOME/ircd)
a5471f24 20AC_CONFIG_MACRO_DIR([m4])
212380e3 21AC_CONFIG_HEADER(include/setup.h)
3f97a5c5 22
3c27591e
AC
23AC_CONFIG_SUBDIRS([librb])
24AC_CONFIG_AUX_DIR([libltdl/config])
25
26AM_INIT_AUTOMAKE([subdir-objects])
27AM_SILENT_RULES([yes])
28AM_PROG_AR
29
30LT_INIT([dlopen disable-static])
31LT_CONFIG_LTDL_DIR([libltdl])
32LTDL_INIT
33
34build_ltdl=$with_included_ltdl
35AM_CONDITIONAL([BUILD_LTDL], [test x"$build_ltdl" = x"yes"])
36
3f97a5c5
AC
37case "$host_os" in
38*cygwin*)
39 AC_DEFINE_UNQUOTED(CYGWIN,1,[This is a Cygwin system])
40 AC_DEFINE_UNQUOTED(WINDOWS,1,[This is a Windows system])
41 ;;
8978ab4e 42*mingw* | *msys*)
3f97a5c5
AC
43 AC_DEFINE_UNQUOTED(MINGW,1,[This is a MinGW system])
44 AC_DEFINE_UNQUOTED(WINDOWS,1,[This is a Windows system])
45 AC_CHECK_HEADER(winsock2.h, , [AC_MSG_ERROR([** MinGW and no winsock2.h. I give up.])])
46 LIBS="$LIBS -lws2_32 -liphlpapi"
47 is_mingw="yes"
48 ;;
49*)
50 ;;
51esac
52
53AM_CONDITIONAL([MINGW], [test "$is_mingw" = "yes"])
54
7585af0f 55if test "$ac_cv_c_compiler_gnu" = yes; then
eec2776c 56 IRC_CFLAGS="$IRC_CFLAGS -O0 -Wall"
212380e3
AC
57fi
58
59dnl If we support -g, use it!
60if test "$ac_cv_prog_cc_g" = yes; then
2a19fc3f 61 IRC_CFLAGS="$IRC_CFLAGS -g"
212380e3
AC
62fi
63
212380e3
AC
64dnl check for /dev/null so we can use it to hold evil fd's
65AC_MSG_CHECKING([for /dev/null])
66if test -c /dev/null ; then
67 AC_DEFINE(PATH_DEVNULL, "/dev/null", [Path to /dev/null])
68 AC_MSG_RESULT(yes)
69else
70 AC_DEFINE(PATH_DEVNULL, "devnull.log", [Path to /dev/null])
71 AC_MSG_RESULT(no - using devnull.log)
72fi
73
74dnl jdc -- If CFLAGS is defined, best use it everywhere...
75dnl NOTE: jv says it must be added to the *END*, because things like
76dnl "gcc -O9 -O2" will result in -O2 getting preference. How stupid.
77if test ! -z "$CFLAGS"; then
78 IRC_CFLAGS="$IRC_CFLAGS $CFLAGS"
79fi
80
81AC_ISC_POSIX
82AC_C_INLINE
212380e3
AC
83AC_PROG_MAKE_SET
84AC_PROG_INSTALL
85AC_PATH_PROG(RM, rm)
86AC_PATH_PROG(CP, cp)
87AC_PATH_PROG(MV, mv)
88AC_PATH_PROG(LN, ln)
89AC_PATH_PROG(SED, sed)
90AC_PATH_PROG(AR, ar)
91AC_PATH_PROG(LD, ld)
92AC_PATH_PROG(RANLIB, ranlib)
93AC_PATH_PROG(TOUCH, touch)
94
95AC_PROG_YACC
96
97dnl AC_PROG_YACC defaults to yacc unconditionally if nothing can be found
98if test "$YACC" = "yacc" -a -z "`which $YACC 2>/dev/null`"; then
99 AC_MSG_ERROR([could not locate a suitable parser generator; install bison, yacc, or byacc])
100fi
101
102AC_PROG_LEX
103
104if test "$LEX" = ":"; then
105 AC_MSG_ERROR([could not locate a suitable lexical generator, install flex or lex.])
106fi
107
c74836dc 108AC_ARG_ENABLE([fhs-paths],
6929cd01 109 [AS_HELP_STRING([--enable-fhs-paths], [Use more FHS-like pathnames (for packagers).])],
c74836dc
NPB
110 [],
111 [dnl detect if the user appears to want --enable-fhs-paths
112 AS_IF([test "$libexecdir" = '${exec_prefix}/libexec' && \
113 test "$localstatedir" = '${prefix}/var' && \
114 test "$libdir" = '${exec_prefix}/lib'],
115 [enable_fhs_paths=no],
116 [enable_fhs_paths=yes])
117 ])
212380e3 118dnl use directory structure of cached as default (hack)
c74836dc
NPB
119AS_IF([test "x$enable_fhs_paths" = "xyes"],
120 [dnl Avoid name collisions.
121 pkglibexecdir='${libexecdir}/${PACKAGE_TARNAME}'
122 rundir=${rundir-'${prefix}/run'}
123 pkgrundir='${rundir}/${PACKAGE_TARNAME}'
80a0125f
AC
124 pkglocalstatedir='${localstatedir}/${PACKAGE_TARNAME}'
125 AC_DEFINE([ENABLE_FHS_PATHS], [1], [Uncomment if FHS pathnames are enabled])],
c74836dc
NPB
126 [libexecdir='${bindir}'
127 pkglibexecdir='${libexecdir}'
128 rundir='${sysconfdir}'
129 pkgrundir='${rundir}'
212380e3 130 localstatedir='${prefix}'
c74836dc
NPB
131 pkglocalstatedir='${sysconfdir}'])
132pkglibdir='${libdir}/${PACKAGE_TARNAME}'
133AC_SUBST([pkglibdir])
134AC_SUBST([rundir])
135AC_SUBST([pkgrundir])
136AC_SUBST([pkglocalstatedir])
1870e06a 137AC_DEFINE_DIR([PKGLOCALSTATEDIR], [pkglocalstatedir], [[Directory in which to store state, such as ban database]])
c74836dc
NPB
138AC_SUBST([pkglibexecdir])
139AC_DEFINE_DIR([PKGLIBEXECDIR], [pkglibexecdir], [Directory where binaries the IRCd itself spawns live])
212380e3
AC
140
141dnl Checks for header files.
142AC_HEADER_STDC
07554369 143AC_HEADER_STDBOOL
212380e3
AC
144
145AC_CHECK_HEADERS([crypt.h sys/resource.h sys/param.h errno.h sys/syslog.h stddef.h sys/wait.h wait.h sys/epoll.h sys/uio.h machine/endian.h])
146
147dnl Stuff that the memory manager (imalloc) depends on
148dnl ==================================================
149
150AC_C_CONST
151if test "$ac_cv_header_machine_endian_h" = "no" ; then
152 AC_C_BIGENDIAN
153fi
154AC_TYPE_PID_T
155AC_TYPE_SIZE_T
156AC_CHECK_SIZEOF(short)
157AC_CHECK_SIZEOF(int)
158AC_CHECK_SIZEOF(long)
159AC_CHECK_SIZEOF(long long)
160
212380e3
AC
161dnl Networking Functions
162dnl ====================
163
b45a2f35 164AC_SEARCH_LIBS(socket, [socket ws2_32], , [AC_MSG_ERROR([You have no socket()! Aborting.])])
212380e3
AC
165
166dnl SunOS/Solaris required libnsl for inet_ntoa()
167if test x"$SUN" = xyes; then
168 AC_SEARCH_LIBS(inet_ntoa, nsl,, [AC_MSG_ERROR([libnsl not found! Aborting.])])
169fi
170
212380e3
AC
171AC_SEARCH_LIBS(crypt, [crypt descrypt],,)
172
173CRYPT_LIB=$ac_cv_search_crypt
174
175if test "$CRYPT_LIB" = "none required"; then
176 unset CRYPT_LIB
177elif test "$CRYPT_LIB" = no; then
178 unset CRYPT_LIB
179fi
180
181AC_SUBST(CRYPT_LIB)
182
212380e3
AC
183AC_C_BIGENDIAN
184
185dnl Check for stdarg.h - if we can't find it, halt configure
ec86417c 186AC_CHECK_HEADER(stdarg.h, , [AC_MSG_ERROR([** stdarg.h could not be found - charybdis will not compile without it **])])
212380e3
AC
187AC_CHECK_FUNCS([strlcat strlcpy])
188
2e45f5d8
MU
189AC_TYPE_INT16_T
190AC_TYPE_INT32_T
212380e3
AC
191
192AC_CHECK_TYPE([sa_family_t], [],
193[AC_DEFINE(sa_family_t, [u_int16_t], [If system does not define sa_family_t, define it here.])],
194[[#include <sys/types.h>
195#include <sys/socket.h>]])
196
197AC_CHECK_TYPES([uintptr_t])
198
199dnl check for various functions...
5203cba5 200AC_CHECK_FUNCS([snprintf vsnprintf socketpair mmap gettimeofday strdup strndup ])
212380e3
AC
201
202AC_FUNC_ALLOCA
203
204dnl Specialized functions checks
205dnl ============================
206
b79edd3e 207dnl check for nanosleep
212380e3
AC
208AC_CHECK_FUNC(nanosleep,,[AC_CHECK_LIB(rt,nanosleep,
209 LIBS="${LIBS} -lrt",
210 [AC_CHECK_LIB(posix4,nanosleep, LIBS="${LIBS} -lposix4"
211 )])])
212if test x$ac_cv_func_nanosleep = xno && test x$ac_cv_lib_posix4_nanosleep = xno && test x$ac_cv_lib_rt_nanosleep = xno
b79edd3e 213then
212380e3 214 AC_MSG_RESULT("nanosleep not found..using select for delay")
b79edd3e 215else
212380e3
AC
216 AC_DEFINE([HAVE_NANOSLEEP], 1, [Define if nanosleep exists])
217fi
218
219dnl OpenSSL support
220AC_MSG_CHECKING(for OpenSSL)
221AC_ARG_ENABLE(openssl,
222[AC_HELP_STRING([--enable-openssl[=DIR]],[Enable OpenSSL support (DIR optional).])
223AC_HELP_STRING([--disable-openssl],[Disable OpenSSL support.])],
224[cf_enable_openssl=$enableval],
225[cf_enable_openssl="auto"])
226
227if test "$cf_enable_openssl" != "no" ; then
228 cf_openssl_basedir=""
229 if test "$cf_enable_openssl" != "auto" &&
230 test "$cf_enable_openssl" != "yes" ; then
231 dnl Support for --enable-openssl=/some/place
232 cf_openssl_basedir="`echo ${cf_enable_openssl} | sed 's/\/$//'`"
233 else
234 dnl Do the auto-probe here. Check some common directory paths.
235 for dirs in /usr/local/ssl /usr/pkg /usr/local \
236 /usr/local/openssl ; do
237 if test -f "${dirs}/include/openssl/opensslv.h" ; then
238 cf_openssl_basedir="${dirs}"
239 break
240 fi
241 done
242 unset dirs
243 fi
244 dnl Now check cf_openssl_found to see if we found anything.
245 if test ! -z "$cf_openssl_basedir"; then
246 if test -f "${cf_openssl_basedir}/include/openssl/opensslv.h" ; then
247 SSL_INCLUDES="-I${cf_openssl_basedir}/include"
248 SSL_LIBS="-L${cf_openssl_basedir}/lib"
249 else
250 dnl OpenSSL wasn't found in the directory specified. Naughty
251 dnl administrator...
252 cf_openssl_basedir=""
253 fi
254 else
255 dnl Check for stock FreeBSD 4.x and 5.x systems, since their files
256 dnl are in /usr/include and /usr/lib. In this case, we don't want to
257 dnl change INCLUDES or LIBS, but still want to enable OpenSSL.
258 dnl We can't do this check above, because some people want two versions
259 dnl of OpenSSL installed (stock FreeBSD 4.x/5.x and /usr/local/ssl)
260 dnl and they want /usr/local/ssl to have preference.
261 if test -f "/usr/include/openssl/opensslv.h" ; then
262 cf_openssl_basedir="/usr"
263 fi
264 fi
265
266 dnl If we have a basedir defined, then everything is okay. Otherwise,
267 dnl we have a problem.
268 if test ! -z "$cf_openssl_basedir"; then
269 AC_MSG_RESULT($cf_openssl_basedir)
270 cf_enable_openssl="yes"
271 else
272 AC_MSG_RESULT([not found. Specify a correct path?])
273 cf_enable_openssl="no"
274 fi
275 unset cf_openssl_basedir
276else
277 dnl If --disable-openssl was specified
278 AC_MSG_RESULT(disabled)
279fi
280
281save_CPPFLAGS="$CPPFLAGS"
282CPPFLAGS="$CPPFLAGS $SSL_INCLUDES"
283save_LIBS="$LIBS"
284LIBS="$LIBS $SSL_LIBS"
285if test "$cf_enable_openssl" != no; then
286 dnl Check OpenSSL version (must be 0.9.6 or above!)
287 AC_MSG_CHECKING(for OpenSSL 0.9.6 or above)
288 AC_RUN_IFELSE(
d5ef3fd3 289 [AC_LANG_PROGRAM(
212380e3
AC
290 [#include <openssl/opensslv.h>
291 #include <stdlib.h>],
292 [[if ( OPENSSL_VERSION_NUMBER >= 0x00906000)
d5ef3fd3 293 exit(0); else exit(1);]])],
212380e3
AC
294 cf_openssl_version_ok=yes,
295 cf_openssl_version_ok=no,
296 cf_openssl_version_ok=no)
297
298 if test "$cf_openssl_version_ok" = yes; then
299 AC_MSG_RESULT(found)
300
301 dnl Work around pmake/gmake conditional incompatibilities
302 AC_SUBST(ENCSPEED, encspeed)
b79edd3e 303
212380e3
AC
304 dnl Do all the HAVE_LIBCRYPTO magic -- and check for ciphers
305 CPPFLAGS="$CPPFLAGS $SSL_LIBS"
306 AC_CHECK_LIB(crypto, RSA_free)
307 SSL_LIBS="$SSL_LIBS -lcrypto"
308 SSL_SRCS_ENABLE='$(SSL_SRCS)'
309 else
310 AC_MSG_RESULT(no - OpenSSL support disabled)
311 fi
312fi
313
314CPPFLAGS="$save_CPPFLAGS"
315LIBS="$save_LIBS"
316
317dnl End OpenSSL detection
318
319
320dnl Specialized functions and libraries
321dnl ===================================
322
1905ab5f
EK
323AC_ARG_ENABLE(hyperscan,
324AC_HELP_STRING([--disable-hyperscan],[Disable hyperscan support]),
325[hyperscan=$enableval],[hyperscan=yes])
326
327if test "$hyperscan" = yes; then
328
329CPPFLAGS="$CPPFLAGS $(pkg-config --cflags libhs)"
330LIBS="$LIBS $(pkg-config --libs libhs)"
331AC_CHECK_HEADER(hs_common.h)
332
333fi
334
212380e3
AC
335AC_ARG_WITH(zlib-path,
336AC_HELP_STRING([--with-zlib-path=DIR],[Path to libz.so for ziplinks support.]),
337[LIBS="$LIBS -L$withval"],)
338
339AC_ARG_ENABLE(zlib,
340AC_HELP_STRING([--disable-zlib],[Disable ziplinks support]),
341[zlib=$enableval],[zlib=yes])
342
343if test "$zlib" = yes; then
344
345AC_CHECK_HEADER(zlib.h, [
346 AC_CHECK_LIB(z, zlibVersion,
347 [
348 AC_SUBST(ZLIB_LD, -lz)
349 AC_DEFINE(HAVE_LIBZ, 1, [Define to 1 if zlib (-lz) is available.])
350 ], zlib=no)
351], zlib=no)
352
353fi
354
c6ad9b0c
SA
355AC_ARG_WITH(sctp-path,
356AC_HELP_STRING([--with-sctp-path=DIR],[Path to libsctp.so for SCTP support.]),
357[LIBS="$LIBS -L$withval"],)
358
359AC_ARG_ENABLE(sctp,
360AC_HELP_STRING([--disable-sctp],[Disable SCTP support]),
361[sctp=$enableval],[sctp=yes])
362
363if test "$sctp" = yes; then
364
365AC_CHECK_HEADER(netinet/sctp.h, [
366 AC_CHECK_LIB(sctp, sctp_bindx,
367 [
368 AC_SUBST(LIBSCTP_LD, -lsctp)
369 AC_DEFINE(HAVE_LIBSCTP, 1, [Define to 1 if libsctp (-lsctp) is available.])
370 ], sctp=no)
371], sctp=no)
372
373fi
374
cf1001a7
LS
375dnl Check for shared sqlite
376dnl ======================
a6ef3156
LS
377AC_ARG_WITH(shared-sqlite,
378AC_HELP_STRING([--with-shared-sqlite],[Use shared sqlite]),
379[shared_sqlite=$withval],[shared_sqlite=no])
497e30a0
LS
380
381if test "$shared_sqlite" = yes; then
a5471f24
LS
382 PKG_CHECK_MODULES(SQLITE, [sqlite3],
383 [
384 shared_sqlite=yes
cf1001a7 385 ], shared_sqlite=no)
497e30a0
LS
386fi
387
74ab6be0 388if test "$shared_sqlite" = no; then
c52df125 389 SQLITE_OBJ='sqlite3.$(OBJEXT)'
74ab6be0
LS
390fi
391
a5471f24
LS
392AC_SUBST(SQLITE_LD, "$SQLITE_LIBS")
393AC_SUBST(SQLITE_INCLUDES, "$SQLITE_CFLAGS")
c52df125 394AC_SUBST(SQLITE_OBJ)
cf1001a7 395
212380e3 396dnl **********************************************************************
634d4aad 397dnl Check for --with-confdir [deprecated, use --sysconfdir instead]
212380e3
AC
398dnl **********************************************************************
399
634d4aad
NPB
400AC_ARG_WITH([confdir],
401 [AC_HELP_STRING([--with-confdir=DIR],
402 [Directory to install config files [deprecated, use --sysconfdir instead].])],
403 [ sysconfdir=`echo $withval | sed 's/\/$//'` ],
404 [ confdir='${sysconfdir}' ])
405AC_DEFINE_DIR([ETC_DIR], [sysconfdir], [Prefix where config files are installed.])
212380e3
AC
406
407dnl **********************************************************************
408dnl Check for --with-logdir
409dnl **********************************************************************
410
411AC_MSG_CHECKING([whether to modify logdir])
b79edd3e 412AC_ARG_WITH(logdir,
212380e3
AC
413AC_HELP_STRING([--with-logdir=DIR],
414 [Directory where to write logfiles.]),
415 [ logdir=`echo $withval | sed 's/\/$//'`
c74836dc
NPB
416 AC_MSG_RESULT(yes)],
417 [ AS_IF([test "x$enable_fhs_paths" = "xyes"],
418 [logdir='${localstatedir}/log/${PACKAGE_TARNAME}'],
419 [logdir='${prefix}/logs'])
420 AC_MSG_RESULT(no)])
421AC_DEFINE_DIR([LOG_DIR], [logdir], [Prefix where to write logfiles.])
422AC_SUBST_DIR([logdir])
212380e3
AC
423
424dnl **********************************************************************
425dnl Check for --with-helpdir
426dnl **********************************************************************
427
428AC_MSG_CHECKING([whether to modify helpdir])
b79edd3e 429AC_ARG_WITH(helpdir,
212380e3
AC
430AC_HELP_STRING([--with-helpdir=DIR],
431 [Directory to install help files.]),
432 [ helpdir=`echo $withval | sed 's/\/$//'`
c74836dc
NPB
433 AC_MSG_RESULT(yes) ],
434 [ AS_IF([test "x$enable_fhs_paths" = "xyes"],
435 [helpdir='${datadir}/${PACKAGE_TARNAME}/help'],
436 [helpdir='${prefix}/help'])
437 AC_MSG_RESULT(no) ])
438AC_DEFINE_DIR([HELP_DIR], [helpdir], [Prefix where help files are installed.])
439AC_SUBST_DIR([helpdir])
212380e3
AC
440
441dnl **********************************************************************
442dnl Check for --with-moduledir
443dnl **********************************************************************
444
445AC_MSG_CHECKING([whether to modify moduledir])
b79edd3e 446AC_ARG_WITH(moduledir,
c74836dc
NPB
447 [AC_HELP_STRING([--with-moduledir=DIR],
448 [Directory to install modules.])],
212380e3 449 [ moduledir=`echo $withval | sed 's/\/$//'`
c74836dc
NPB
450 AC_MSG_RESULT(yes)],
451 [ AS_IF([test "x$enable_fhs_paths" = "xyes"],
452 [moduledir='${pkglibdir}/modules'],
453 [moduledir='${prefix}/modules'])
212380e3 454 AC_MSG_RESULT(no)
c74836dc
NPB
455 ])
456AC_DEFINE_DIR(MODULE_DIR, moduledir, [Prefix where modules are installed.])
457AC_SUBST_DIR([moduledir])
458
459dnl Check for --with-rundir
460
461AC_MSG_CHECKING([whether or modify rundir])
462AC_ARG_WITH([rundir],
463 [AC_HELP_STRING([--with-rundir=DIR],
464 [Directory in which to store pidfile.])],
465 [AC_MSG_RESULT([yes])
466 rundir=`echo $withval | sed 's/\/$//'`],
467 [AC_MSG_RESULT([no])
468 AS_IF([test "x$enable_fhs_paths" = "xyes"],
469 [rundir='${prefix}/run'],
470 [rundir='${sysconfdir}'])])
471AC_SUBST([rundir])
472AC_DEFINE_DIR([PKGRUNDIR], [pkgrundir], [Directory to store pidfile in.])
473
474dnl Installed utility program prefixes (does not affect binaries
475dnl installed into pkglibexecdir)
476AC_MSG_CHECKING([for program prefix])
477AC_ARG_WITH([program-prefix],
478 [AS_HELP_STRING([--with-program-prefix=], [If set, programs installed into PATH will be installed with names prefixed by this prefix.])],
479 [test "x$with_program_prefix" = "xno" && with_program_prefix=],
480 [with_program_prefix=])
481AC_MSG_RESULT(["$with_program_prefix"])
482PROGRAM_PREFIX="$with_program_prefix"
483AC_SUBST([PROGRAM_PREFIX])
484AC_DEFINE_UNQUOTED([PROGRAM_PREFIX], ["$with_program_prefix"], [String with which all programs intended to be in PATH are prefixed.])
212380e3 485
b6d0720c
AC
486dnl **********************************************************************
487dnl Branding
488dnl **********************************************************************
489
490AC_MSG_CHECKING([whether custom branding is requested])
491AC_ARG_WITH(custom-branding,
492AC_HELP_STRING([--with-custom-branding=NAME],
493 [Custom branding name.]),
494 [BRANDING_NAME=$withval
495 AC_MSG_RESULT([yes])],
496 [BRANDING_NAME=$PACKAGE_NAME
497 AC_MSG_RESULT([no])]
498)
499
500AC_MSG_CHECKING([whether a custom version is requested])
501AC_ARG_WITH(custom-version,
502AC_HELP_STRING([--with-custom-version=NAME],
503 [Custom version branding.]),
504 [BRANDING_VERSION=$withval
505 AC_MSG_RESULT([yes])],
506 [BRANDING_VERSION=$PACKAGE_VERSION
507 AC_MSG_RESULT([no])]
508)
509
510AC_DEFINE_UNQUOTED(BRANDING_NAME, ["$BRANDING_NAME"], [Custom branding name.])
511AC_DEFINE_UNQUOTED(BRANDING_VERSION, ["$BRANDING_VERSION"], [Custom branding name.])
512
f5493691
AC
513if test "x$BRANDING_NAME" != "x$PACKAGE_NAME"; then
514 AC_DEFINE(CUSTOM_BRANDING, 1, [Define if custom branding is enabled.])
515fi
516
0e99e13a
EM
517dnl **********************************************************************
518dnl Enable oper chghost
519dnl **********************************************************************
520
521AC_ARG_ENABLE(oper-chghost,
cca418c9 522AC_HELP_STRING([--enable-oper-chghost],[Enable opers to use the CHGHOST command]),
0e99e13a
EM
523[operchghost=$enableval],[operchghost=no])
524
525if test "$operchghost" = yes; then
526 AC_DEFINE(ENABLE_OPER_CHGHOST, 1, [Define this to enable opers to use the CHGHOST command.])
527fi
528
212380e3
AC
529dnl Debug-related options
530dnl =====================
531
532AC_ARG_ENABLE(assert,
533AC_HELP_STRING([--enable-assert],[Enable assert(). Choose between soft(warnings) and hard(aborts the daemon)]),
534[assert=$enableval], [assert=no])
535
536if test "$assert" = no; then
537 AC_DEFINE(NDEBUG, 1, [Define this to disable debugging support.])
538elif test "$assert" = soft; then
539 AC_DEFINE(SOFT_ASSERT, 1, [Define this to enable soft asserts.])
540 AC_DEFINE(NDEBUG, 1, [Define this to disable debugging support.])
541elif test "$assert" = yes; then
542 assert = "hard";
543fi
544
212380e3
AC
545AC_MSG_CHECKING(if you want to do a profile build)
546AC_ARG_ENABLE(profile,
547AC_HELP_STRING([--enable-profile],[Enable profiling]),
548[profile=$enableval], [profile=no])
549
550if test "$profile" = yes; then
551 if test "$ac_cv_c_compiler_gnu" = yes; then
552 IRC_CFLAGS="$IRC_CFLAGS -pg"
553 AC_MSG_RESULT([yes, adding -pg])
554 AC_DEFINE(CHARYBDIS_PROFILE, 1, [Define this if you are profiling.])
555 else
556 AC_MSG_RESULT([no, profile builds only work with gcc])
557 fi
558else
559 AC_MSG_RESULT(no)
560fi
561
190a5970
AC
562AC_DEFINE([NICKNAMEHISTORYLENGTH], 15000, [Size of the WHOWAS array.])
563AC_DEFINE([CHANNEL_HEAP_SIZE], 8192, [Size of the channel heap.])
564AC_DEFINE([BAN_HEAP_SIZE], 4096, [Size of the ban heap.])
565AC_DEFINE([CLIENT_HEAP_SIZE], 8192, [Size of the client heap.])
566AC_DEFINE([LCLIENT_HEAP_SIZE], 1024, [Size of the local client heap.])
567AC_DEFINE([PCLIENT_HEAP_SIZE], 256, [Size of the pre-client heap.])
568AC_DEFINE([USER_HEAP_SIZE], 8192, [Size of the user heap.])
569AC_DEFINE([DNODE_HEAP_SIZE], 8192, [Size of the dlink_node heap.])
570AC_DEFINE([TOPIC_HEAP_SIZE], 4096, [Size of the topic heap.])
571AC_DEFINE([LINEBUF_HEAP_SIZE], 2048, [Size of the linebuf heap.])
572AC_DEFINE([MEMBER_HEAP_SIZE], 32768, [Sizeof member heap.])
573AC_DEFINE([ND_HEAP_SIZE], 512, [Size of the nick delay heap.])
574AC_DEFINE([CONFITEM_HEAP_SIZE], 256, [Size of the confitem heap.])
575AC_DEFINE([MONITOR_HEAP_SIZE], 1024, [Size of the monitor heap.])
576AC_DEFINE([FD_HEAP_SIZE], 1024, [Size of fd heap.])
577AC_DEFINE([AWAY_HEAP_SIZE], 512, [Size of away heap.])
212380e3
AC
578
579AC_ARG_WITH(nicklen,
b225bf93 580AC_HELP_STRING([--with-nicklen=LENGTH],[Set the upper-bound nick length to LENGTH (default 31, max 50)]),
212380e3 581[
b79edd3e 582 if ! expr "$withval" + 0 >/dev/null 2>&1; then
f173c7d8 583 AC_ERROR([NICKLEN must be a numeric value])
b79edd3e 584 fi
ca8ff483 585 if test $withval -gt 50; then
212380e3
AC
586 NICKLEN=50
587 AC_MSG_WARN([NICKLEN has a hard limit of 50. Setting NICKLEN=50])
ca8ff483
JT
588 elif test $withval -lt 9; then
589 NICKLEN=9
590 AC_MSG_WARN([NICKLEN has a lower limit of 9. Setting NICKLEN=9])
212380e3
AC
591 else
592 NICKLEN="$withval"
593 fi
b225bf93 594], [NICKLEN=31])
212380e3 595
b79edd3e 596AC_ARG_WITH(topiclen,
212380e3
AC
597AC_HELP_STRING([--with-topiclen=NUMBER],[Set the max topic length to NUMBER (default 390, max 390)]),
598[
173a2f4d 599 if test $withval -gt 390; then
212380e3
AC
600 TOPICLEN=390
601 AC_MSG_WARN([TOPICLEN has a hard limit of 390. Setting TOPICLEN=390])
602 else
603 TOPICLEN=$withval
604 fi
605], [TOPICLEN=390])
606
212380e3
AC
607AC_DEFINE_UNQUOTED(TOPICLEN, ${TOPICLEN}, [Maximum topic length (<=390)])
608AC_DEFINE_UNQUOTED(NICKLEN, (${NICKLEN}+1), [Nickname length])
212380e3 609
34dbd2d4 610# rpath, for finding librb.so at run time
794816af
JT
611hold_ldflags=$LDFLAGS
612AC_MSG_CHECKING(for the ld -rpath flag)
613LDFLAGS="${LDFLAGS} -Wl,-rpath=${libdir}"
d5ef3fd3 614AC_LINK_IFELSE([AC_LANG_PROGRAM([],[int i;])], found=yes, found=no)
794816af
JT
615LDFLAGS=$hold_ldflags
616AC_MSG_RESULT($found)
617if test "$found" = yes; then
618 LDFLAGS="${LDFLAGS} -Wl,-rpath=\${libdir}"
619fi
620
212380e3
AC
621# This must be down here, or it will mess up checks like the ones
622# for -Wl,-export-dynamic
623# -- jilles
97199fb3 624CWARNS=""
212380e3
AC
625AC_ARG_ENABLE(warnings,
626AC_HELP_STRING([--enable-warnings],[Enable all sorts of warnings for debugging.]),
627[
628IRC_CFLAGS="$IRC_CFLAGS -O0"
629CFLAGS="$IRC_CFLAGS"
630
631CHARYBDIS_C_GCC_TRY_FLAGS([-Wall], charybdis_cv_c_gcc_w_all)
632CHARYBDIS_C_GCC_TRY_FLAGS([-Wpointer-arith], charybdis_cv_c_gcc_w_pointer_arith)
633CHARYBDIS_C_GCC_TRY_FLAGS([-Wimplicit -Wnested-externs], charybdis_cv_c_gcc_w_implicit)
634CHARYBDIS_C_GCC_TRY_FLAGS([-Wcast-align], charybdis_cv_c_gcc_w_cast_align)
635CHARYBDIS_C_GCC_TRY_FLAGS([-Wcast-qual], charybdis_cv_c_gcc_w_cast_qual)
c0e90a8e
JT
636CHARYBDIS_C_GCC_TRY_FLAGS([-Wwrite-strings], charybdis_cv_c_gcc_w_write_strings)
637CHARYBDIS_C_GCC_TRY_FLAGS([-Werror-implicit-function-declaration], charybdis_cv_c_gcc_w_error_implicit_function_declaration)
212380e3 638CHARYBDIS_C_GCC_TRY_FLAGS([-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations], charybdis_cv_c_gcc_prototypes)
35472d0f 639CHARYBDIS_C_GCC_TRY_FLAGS([-Wparentheses], charybdis_cv_c_gcc_parentheses)
212380e3
AC
640CHARYBDIS_C_GCC_TRY_FLAGS([-W -Wno-unused], charybdis_cv_c_gcc_w)
641CHARYBDIS_C_GCC_TRY_FLAGS([-Wextra], charybdis_cv_c_gcc_w_extra)
642CHARYBDIS_C_GCC_TRY_FLAGS([-Wshadow], charybdis_cv_c_gcc_w_shadow)
643CHARYBDIS_C_GCC_TRY_FLAGS([-Wmissing-noreturn], charybdis_cv_c_gcc_w_missing_noreturn)
644CHARYBDIS_C_GCC_TRY_FLAGS([-Wundef], charybdis_cv_c_gcc_w_undef)
645CHARYBDIS_C_GCC_TRY_FLAGS([-Wpacked], charybdis_cv_c_gcc_w_packed)
646CHARYBDIS_C_GCC_TRY_FLAGS([-Wnested-externs], charybdis_cv_c_gcc_w_nested_externs)
212380e3
AC
647CHARYBDIS_C_GCC_TRY_FLAGS([-Wunused-function -Wunused-label -Wunused-value -Wunused-variable], charybdis_cv_c_gcc_w_unused)
648CHARYBDIS_C_GCC_TRY_FLAGS([-Wredundant-decls], charybdis_cv_c_gcc_w_redundant_decls)
649CHARYBDIS_C_GCC_TRY_FLAGS([-Wfloat-equal], charybdis_cv_c_gcc_w_float_equal)
f9a9ffac 650CHARYBDIS_C_GCC_TRY_FLAGS([-Wformat -Wformat-y2k -Wno-format-security], charybdis_cv_c_gcc_w_format)
212380e3
AC
651
652IRC_CFLAGS="$CFLAGS"
653],[])
654
97199fb3
JT
655IRC_CFLAGS="$IRC_CFLAGS $CWARNS"
656
212380e3
AC
657AC_SUBST(MODULES_LIBS)
658AC_SUBST(MOD_TARGET)
659
660AC_SUBST(SSL_SRCS_ENABLE)
661AC_SUBST(SSL_INCLUDES)
662AC_SUBST(SSL_LIBS)
663
664AC_SUBST(LDFLAGS)
665AC_SUBST(PICFLAGS)
666AC_SUBST(IRC_CFLAGS)
667AC_SUBST(SEDOBJ)
668
669
b79edd3e 670if test "$prefix" = "NONE"; then
212380e3
AC
671 AC_DEFINE_UNQUOTED(IRCD_PREFIX, "$ac_default_prefix", [Prefix where the ircd is installed.])
672
673else
674
675dnl Don't get bitten by Cygwin's stupidity if the user specified
676dnl a custom prefix with a trailing slash
677
678 prefix=`echo $prefix | sed 's/\/$//'`
679 AC_DEFINE_UNQUOTED(IRCD_PREFIX, "$prefix", [Prefix where the ircd is installed.])
b79edd3e 680
212380e3
AC
681fi
682
683AC_CONFIG_FILES( \
684 Makefile \
0d73e7db 685 authd/Makefile \
734ce253 686 bandb/Makefile \
d261b578 687 ssld/Makefile \
caebeeca 688 wsockd/Makefile \
212380e3 689 extensions/Makefile \
46fded53 690 ircd/Makefile \
212380e3 691 modules/Makefile \
8fe5ef5a 692 tests/Makefile \
212380e3 693 tools/Makefile \
14048b96 694 tools/genssl \
212380e3
AC
695 doc/Makefile \
696 help/Makefile \
697)
14048b96 698AC_CONFIG_COMMANDS([tools/genssl_chmod], [chmod 755 tools/genssl])
212380e3
AC
699
700AC_OUTPUT
701
702if test "$cf_openssl_version_ok" = yes; then
703 openssl="yes"
704else
705 openssl="no"
706fi
707
212380e3 708echo "
b6d0720c 709Configuration of ${BRANDING_NAME}-${BRANDING_VERSION}:
212380e3
AC
710 Install directory : $prefix
711
712 Ziplinks : $zlib
713 OpenSSL : $openssl
c6ad9b0c 714 SCTP : $sctp
212380e3
AC
715
716 Nickname length : $NICKLEN
717 Topic length : $TOPICLEN
718
b6d0720c 719Use (g)make to compile $BRANDING_NAME, then (g)make install to install it.
212380e3 720"