]> jfr.im git - solanum.git/blob - configure.ac
[svn] - remove broken ports stuff and devpoll stuff.
[solanum.git] / configure.ac
1 dnl $Id: configure.ac 3364 2007-04-03 09:50:56Z nenolod $
2 dnl Process this file with autoconf to produce a configure script.
3
4 dnl TODO: clean up all the OpenSSL and shared module checking stuff;
5 dnl the most major changes have already been made and it looks like
6 dnl said functions need to be just about as complex as they already are.
7
8 AC_PREREQ(2.57)
9
10 dnl Sneaky way to get an Id tag into the configure script
11 AC_COPYRIGHT([$Id: configure.ac 3364 2007-04-03 09:50:56Z nenolod $])
12
13 AC_INIT([charybdis],[2.2.0])
14
15 AC_CONFIG_HEADER(include/setup.h)
16
17 AC_PREFIX_DEFAULT($HOME/ircd)
18
19 AC_GNU_SOURCE
20
21 OLD_CFLAGS="$CFLAGS"
22 dnl Checks for programs.
23 AC_PROG_CC
24 AC_LANG(C)
25
26 dnl Make sure autoconf doesn't interfere with cflags -jmallett
27 CFLAGS="$OLD_CFLAGS"
28
29 dnl Check for various compilers. -jmallett
30 dnl But if $CC turns out to be gcc, sure as hell it's, well, gcc. -joshk
31
32 if test "$ac_cv_c_compiler_gnu" != yes; then
33
34 SGS=no
35 AC_MSG_CHECKING($CC -version for TenDRA or MIPSpro)
36 case `$CC -version 2>&1` in
37 *TenDRA*)
38 AC_MSG_RESULT([yes, TenDRA])
39 IRC_CFLAGS=""
40 CPPFLAGS="$CPPFLAGS -Ylonglong -Yansi -I/usr/include"
41 SGS=yes
42 TenDRA=yes
43 ;;
44 *MIPSpro*)
45 AC_MSG_RESULT([yes, MIPSpro])
46 MIPSpro=yes
47 SGS=yes
48 ;;
49 *)
50 AC_MSG_RESULT(no)
51 TenDRA=no
52 MIPSpro=no
53 ;;
54 esac
55
56 AC_MSG_CHECKING([$CC -V for Sun Workshop, Forte, HPUX or Tru64 cc])
57 case `$CC -V 2>&1` in
58 *Sun*WorkShop* | *Forte*Developer*)
59 AC_MSG_RESULT(Sun Workshop/Forte)
60 IRC_CFLAGS="-fast -xinline=dlinkAdd,dlinkAddBefore,dlinkAddTail,dlinkDelete,dlink_list_length,dlink_node,dlinkMoveList,_MyMalloc,_MyRealloc,_MyFree,_DupString"
61 SunWorkShop=yes
62 SGS=yes
63 ;;
64 *Tru64*)
65 AC_MSG_RESULT(Tru64 cc)
66 IRC_CFLAGS="-O2"
67 CPPFLAGS="-I/usr/local/include"
68 Tru=yes
69 ;;
70 *HP*ANSI*)
71 AC_MSG_RESULT(HPUX cc)
72 HPUX=yes
73 IRC_CFLAGS="+e"
74 ;;
75 *)
76 AC_MSG_RESULT(no)
77 ;;
78 esac
79
80 fi
81
82 AC_MSG_CHECKING([uname -s for Cygwin, Solaris, AIX or HPUX])
83 OSNAME=`uname -s`
84 case "$OSNAME" in
85 HP-UX*)
86 dnl only do this if we haven't already detected the newer one
87 dnl and we're not already using gcc
88
89 if test "$HPUX" != yes -a "$ac_cv_c_compiler_gnu" = no; then
90 AC_MSG_RESULT(assuming old HPUX with its own cc)
91 IRC_CFLAGS="$IRC_CFLAGS +e"
92 HPUX=yes
93 else
94 AC_MSG_RESULT(already using newer HPUX)
95 fi
96 ;;
97 CYGWIN*)
98 AC_MSG_RESULT(Cygwin)
99 CYGWIN=yes
100 ;;
101 SunOS*)
102 AC_MSG_RESULT(SunOS or Solaris)
103 AC_DEFINE(__EXTENSIONS__, 1, [This is needed to use strtok_r on Solaris.])
104 SUN=yes
105 ;;
106 AIX*)
107 AC_MSG_RESULT(AIX - Sorry you poor bastard..really we are)
108 IRC_CFLAGS="$IRC_CFLAGS -Wl,-brtl -Wl,-G"
109 ;;
110 *)
111 AC_MSG_RESULT(no)
112 ;;
113 esac
114
115 if test "$ac_cv_c_compiler_gnu" = yes; then
116 AC_MSG_CHECKING(if $CC is Apple GCC)
117
118 case `$CC -v 2>&1 | tail -n 1` in
119 *Apple*)
120 AC_MSG_RESULT(yes)
121 AppleGCC=yes
122 ;;
123 *)
124 AC_MSG_RESULT(no)
125 AppleGCC=no
126 ;;
127 esac
128
129 IRC_CFLAGS="$IRC_CFLAGS -O0 -Wall"
130 fi
131
132 dnl If we support -g, use it!
133 if test "$ac_cv_prog_cc_g" = yes; then
134 dnl Tru64 needs -g3 for -O2
135 if test "$Tru" = yes; then
136 IRC_CFLAGS="$IRC_CFLAGS -g3"
137 else
138 IRC_CFLAGS="$IRC_CFLAGS -g"
139 fi
140 fi
141
142 dnl SVR4 SGS based on what we know about the compiler -jmallett
143 AC_MSG_CHECKING(if $CC supports the SVR4 SGS interfaces)
144 if test "$SGS" = "yes"; then
145 AC_MSG_RESULT(yes)
146 else
147 AC_MSG_RESULT(no)
148 fi
149
150 dnl We prefer gcc -MM because it's a lot less bloated
151 AC_PATH_PROG(MKDEP, mkdep)
152 AC_PATH_PROG(MAKEDEPEND, makedepend)
153
154 AC_MSG_CHECKING(how to generate dependency info)
155
156 STDOUT="> .depend"
157
158 if test "$ac_cv_c_compiler_gnu" = yes; then
159 AC_MSG_RESULT(gcc -MM)
160 MKDEP="$CC -MM"
161 elif test ! -z "$MKDEP"; then
162 AC_MSG_RESULT(mkdep)
163
164 dnl Tru64's mkdep is very loud
165 if test -z "$Tru"; then
166 STDOUT=""
167 else
168 STDOUT=" 2> /dev/null"
169 fi
170 elif test "$SunWorkShop" = yes; then
171 AC_MSG_RESULT($CC -xM)
172 MKDEP="$CC -xM"
173 STDOUT="> .depend 2> /dev/null"
174 elif test ! -z "$MAKEDEPEND"; then
175 AC_MSG_RESULT(makedepend)
176 MKDEP="$MAKEDEPEND -f-"
177 else
178 AC_MSG_RESULT([nothing suitable.. forget it!])
179 MKDEP=":"
180 fi
181
182 AC_SUBST(MKDEP)
183 AC_SUBST(STDOUT)
184
185 dnl check for /dev/null so we can use it to hold evil fd's
186 AC_MSG_CHECKING([for /dev/null])
187 if test -c /dev/null ; then
188 AC_DEFINE(PATH_DEVNULL, "/dev/null", [Path to /dev/null])
189 AC_MSG_RESULT(yes)
190 else
191 AC_DEFINE(PATH_DEVNULL, "devnull.log", [Path to /dev/null])
192 AC_MSG_RESULT(no - using devnull.log)
193 fi
194
195 dnl jdc -- If CFLAGS is defined, best use it everywhere...
196 dnl NOTE: jv says it must be added to the *END*, because things like
197 dnl "gcc -O9 -O2" will result in -O2 getting preference. How stupid.
198 if test ! -z "$CFLAGS"; then
199 IRC_CFLAGS="$IRC_CFLAGS $CFLAGS"
200 fi
201
202 AC_ISC_POSIX
203 AC_C_INLINE
204 AC_PROG_GCC_TRADITIONAL
205 AC_PROG_MAKE_SET
206 AC_PROG_INSTALL
207 AC_PATH_PROG(RM, rm)
208 AC_PATH_PROG(CP, cp)
209 AC_PATH_PROG(MV, mv)
210 AC_PATH_PROG(LN, ln)
211 AC_PATH_PROG(SED, sed)
212 AC_PATH_PROG(AR, ar)
213 AC_PATH_PROG(LD, ld)
214 AC_PATH_PROG(RANLIB, ranlib)
215 AC_PATH_PROG(TOUCH, touch)
216
217 AC_PROG_YACC
218
219 dnl AC_PROG_YACC defaults to yacc unconditionally if nothing can be found
220 if test "$YACC" = "yacc" -a -z "`which $YACC 2>/dev/null`"; then
221 AC_MSG_ERROR([could not locate a suitable parser generator; install bison, yacc, or byacc])
222 fi
223
224 AC_PROG_LEX
225
226 if test "$LEX" = ":"; then
227 AC_MSG_ERROR([could not locate a suitable lexical generator, install flex or lex.])
228 fi
229
230 dnl use directory structure of cached as default (hack)
231 if test "$libexecdir" = '${exec_prefix}/libexec' &&
232 test "$localstatedir" = '${prefix}/var'; then
233 libexecdir='${bindir}'
234 localstatedir='${prefix}'
235 fi
236
237 dnl Checks for header files.
238 AC_HEADER_STDC
239
240 AC_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])
241
242 dnl Stuff that the memory manager (imalloc) depends on
243 dnl ==================================================
244
245 AC_C_CONST
246 if test "$ac_cv_header_machine_endian_h" = "no" ; then
247 AC_C_BIGENDIAN
248 fi
249 AC_TYPE_PID_T
250 AC_TYPE_SIZE_T
251 AC_CHECK_SIZEOF(short)
252 AC_CHECK_SIZEOF(int)
253 AC_CHECK_SIZEOF(long)
254 AC_CHECK_SIZEOF(long long)
255
256 dnl Memory manager
257 dnl ==============
258
259 AC_MSG_CHECKING([the system's memory page size])
260 pagesize="no"
261 AC_TRY_RUN([
262 #include <stdio.h>
263 #if HAVE_UNISTD_H
264 # include <unistd.h>
265 #endif
266
267 int main(void) {
268 FILE *fp = fopen("conftest.malloc", "w");
269
270 if (fp != NULL) {
271 fprintf(fp, "%d\n", getpagesize());
272 fclose(fp);
273 } else
274 exit(1);
275 exit(0);
276 }],[
277 if test -f "conftest.malloc" ; then
278 pagesize=`cat conftest.malloc`
279 fi
280 ])
281 if test "$pagesize" != "no" ; then
282 AC_MSG_RESULT($pagesize)
283 else
284 if test "$ac_cv_sizeof_int" = "4" ; then
285 pagesize=4096
286 else
287 pagesize=8192
288 fi
289 AC_MSG_RESULT([$pagesize (guessing)])
290 fi
291 AC_DEFINE_UNQUOTED(MALLOC_PAGESIZE, $pagesize,
292 [the system's memory page size])
293
294 dnl Networking Functions
295 dnl ====================
296
297 AC_SEARCH_LIBS(socket, socket, , [AC_MSG_ERROR([You have no socket()! Aborting.])])
298
299 dnl SunOS/Solaris required libnsl for inet_ntoa()
300 if test x"$SUN" = xyes; then
301 AC_SEARCH_LIBS(inet_ntoa, nsl,, [AC_MSG_ERROR([libnsl not found! Aborting.])])
302 fi
303
304 AC_CHECK_MEMBER([struct sockaddr.sa_len], [AC_DEFINE(SOCKADDR_IN_HAS_LEN, 1, [Define to 1 if sockaddr has a 'sa_len'
305 member.])],,[[#include <sys/types.h>
306 #include <sys/socket.h>
307 ]])
308
309 AC_CHECK_TYPE(socklen_t, ,
310 [AC_DEFINE([socklen_t], [unsigned int],
311 [If we don't have a real socklen_t, unsigned int is good enough.])],
312 [#include <sys/types.h>
313 #include <sys/socket.h>])
314
315 AC_ARG_ENABLE(ipv6,
316 AC_HELP_STRING([--enable-ipv6],[Enable IPv6 support]),[ipv6=$enableval],[ipv6=no])
317
318 if test $ipv6 != yes; then
319 have_v6="no"
320 else
321 AC_MSG_CHECKING([for core IPv6 support])
322
323 AC_COMPILE_IFELSE(
324 [AC_LANG_PROGRAM(
325 [[#define IN_AUTOCONF
326 #include <sys/types.h>
327 #include <sys/socket.h>
328 #include <netinet/in.h>]],
329 [[struct sockaddr_in6 s;
330 s.sin6_family = 0;]]
331 )],
332 [
333 if test "$CYGWIN" = "yes"; then
334 AC_MSG_RESULT([no, Cygwin's IPv6 is incomplete])
335 have_v6=no
336 else
337 have_v6=yes
338 AC_DEFINE(IPV6, 1, [Define if IPv6 support is present and available.])
339 AC_MSG_RESULT(yes)
340 AC_MSG_CHECKING([for struct in6addr_any])
341 AC_COMPILE_IFELSE(
342 [AC_LANG_PROGRAM(
343 [[#define IN_AUTOCONF
344 #include <sys/types.h>
345 #include <sys/socket.h>
346 #include <netinet/in.h>]],
347 [[struct in6_addr a = in6addr_any;]]
348 )],
349 [AC_MSG_RESULT(yes)],
350 [
351 AC_MSG_RESULT(no)
352 AC_DEFINE(NO_IN6ADDR_ANY, 1, [Define to 1 if your system has no in6addr_any.])
353 inet_misc=1
354 ]
355 )
356 fi
357 ],
358 [AC_MSG_RESULT(no)
359 have_v6="no"])
360 fi
361
362 AC_SEARCH_LIBS(crypt, [crypt descrypt],,)
363
364 CRYPT_LIB=$ac_cv_search_crypt
365
366 if test "$CRYPT_LIB" = "none required"; then
367 unset CRYPT_LIB
368 elif test "$CRYPT_LIB" = no; then
369 unset CRYPT_LIB
370 fi
371
372 AC_SUBST(CRYPT_LIB)
373
374 if test "$ac_cv_header_sys_wait_h" = yes -o "$ac_cv_header_wait_h" = yes; then
375 VICONF=viconf
376 dnl We need one of the above to build viconf. Just a sanity check,
377 dnl we don't want to stop people from building the rest of ircd
378 dnl just because they can't build viconf.
379 else
380 VICONF=""
381 fi
382
383 AC_SUBST(VICONF)
384
385 dnl See whether we can include both string.h and strings.h.
386 AC_CACHE_CHECK([whether string.h and strings.h may both be included],
387 gcc_cv_header_string,
388 [
389 AC_COMPILE_IFELSE(
390 [#include <string.h>
391 #include <strings.h>],
392 [gcc_cv_header_string=yes],
393 [gcc_cv_header_string=no])
394 ])
395
396 if test "$gcc_cv_header_string" = "yes"; then
397 AC_DEFINE(STRING_WITH_STRINGS, 1, [Define to 1 if string.h may be included along with strings.h])
398 fi
399
400 AC_C_BIGENDIAN
401
402 dnl Check for stdarg.h - if we can't find it, halt configure
403 AC_CHECK_HEADER(stdarg.h, , [AC_MSG_ERROR([** stdarg.h could not be found - ircd-ratbox will not compile without it **])])
404
405 dnl Checks for the existence of strlcat, strlcpy, basename...
406 dnl This more reliable test only works with gcc though.
407
408 if test "$ac_cv_c_compiler_gnu" = yes; then
409
410 AC_MSG_CHECKING(for strlcpy)
411 save_CFLAGS=$CFLAGS
412 CFLAGS="$CFLAGS -Wimplicit -Werror"
413
414 AC_LINK_IFELSE(
415 [AC_LANG_PROGRAM(
416 [[#include <string.h>
417 #include <stdlib.h>]],
418 [[char *a = malloc(6);
419 strlcpy(a, "hello", 6);]]
420 )],
421 [AC_MSG_RESULT(yes)
422 AC_DEFINE(HAVE_STRLCPY, 1, [Define if strlcpy is available (most BSDs.)])],
423 [AC_MSG_RESULT(no)]
424 )
425
426 AC_MSG_CHECKING(for strlcat)
427 AC_LINK_IFELSE(
428 [AC_LANG_PROGRAM(
429 [[#include <string.h>
430 #include <stdlib.h>]],
431 [[char *a = malloc(6);
432 a[0] = '\0';
433 strlcat(a, "hello", 6);]]
434 )],
435 [AC_MSG_RESULT(yes)
436 AC_DEFINE(HAVE_STRLCAT, 1, [Define if strlcat is available (most BSDs.)])],
437 [AC_MSG_RESULT(no)]
438 )
439
440 CFLAGS=$save_CFLAGS
441
442 else
443
444 dnl Better than nothing. The more complicated test above probably fixes powerpc,
445 dnl so who cares.
446
447 AC_CHECK_FUNCS([strlcat strlcpy])
448
449 fi
450
451 AC_CHECK_TYPE([u_int32_t], [],
452 [
453 AC_CHECK_TYPE([uint32_t],
454 [
455 AC_DEFINE(u_int32_t, [uint32_t], [If system does not define u_int32_t, define a reasonable substitute.])
456 ],
457 [
458 AC_MSG_WARN([system has no u_int32_t or uint32_t, default to unsigned long int])
459 AC_DEFINE(u_int32_t, [unsigned long int], [If system does not define u_int32_t, define to unsigned long int here.])
460 ])
461 ])
462
463 AC_CHECK_TYPE([u_int16_t], [],
464 [
465 AC_CHECK_TYPE([uint16_t],
466 [
467 AC_DEFINE(u_int16_t, [uint16_t], [If system does not define u_int16_t, define a usable substitute])
468 ],
469 [
470 AC_MSG_WARN([system has no u_int16_t or uint16_t, default to unsigned short int])
471 AC_DEFINE(u_int16_t, [unsigned short int], [If system does not define u_int16_t, define a usable substitute.])
472 ])
473 ])
474
475 AC_CHECK_TYPE([in_port_t], [],
476 [AC_DEFINE(in_port_t, [u_int16_t], [If system does not define in_port_t, define it to what it should be.])],
477 [[#include <sys/types.h>
478 #include <netinet/in.h>]])
479
480 AC_CHECK_TYPE([sa_family_t], [],
481 [AC_DEFINE(sa_family_t, [u_int16_t], [If system does not define sa_family_t, define it here.])],
482 [[#include <sys/types.h>
483 #include <sys/socket.h>]])
484
485 AC_CHECK_TYPES([uintptr_t])
486
487 dnl check for various functions...
488 AC_CHECK_FUNCS([socketpair vsnprintf mmap gettimeofday strdup strndup ])
489
490 AC_FUNC_ALLOCA
491
492 dnl Specialized functions checks
493 dnl ============================
494
495 dnl check for nanosleep
496 AC_CHECK_FUNC(nanosleep,,[AC_CHECK_LIB(rt,nanosleep,
497 LIBS="${LIBS} -lrt",
498 [AC_CHECK_LIB(posix4,nanosleep, LIBS="${LIBS} -lposix4"
499 )])])
500 if test x$ac_cv_func_nanosleep = xno && test x$ac_cv_lib_posix4_nanosleep = xno && test x$ac_cv_lib_rt_nanosleep = xno
501 then
502 AC_MSG_RESULT("nanosleep not found..using select for delay")
503 else
504 AC_DEFINE([HAVE_NANOSLEEP], 1, [Define if nanosleep exists])
505 fi
506
507 dnl OpenSSL support
508 AC_MSG_CHECKING(for OpenSSL)
509 AC_ARG_ENABLE(openssl,
510 [AC_HELP_STRING([--enable-openssl[=DIR]],[Enable OpenSSL support (DIR optional).])
511 AC_HELP_STRING([--disable-openssl],[Disable OpenSSL support.])],
512 [cf_enable_openssl=$enableval],
513 [cf_enable_openssl="auto"])
514
515 if test "$cf_enable_openssl" != "no" ; then
516 cf_openssl_basedir=""
517 if test "$cf_enable_openssl" != "auto" &&
518 test "$cf_enable_openssl" != "yes" ; then
519 dnl Support for --enable-openssl=/some/place
520 cf_openssl_basedir="`echo ${cf_enable_openssl} | sed 's/\/$//'`"
521 else
522 dnl Do the auto-probe here. Check some common directory paths.
523 for dirs in /usr/local/ssl /usr/pkg /usr/local \
524 /usr/local/openssl ; do
525 if test -f "${dirs}/include/openssl/opensslv.h" ; then
526 cf_openssl_basedir="${dirs}"
527 break
528 fi
529 done
530 unset dirs
531 fi
532 dnl Now check cf_openssl_found to see if we found anything.
533 if test ! -z "$cf_openssl_basedir"; then
534 if test -f "${cf_openssl_basedir}/include/openssl/opensslv.h" ; then
535 SSL_INCLUDES="-I${cf_openssl_basedir}/include"
536 SSL_LIBS="-L${cf_openssl_basedir}/lib"
537 else
538 dnl OpenSSL wasn't found in the directory specified. Naughty
539 dnl administrator...
540 cf_openssl_basedir=""
541 fi
542 else
543 dnl Check for stock FreeBSD 4.x and 5.x systems, since their files
544 dnl are in /usr/include and /usr/lib. In this case, we don't want to
545 dnl change INCLUDES or LIBS, but still want to enable OpenSSL.
546 dnl We can't do this check above, because some people want two versions
547 dnl of OpenSSL installed (stock FreeBSD 4.x/5.x and /usr/local/ssl)
548 dnl and they want /usr/local/ssl to have preference.
549 if test -f "/usr/include/openssl/opensslv.h" ; then
550 cf_openssl_basedir="/usr"
551 fi
552 fi
553
554 dnl If we have a basedir defined, then everything is okay. Otherwise,
555 dnl we have a problem.
556 if test ! -z "$cf_openssl_basedir"; then
557 AC_MSG_RESULT($cf_openssl_basedir)
558 cf_enable_openssl="yes"
559 else
560 AC_MSG_RESULT([not found. Specify a correct path?])
561 cf_enable_openssl="no"
562 fi
563 unset cf_openssl_basedir
564 else
565 dnl If --disable-openssl was specified
566 AC_MSG_RESULT(disabled)
567 fi
568
569 save_CPPFLAGS="$CPPFLAGS"
570 CPPFLAGS="$CPPFLAGS $SSL_INCLUDES"
571 save_LIBS="$LIBS"
572 LIBS="$LIBS $SSL_LIBS"
573 if test "$cf_enable_openssl" != no; then
574 dnl Check OpenSSL version (must be 0.9.6 or above!)
575 AC_MSG_CHECKING(for OpenSSL 0.9.6 or above)
576 AC_RUN_IFELSE(
577 AC_LANG_PROGRAM(
578 [#include <openssl/opensslv.h>
579 #include <stdlib.h>],
580 [[if ( OPENSSL_VERSION_NUMBER >= 0x00906000)
581 exit(0); else exit(1);]]),
582 cf_openssl_version_ok=yes,
583 cf_openssl_version_ok=no,
584 cf_openssl_version_ok=no)
585
586 if test "$cf_openssl_version_ok" = yes; then
587 AC_MSG_RESULT(found)
588
589 dnl Work around pmake/gmake conditional incompatibilities
590 AC_SUBST(ENCSPEED, encspeed)
591
592 dnl Do all the HAVE_LIBCRYPTO magic -- and check for ciphers
593 CPPFLAGS="$CPPFLAGS $SSL_LIBS"
594 AC_CHECK_LIB(crypto, RSA_free)
595 SSL_LIBS="$SSL_LIBS -lcrypto"
596 SSL_SRCS_ENABLE='$(SSL_SRCS)'
597 else
598 AC_MSG_RESULT(no - OpenSSL support disabled)
599 fi
600 fi
601
602 CPPFLAGS="$save_CPPFLAGS"
603 LIBS="$save_LIBS"
604
605 dnl End OpenSSL detection
606
607
608 dnl Specialized functions and libraries
609 dnl ===================================
610
611 AC_ARG_WITH(zlib-path,
612 AC_HELP_STRING([--with-zlib-path=DIR],[Path to libz.so for ziplinks support.]),
613 [LIBS="$LIBS -L$withval"],)
614
615 AC_ARG_ENABLE(zlib,
616 AC_HELP_STRING([--disable-zlib],[Disable ziplinks support]),
617 [zlib=$enableval],[zlib=yes])
618
619 if test "$zlib" = yes; then
620
621 AC_CHECK_HEADER(zlib.h, [
622 AC_CHECK_LIB(z, zlibVersion,
623 [
624 AC_SUBST(ZLIB_LD, -lz)
625 AC_DEFINE(HAVE_LIBZ, 1, [Define to 1 if zlib (-lz) is available.])
626 ], zlib=no)
627 ], zlib=no)
628
629 fi
630
631 dnl IO Loop Selection
632 dnl =================
633
634 AC_ARG_ENABLE(poll, AC_HELP_STRING([--enable-poll],[Force poll() usage.]),
635 [ if test $enableval = yes; then
636 SELECT_TYPE_EXPLICIT="poll"
637 else
638 use_poll=no
639 fi
640 ],)
641
642 AC_ARG_ENABLE(select, AC_HELP_STRING([--enable-select],[Force select() usage.]),
643 [ if test $enableval = yes; then
644 SELECT_TYPE_EXPLICIT="select"
645 else
646 use_select=no
647 fi
648 ],)
649
650 AC_ARG_ENABLE(kqueue, AC_HELP_STRING([--enable-kqueue],[Force kqueue() usage.]),
651 [ if test $enableval = yes; then
652 SELECT_TYPE_EXPLICIT="kqueue"
653 else
654 use_kqueue=no
655 fi
656 ],)
657
658 AC_ARG_ENABLE(epoll, AC_HELP_STRING([--enable-epoll],[Force sys_epoll usage (Linux only).]),
659 [ if test $enableval = yes; then
660 SELECT_TYPE_EXPLICIT="epoll"
661 AC_CHECK_FUNCS(epoll_ctl, [haveepoll=yes], [haveepoll=no])
662 else
663 use_epoll=no
664 fi
665 ],)
666
667 dnl **********************************************************************
668 dnl Check for --with-confdir
669 dnl **********************************************************************
670
671 AC_MSG_CHECKING([whether to modify confdir])
672 AC_ARG_WITH(confdir,
673 AC_HELP_STRING([--with-confdir=DIR],
674 [Directory to install config files.]),
675 [ confdir=`echo $withval | sed 's/\/$//'`
676 AC_MSG_RESULT(yes)
677 AC_DEFINE_DIR(ETC_DIR, confdir, [Prefix where config files are installed.])
678 AC_SUBST_DIR([confdir]) ],
679 [ confdir='${prefix}/etc'
680 AC_MSG_RESULT(no)
681 AC_DEFINE_DIR(ETC_DIR, confdir, [Prefix where config files are installed.])
682 AC_SUBST_DIR([confdir])]
683 )
684
685 dnl **********************************************************************
686 dnl Check for --with-logdir
687 dnl **********************************************************************
688
689 AC_MSG_CHECKING([whether to modify logdir])
690 AC_ARG_WITH(logdir,
691 AC_HELP_STRING([--with-logdir=DIR],
692 [Directory where to write logfiles.]),
693 [ logdir=`echo $withval | sed 's/\/$//'`
694 AC_MSG_RESULT(yes)
695 AC_DEFINE_DIR(LOG_DIR, logdir, [Prefix where to write logfiles.])
696 AC_SUBST_DIR([logdir]) ],
697 [ logdir='${prefix}/logs'
698 AC_MSG_RESULT(no)
699 AC_DEFINE_DIR(LOG_DIR, logdir, [Prefix where to write logfiles.])
700 AC_SUBST_DIR([logdir])]
701 )
702
703 dnl **********************************************************************
704 dnl Check for --with-helpdir
705 dnl **********************************************************************
706
707 AC_MSG_CHECKING([whether to modify helpdir])
708 AC_ARG_WITH(helpdir,
709 AC_HELP_STRING([--with-helpdir=DIR],
710 [Directory to install help files.]),
711 [ helpdir=`echo $withval | sed 's/\/$//'`
712 AC_MSG_RESULT(yes)
713 AC_DEFINE_DIR(HELP_DIR, helpdir, [Prefix where help files are installed.])
714 AC_SUBST_DIR([helpdir]) ],
715 [ helpdir='${prefix}/help'
716 AC_MSG_RESULT(no)
717 AC_DEFINE_DIR(HELP_DIR, helpdir, [Prefix where help file are installed.])
718 AC_SUBST_DIR([helpdir])]
719 )
720
721 dnl **********************************************************************
722 dnl Check for --with-moduledir
723 dnl **********************************************************************
724
725 AC_MSG_CHECKING([whether to modify moduledir])
726 AC_ARG_WITH(moduledir,
727 AC_HELP_STRING([--with-moduledir=DIR],
728 [Directory to install modules.]),
729 [ moduledir=`echo $withval | sed 's/\/$//'`
730 AC_MSG_RESULT(yes)
731 AC_DEFINE_DIR(MODULE_DIR, moduledir, [Prefix where modules are installed.])
732 AC_SUBST_DIR([moduledir]) ],
733 [ moduledir='${prefix}/modules'
734 AC_MSG_RESULT(no)
735 AC_DEFINE_DIR(MODULE_DIR, moduledir, [Prefix where modules are installed.])
736 AC_SUBST_DIR([moduledir])]
737 )
738
739 if test ! -z "$SELECT_TYPE_EXPLICIT"; then
740 SELECT_TYPE="$SELECT_TYPE_EXPLICIT";
741 echo "Forcing $SELECT_TYPE to be enabled"
742 else
743
744 if test ! "x$use_select" = "xno"; then
745 AC_CHECK_FUNCS(select, [haveselect=yes], [haveselect=no])
746 if test "x$haveselect" = "xyes" ; then
747 SELECT_TYPE="select"
748 fi
749 fi
750
751 if test ! "x$use_poll" = "xno"; then
752 AC_CHECK_FUNCS(poll, [havepoll=yes], [havepoll=no])
753 if test "x$havepoll" = "xyes" ; then
754 SELECT_TYPE="poll"
755 fi
756 fi
757
758 if test ! "x$use_kqueue" = "xno"; then
759 AC_CHECK_FUNCS(kevent, [havekqueue=yes], [havekqueue=no])
760 if test "x$havekqueue" = "xyes" ; then
761 SELECT_TYPE="kqueue"
762 fi
763 fi
764
765 if test ! "x$use_epoll" = "xno"; then
766 AC_CHECK_FUNCS(epoll_ctl, [haveepoll=yes], [haveepoll=no])
767 if test "x$ac_cv_header_sys_epoll_h" = "xyes"; then
768 if test "x$haveepoll" = "xyes" ; then
769 AC_MSG_CHECKING(for epoll support in kernel)
770 AC_TRY_RUN(
771 #include <stdint.h>
772 #include <sys/param.h>
773 #include <sys/types.h>
774 #include <sys/epoll.h>
775 #include <sys/syscall.h>
776 #include <unistd.h>
777
778 int
779 main(int argc, char **argv)
780 {
781 int epfd;
782
783 epfd = epoll_create(256);
784 exit (epfd == -1 ? 1 : 0);
785 }, [AC_MSG_RESULT(yes)
786 AC_DEFINE(HAVE_EPOLL, 1,
787 [Define if your system supports the epoll system calls])
788 SELECT_TYPE="epoll"],
789 AC_MSG_RESULT(no), AC_MSG_RESULT(no))
790 fi
791 fi
792
793 haveepollsyscall=no
794
795 if test "x$ac_cv_header_sys_epoll_h" = "xyes"; then
796 if test "x$haveepoll" = "xno" ; then
797 AC_MSG_CHECKING(for epoll system call)
798 AC_TRY_RUN(
799 #include <stdint.h>
800 #include <sys/param.h>
801 #include <sys/types.h>
802 #include <sys/epoll.h>
803 #include <sys/syscall.h>
804 #include <unistd.h>
805
806 int
807 epoll_create(int size)
808 {
809 return (syscall(__NR_epoll_create, size));
810 }
811
812 int
813 main(int argc, char **argv)
814 {
815 int epfd;
816
817 epfd = epoll_create(256);
818 exit (epfd == -1 ? 1 : 0);
819 }, [AC_MSG_RESULT(yes)
820 AC_DEFINE(HAVE_EPOLL, 1,
821 [Define if your system supports the epoll system calls])
822 SELECT_TYPE="epoll"],
823 AC_MSG_RESULT(no), AC_MSG_RESULT(no))
824 fi
825 fi
826
827 fi
828
829 fi
830
831 if test -z "$SELECT_TYPE"; then
832 AC_MSG_ERROR([Unable to find a usable IO interface],)
833 fi
834
835 echo "Using $SELECT_TYPE for select loop."
836
837 AC_DEFINE_UNQUOTED(SELECT_TYPE, "$SELECT_TYPE", [This is the type of IO loop we are using])
838 AC_SUBST(SELECT_TYPE)
839
840
841 dnl Debug-related options
842 dnl =====================
843
844 AC_ARG_ENABLE(assert,
845 AC_HELP_STRING([--enable-assert],[Enable assert(). Choose between soft(warnings) and hard(aborts the daemon)]),
846 [assert=$enableval], [assert=no])
847
848 if test "$assert" = no; then
849 AC_DEFINE(NDEBUG, 1, [Define this to disable debugging support.])
850 elif test "$assert" = soft; then
851 AC_DEFINE(SOFT_ASSERT, 1, [Define this to enable soft asserts.])
852 AC_DEFINE(NDEBUG, 1, [Define this to disable debugging support.])
853 elif test "$assert" = yes; then
854 assert = "hard";
855 fi
856
857 AC_MSG_CHECKING(if you want IO Debugging hooks)
858 AC_ARG_ENABLE(iodebug,
859 AC_HELP_STRING([--enable-iodebug],[Enable IO Debugging hooks]),
860 [iodebug=$enableval], [iodebug=no])
861
862 if test "$iodebug" = yes; then
863 AC_DEFINE(USE_IODEBUG_HOOKS, 1, [Define this to enable IO Debug hooks.])
864 AC_MSG_RESULT(yes)
865 else
866 AC_MSG_RESULT(no)
867 fi
868
869
870 AC_MSG_CHECKING(if you want to do a profile build)
871 AC_ARG_ENABLE(profile,
872 AC_HELP_STRING([--enable-profile],[Enable profiling]),
873 [profile=$enableval], [profile=no])
874
875 if test "$profile" = yes; then
876 if test "$ac_cv_c_compiler_gnu" = yes; then
877 IRC_CFLAGS="$IRC_CFLAGS -pg"
878 AC_MSG_RESULT([yes, adding -pg])
879 AC_DEFINE(CHARYBDIS_PROFILE, 1, [Define this if you are profiling.])
880 else
881 AC_MSG_RESULT([no, profile builds only work with gcc])
882 fi
883 else
884 AC_MSG_RESULT(no)
885 fi
886
887 AC_ARG_ENABLE(balloc,
888 AC_HELP_STRING([--disable-balloc],[Disable the block allocator.]),
889 [balloc=$enableval], [balloc=yes])
890
891 if test "$balloc" = no; then
892 AC_DEFINE([NOBALLOC], 1, [Define to 1 if you wish to disable the block allocator.])
893 fi
894
895 AC_ARG_ENABLE(small-net,
896 AC_HELP_STRING([--enable-small-net],[Enable small network support.]),
897 [small_net=$enableval], [small_net=no])
898
899 if test "$small_net" = yes; then
900 dnl AC_DEFINE([HASHSIZE], 4096, [Max number of buckets in hash tables.])
901 AC_DEFINE([NICKNAMEHISTORYLENGTH], 1500, [Size of the WHOWAS array.])
902 AC_DEFINE([CHANNEL_HEAP_SIZE], 256, [Size of the channel heap.])
903 AC_DEFINE([BAN_HEAP_SIZE], 128, [Size of the ban heap.])
904 AC_DEFINE([CLIENT_HEAP_SIZE], 256, [Size of the client heap.])
905 AC_DEFINE([LCLIENT_HEAP_SIZE], 128, [Size of the local client heap.])
906 AC_DEFINE([PCLIENT_HEAP_SIZE], 32, [Size of the pre-client heap.])
907 AC_DEFINE([USER_HEAP_SIZE], 128, [Size of the user heap.])
908 AC_DEFINE([DNODE_HEAP_SIZE], 256, [Size of the dlink_node heap.])
909 AC_DEFINE([TOPIC_HEAP_SIZE], 256, [Size of the topic heap.])
910 AC_DEFINE([LINEBUF_HEAP_SIZE], 128, [Size of the linebuf heap.])
911 AC_DEFINE([MEMBER_HEAP_SIZE], 256, [Sizeof member heap.])
912 AC_DEFINE([ND_HEAP_SIZE], 128, [Size of the nick delay heap.])
913 AC_DEFINE([CONFITEM_HEAP_SIZE], 128, [Size of the confitem heap.])
914 AC_DEFINE([MONITOR_HEAP_SIZE], 128, [Size of the monitor heap.])
915 else
916 dnl These settings are for a large network like efnet..they will use lots of memory
917 dnl so enable small net unless you really need this much support
918 AC_DEFINE([NICKNAMEHISTORYLENGTH], 15000, [Size of the WHOWAS array.])
919 AC_DEFINE([CHANNEL_HEAP_SIZE], 8192, [Size of the channel heap.])
920 AC_DEFINE([BAN_HEAP_SIZE], 4096, [Size of the ban heap.])
921 AC_DEFINE([CLIENT_HEAP_SIZE], 8192, [Size of the client heap.])
922 AC_DEFINE([LCLIENT_HEAP_SIZE], 1024, [Size of the local client heap.])
923 AC_DEFINE([PCLIENT_HEAP_SIZE], 256, [Size of the pre-client heap.])
924 AC_DEFINE([USER_HEAP_SIZE], 8192, [Size of the user heap.])
925 AC_DEFINE([DNODE_HEAP_SIZE], 8192, [Size of the dlink_node heap.])
926 AC_DEFINE([TOPIC_HEAP_SIZE], 4096, [Size of the topic heap.])
927 AC_DEFINE([LINEBUF_HEAP_SIZE], 2048, [Size of the linebuf heap.])
928 AC_DEFINE([MEMBER_HEAP_SIZE], 32768, [Sizeof member heap.])
929 AC_DEFINE([ND_HEAP_SIZE], 512, [Size of the nick delay heap.])
930 AC_DEFINE([CONFITEM_HEAP_SIZE], 256, [Size of the confitem heap.])
931 AC_DEFINE([MONITOR_HEAP_SIZE], 1024, [Size of the monitor heap.])
932 fi
933
934 AC_ARG_WITH(nicklen,
935 AC_HELP_STRING([--with-nicklen=LENGTH],[Set the nick length to LENGTH (default 15, max 50)]),
936 [
937 if test $withval -ge 50; then
938 NICKLEN=50
939 AC_MSG_WARN([NICKLEN has a hard limit of 50. Setting NICKLEN=50])
940 else
941 NICKLEN="$withval"
942 fi
943 ], [NICKLEN=15])
944
945 AC_ARG_WITH(topiclen,
946 AC_HELP_STRING([--with-topiclen=NUMBER],[Set the max topic length to NUMBER (default 390, max 390)]),
947 [
948 if test $withval -ge 390; then
949 TOPICLEN=390
950 AC_MSG_WARN([TOPICLEN has a hard limit of 390. Setting TOPICLEN=390])
951 else
952 TOPICLEN=$withval
953 fi
954 ], [TOPICLEN=390])
955
956 AC_DEFINE_UNQUOTED(TOPICLEN, ${TOPICLEN}, [Maximum topic length (<=390)])
957 AC_DEFINE_UNQUOTED(NICKLEN, (${NICKLEN}+1), [Nickname length])
958
959 AC_ARG_ENABLE(shared-modules,
960 AC_HELP_STRING([--disable-shared-modules],[ Disable shared modules.]),
961 [shared_modules=$enableval], [shared_modules="yes"])
962
963 dnl Some first-stage sanity checks.
964 if test "$shared_modules" = yes; then
965
966 if test "$CYGWIN" = yes; then
967 AC_MSG_WARN([disabling shared modules; Cygwin is at present unable to build them.])
968 shared_modules="no"
969 fi
970
971 dnl TenDRA's cc is called tcc too.
972 if test "$CC" = tcc -a "$TenDRA" = "no"; then
973 AC_MSG_WARN([disabling shared modules: Tiny C Compiler can't create PIC])
974 shared_modules="no"
975 fi
976 fi
977
978 dnl Second stage: check for functions and headers.
979 if test "$shared_modules" = yes; then
980 DYNLINK_C=dynlink.c
981 AC_CHECK_HEADERS(dlfcn.h)
982 AC_SEARCH_LIBS(shl_load, dld,
983 [
984 AC_DEFINE(HAVE_SHL_LOAD, 1, [Define if the shl_load function is available.])
985 SUFFIX=".sl"
986 MOD_TARGET=hpux_shared
987 SEDOBJ="s/\.o/.sl/g"
988 ],
989 dnl !shl_load:
990 [
991 dnl standard dlopen
992 AC_SEARCH_LIBS(dlopen, [dl c_r],
993 [
994 AC_DEFINE(HAVE_DLOPEN, 1, [Define if the dlopen function is available.])
995 SUFFIX=".so"
996 MOD_TARGET=shared_modules
997 SEDOBJ="s/\.o/.so/g"
998 if test "$AppleGCC" = yes; then
999 AC_CHECK_HEADERS([mach-o/dyld.h])
1000 fi
1001 AC_CHECK_FUNC(dlsym, ,
1002 [
1003 AC_MSG_WARN([dlsym is not available, shared modules disabled])
1004 shared_modules=no
1005 ])
1006 AC_CHECK_FUNCS(dlfunc)
1007 ],
1008 [
1009 shared_modules=no
1010 ])
1011 ])
1012 fi
1013
1014 AC_DEFINE_UNQUOTED(SHARED_SUFFIX, "$SUFFIX", [Suffix for shared libraries on this platform.])
1015
1016 dnl Third stage - wrangling the linker.
1017 if test "$shared_modules" = yes; then
1018 # The GNU linker requires the -export-dynamic option to make
1019 # all symbols visible in the dynamic symbol table.
1020 hold_ldflags=$LDFLAGS
1021 AC_MSG_CHECKING(for the ld -export-dynamic flag)
1022 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic -Werror"
1023 AC_LINK_IFELSE(AC_LANG_PROGRAM([],[int i;]), found=yes, found=no)
1024 LDFLAGS=$hold_ldflags
1025
1026 if expr "`uname -s`" : ^IRIX >/dev/null 2>&1; then
1027 found="no, IRIX ld uses -B,dynamic"
1028 LDFLAGS="${LDFLAGS} -Wl,-B,dynamic"
1029 fi
1030
1031 if expr "`uname -s`" : ^AIX >/dev/null 2>&1; then
1032 found="no, AIX ld uses -G -brtl"
1033 LDFLAGS="${LDFLAGS} -Wl,-G,-brtl"
1034 fi
1035
1036 AC_MSG_RESULT($found)
1037
1038 if test "$found" = yes; then
1039 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
1040 fi
1041
1042 AC_MSG_CHECKING(for compiler option to produce PIC)
1043 dnl The order should be here to check for groups of compilers,
1044 dnl then for odd compilers, then if no PICFLAGS were set up,
1045 dnl check for GCC and set defaults, or else error. -jmallett
1046 if test "$SGS" = "yes"; then
1047 AC_MSG_RESULT([SVR4 SGS interfaces: -KPIC -DPIC -G])
1048 PICFLAGS="-KPIC -DPIC -G"
1049 fi
1050
1051 if test "$AppleGCC" = "yes"; then
1052 AC_MSG_RESULT([Darwin Mach-O bundles: -fno-common -bundle -flat_namespace -undefined suppress])
1053 PICFLAGS="-fno-common -bundle -flat_namespace -undefined suppress"
1054 fi
1055 dnl Please note, that on HPUX two different stages of module compilation occurs, since
1056 dnl while compiling modules, the compiler does not allow you to give arguments
1057 dnl to the linker. (I did not design this)
1058 dnl So we need -c in the first stage of module compilation.
1059 dnl In the second stage, we link the modules via ld -b.
1060 dnl Additionally, HPUX does not like -export-dynamic, it likes -E instead.
1061 dnl -TimeMr14C
1062 if test "$HPUX" = "yes" -a "$CC" != gcc; then
1063 AC_MSG_RESULT(HP-UX cc: +z -r -q -n)
1064 PICFLAGS="+z -r -q -n -c"
1065 AC_MSG_CHECKING([if +ESfic is required on this platform])
1066
1067 if expr "`$CC +ESfic 2>&1`" : ".*neither supported.*" >/dev/null; then
1068 AC_MSG_RESULT(no)
1069 else
1070 AC_MSG_RESULT(yes)
1071 PICFLAGS="$PICFLAGS +ESfic"
1072 fi
1073
1074 LDFLAGS="${LDFLAGS} -Wl,-E"
1075 fi
1076 if test "$Tru" = yes -a "$CC" != gcc; then
1077 AC_MSG_RESULT([Tru64: -shared -expect_unresolved '*'])
1078 PICFLAGS="-shared -expect_unresolved '*' "
1079 LDFLAGS="-call_shared"
1080 fi
1081 if test -z "$PICFLAGS"; then
1082 if test "$ac_cv_c_compiler_gnu" = "yes"; then
1083 AC_MSG_RESULT(gcc: -fPIC -DPIC -shared)
1084 PICFLAGS="-fPIC -DPIC -shared"
1085 else
1086 AC_MSG_RESULT(no)
1087 shared_modules=no
1088 fi
1089 fi
1090 fi
1091
1092 # This must be down here, or it will mess up checks like the ones
1093 # for -Wl,-export-dynamic
1094 # -- jilles
1095 AC_ARG_ENABLE(warnings,
1096 AC_HELP_STRING([--enable-warnings],[Enable all sorts of warnings for debugging.]),
1097 [
1098 IRC_CFLAGS="$IRC_CFLAGS -O0"
1099 CFLAGS="$IRC_CFLAGS"
1100
1101 CHARYBDIS_C_GCC_TRY_FLAGS([-Wall], charybdis_cv_c_gcc_w_all)
1102 CHARYBDIS_C_GCC_TRY_FLAGS([-Wpointer-arith], charybdis_cv_c_gcc_w_pointer_arith)
1103 CHARYBDIS_C_GCC_TRY_FLAGS([-Wimplicit -Wnested-externs], charybdis_cv_c_gcc_w_implicit)
1104 CHARYBDIS_C_GCC_TRY_FLAGS([-Wcast-align], charybdis_cv_c_gcc_w_cast_align)
1105 CHARYBDIS_C_GCC_TRY_FLAGS([-Wcast-qual], charybdis_cv_c_gcc_w_cast_qual)
1106 CHARYBDIS_C_GCC_TRY_FLAGS([-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations], charybdis_cv_c_gcc_prototypes)
1107 CHARYBDIS_C_GCC_TRY_FLAGS([-Wparenthesis], charybdis_cv_c_gcc_parenthesis)
1108 CHARYBDIS_C_GCC_TRY_FLAGS([-W -Wno-unused], charybdis_cv_c_gcc_w)
1109 CHARYBDIS_C_GCC_TRY_FLAGS([-Wextra], charybdis_cv_c_gcc_w_extra)
1110 CHARYBDIS_C_GCC_TRY_FLAGS([-Wshadow], charybdis_cv_c_gcc_w_shadow)
1111 CHARYBDIS_C_GCC_TRY_FLAGS([-Wmissing-noreturn], charybdis_cv_c_gcc_w_missing_noreturn)
1112 CHARYBDIS_C_GCC_TRY_FLAGS([-Wundef], charybdis_cv_c_gcc_w_undef)
1113 CHARYBDIS_C_GCC_TRY_FLAGS([-Wpacked], charybdis_cv_c_gcc_w_packed)
1114 CHARYBDIS_C_GCC_TRY_FLAGS([-Wnested-externs], charybdis_cv_c_gcc_w_nested_externs)
1115 CHARYBDIS_C_GCC_TRY_FLAGS([-Wbad-function-cast], charybdis_cv_c_gcc_w_bad_function_cast)
1116 CHARYBDIS_C_GCC_TRY_FLAGS([-Wunused-function -Wunused-label -Wunused-value -Wunused-variable], charybdis_cv_c_gcc_w_unused)
1117 CHARYBDIS_C_GCC_TRY_FLAGS([-Wredundant-decls], charybdis_cv_c_gcc_w_redundant_decls)
1118 CHARYBDIS_C_GCC_TRY_FLAGS([-Wfloat-equal], charybdis_cv_c_gcc_w_float_equal)
1119 CHARYBDIS_C_GCC_TRY_FLAGS([-Wformat=2], charybdis_cv_c_gcc_w_format)
1120 CHARYBDIS_C_GCC_TRY_FLAGS([-pedantic], charybdis_cv_c_gcc_pedantic)
1121
1122 IRC_CFLAGS="$CFLAGS"
1123 ],[])
1124
1125 if test "$shared_modules" = no; then
1126 DYNLINK_C=""
1127 MOD_TARGET="libmodules.a"
1128 MODULES_LIBS="../modules/libmodules.a"
1129 SEDOBJ=""
1130 AC_DEFINE(STATIC_MODULES, 1, [Define to 1 if dynamic modules can't be used.])
1131 AC_MSG_WARN([shared module support has been disabled!])
1132 fi
1133
1134 dnl Stage 5 - underscores in front of symbol names.
1135 if test "$shared_modules" = yes; then
1136
1137 AC_CHECK_FUNC(nlist,,
1138 AC_CHECK_LIB(dl, nlist, nlist_lib="-ldl",
1139 AC_CHECK_LIB(elf, nlist, nlist_lib="-lelf",)
1140 )
1141 )
1142
1143 dnl We need to find out whether underscores are appended to symbol
1144 dnl names in executable files. First, though, we need to see
1145 dnl where nlist.h is hiding.
1146 AC_CHECK_HEADER(libelf/nlist.h, [ nlist_h="libelf/nlist.h" ], )
1147 AC_CHECK_HEADER(elf/nlist.h, [ nlist_h="elf/nlist.h" ], )
1148 AC_CHECK_HEADER(nlist.h, [ nlist_h="nlist.h" ], )
1149 if test x"$nlist_h" = "x"; then
1150 AC_DEFINE_UNQUOTED(SYMBOL_PREFIX, "", [String containing extra underscores prepended to symbols loaded from modules.])
1151 else
1152 AC_MSG_CHECKING(for extra underscores prepended to symbol names)
1153 AC_CACHE_VAL(symbol_underscores,
1154 [
1155 cat << EOF > conftest.c
1156 #include <$nlist_h>
1157 #include <stdio.h>
1158 #include <stdlib.h>
1159 void _modinit(void);
1160 int main(int argc, char *argv[[]]) {
1161 int i;
1162 struct nlist nl[[5]];
1163
1164 /* fill the names in this way, so it'll work almost everywhere */
1165 nl[[0]].n_name = "_modinit";
1166 nl[[1]].n_name = "__modinit";
1167 nl[[2]].n_name = "___modinit";
1168 nl[[3]].n_name = "____modinit";
1169 nl[[0]].n_value = nl[[1]].n_value = nl[[2]].n_value = nl[[3]].n_value = nl[[4]].n_name = NULL;
1170
1171 if(argc < 2 || (nlist(argv[[1]], nl)) == -1) exit(-1);
1172 for(i = 0; i < 4; i++) {
1173 if(nl[[i]].n_value != NULL)
1174 {
1175 int j;
1176 for(j = 0; j < i; j++)
1177 printf("_");
1178 exit(i);
1179 }
1180 }
1181 exit(-1);
1182 }
1183 void _modinit(void) { return; }
1184 EOF
1185 $CC $CPPFLAGS $IRC_CFLAGS -o conftest conftest.c $nlist_lib >/dev/null 2>&1
1186 symbol_underscores=`./conftest conftest`
1187 AC_MSG_RESULT($symbol_underscores)
1188 $RM -f conftest conftest.c
1189 ])
1190 AC_DEFINE_UNQUOTED(SYMBOL_PREFIX, "${symbol_underscores}", [String containing extra underscores prepended to symbols loaded from modules.])
1191 fi
1192 fi
1193
1194 AC_SUBST(MODULES_LIBS)
1195 AC_SUBST(MOD_TARGET)
1196
1197 AC_SUBST(SSL_SRCS_ENABLE)
1198 AC_SUBST(SSL_INCLUDES)
1199 AC_SUBST(SSL_LIBS)
1200
1201 AC_SUBST(LDFLAGS)
1202 AC_SUBST(PICFLAGS)
1203 AC_SUBST(IRC_CFLAGS)
1204 AC_SUBST(SEDOBJ)
1205
1206
1207 if test "$prefix" = "NONE"; then
1208 AC_DEFINE_UNQUOTED(IRCD_PREFIX, "$ac_default_prefix", [Prefix where the ircd is installed.])
1209
1210 else
1211
1212 dnl Don't get bitten by Cygwin's stupidity if the user specified
1213 dnl a custom prefix with a trailing slash
1214
1215 prefix=`echo $prefix | sed 's/\/$//'`
1216 AC_DEFINE_UNQUOTED(IRCD_PREFIX, "$prefix", [Prefix where the ircd is installed.])
1217
1218 fi
1219
1220 AC_CONFIG_FILES( \
1221 Makefile \
1222 libcharybdis/Makefile \
1223 servlink/Makefile \
1224 extensions/Makefile \
1225 unsupported/Makefile \
1226 src/Makefile \
1227 modules/Makefile \
1228 tools/Makefile \
1229 doc/Makefile \
1230 help/Makefile \
1231 )
1232
1233 AC_OUTPUT
1234
1235 if test "$cf_openssl_version_ok" = yes; then
1236 openssl="yes"
1237 else
1238 openssl="no"
1239 fi
1240
1241 if test "$shared_modules" = yes; then
1242 modules=shared
1243 else
1244 modules=static
1245 fi
1246
1247 echo "
1248 Configuration:
1249 Install directory : $prefix
1250
1251 Ziplinks : $zlib
1252 OpenSSL : $openssl
1253 Modules : $modules
1254 IPv6 support : $have_v6
1255 Socket Engine : $SELECT_TYPE
1256 Small network : $small_net
1257 Block allocator : $balloc
1258 ASM hashing code : $ricer_hashing
1259
1260 Nickname length : $NICKLEN
1261 Topic length : $TOPICLEN
1262
1263 Use make to compile Charybdis, then make install to install it.
1264 "