ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/configure.ac
(Generate patch)

Comparing:
ircd-hybrid-7.2/configure.ac (file contents), Revision 1010 by michael, Thu Sep 17 17:06:11 2009 UTC vs.
ircd-hybrid/branches/8.2.x/configure.ac (file contents), Revision 9174 by michael, Sun Jan 19 12:38:41 2020 UTC

# Line 1 | Line 1
1 < # Inspired by work Copyright (C) 2006 Luca Filipozzi
2 < # vim: set fdm=marker ts=2 sw=2 et:
1 > dnl Process this file with autoconf to produce a configure script.
2  
3   AC_REVISION([$Id$])
4  
5 < AC_PREREQ(2.64)
6 < AC_INIT([ircd-hybrid], [7.2.4])
7 < AM_INIT_AUTOMAKE(1.11)
5 > AC_PREREQ(2.69)
6 > AC_INIT([ircd-hybrid], [8.2.26], [bugs@ircd-hybrid.org])
7 > AM_INIT_AUTOMAKE(1.15 subdir-objects)
8   AM_MAINTAINER_MODE
9 + AC_CONFIG_MACRO_DIR([m4])
10   AC_CONFIG_HEADER(config.h)
11   AC_CONFIG_SRCDIR(src/ircd.c)
12  
13   # Checks for programs.
14   AC_PROG_CC_C99
15   AS_IF([test "$ac_cv_prog_cc_c99" = "no"],
16 <    [AC_MSG_ERROR([no C99 compiler found. Aborting.])])
16 >    [AC_MSG_ERROR([no suitable C99 compiler found. Aborting.])])
17   AC_PROG_YACC
18   AM_PROG_LEX
19   AC_PROG_INSTALL
20  
21 < #ltdl stuff
21 > # Initializing libtool.
22 > LT_CONFIG_LTDL_DIR([libltdl])
23   LT_INIT([dlopen disable-static])
24 < LTDL_INIT
24 > LTDL_INIT([recursive convenience])
25   LIBTOOL="$LIBTOOL --silent"
26  
27   # Checks for libraries.
28 < AX_CHECK_LIB_IPV4
29 < AX_CHECK_LIB_IPV6
28 > AX_GCC_STACK_PROTECT_CC
29 > AX_GCC_STACK_PROTECT_LIB
30 > AX_LIBRARY_NET
31  
32   # Checks for typedefs, structures, and compiler characteristics.
33   AC_C_BIGENDIAN
34  
35   # Checks for library functions.
36 < AC_CHECK_FUNCS_ONCE(mmap     \
36 > AC_CHECK_FUNCS_ONCE(accept4  \
37                      strtok_r \
36                    usleep   \
38                      strlcat  \
39                      strlcpy)
40  
41   # Checks for header files.
42   AC_CHECK_HEADERS_ONCE(crypt.h        \
42                      inttypes.h     \
43                      stdint.h       \
44                      sys/resource.h \
43                        sys/param.h    \
46                      errno.h        \
47                      sys/syslog.h   \
48                      stddef.h       \
49                      libgen.h       \
44                        types.h        \
45                        socket.h       \
46 <                      sys/wait.h     \
53 <                      wait.h         \
54 <                      link.h)
55 <
56 < dnl check for /dev/null so we can use it to hold evil fd's
57 < AC_MSG_CHECKING([for /dev/null])
58 < AS_IF([test -c /dev/null], [
59 <  AC_DEFINE(PATH_DEVNULL, "/dev/null",   [Path to /dev/null])
60 <  AC_MSG_RESULT([yes])], [
61 <  AC_DEFINE(PATH_DEVNULL, "devnull.log", [Path to /dev/null])
62 <  AC_MSG_RESULT([no - using devnull.log])])
63 <
46 >                      sys/wait.h)
47  
48   AC_SEARCH_LIBS(crypt, crypt)
49  
67
68 AC_ARG_WITH(zlib-path,
69 AS_HELP_STRING([--with-zlib-path=DIR], [Path to libz.so for ziplinks support.]),
70 [LDFLAGS="-L$withval $LDFLAGS"],)
71
72 AC_ARG_ENABLE(zlib, AS_HELP_STRING([--disable-zlib],[Disable ziplinks support]),
73 [zlib=$enableval],[zlib=yes])
74
75 AS_IF([test "$zlib" = "yes"], [
76  AC_CHECK_HEADER(zlib.h, [AC_CHECK_LIB(z, zlibVersion,
77    [
78      LIBS="-lz $LIBS"
79      AC_DEFINE(HAVE_LIBZ, 1, [Define to 1 if zlib (-lz) is available.])
80    ], zlib=no)
81  ], zlib=no)
82 ])
83
84 AC_ARG_WITH(libpcre-path,
85 AS_HELP_STRING([--with-libpcre-path=DIR], [Path to libpcre.so for PCRE support.]),
86 [LDFLAGS="-L$withval $LDFLAGS"],)
87
88 AC_ARG_ENABLE(libpcre, AS_HELP_STRING([--disable-libpcre],[Disable PCRE support]),
89 [libpcre=$enableval],[libpcre=yes])
90
91 AS_IF([test "$libpcre" = "yes"], [
92  AC_CHECK_HEADER(pcre.h, [AC_CHECK_LIB(pcre, pcre_study,
93    [
94      LIBS="-lpcre $LIBS"
95      AC_DEFINE(HAVE_LIBPCRE, 1, [Define to 1 if libpcre (-lpcre) is available.])
96    ], libpcre=no)
97  ], libpcre=no)
98 ])
99 AM_CONDITIONAL(ENABLE_PCRE, [test "$libpcre" = yes])
100
101
102 dnl Openssl checks
103 AC_ARG_ENABLE(openssl,
104 [  --enable-openssl[=DIR]       Enable OpenSSL support (DIR optional).
105  --disable-openssl            Disable OpenSSL support. ],
106 [ cf_enable_openssl=$enableval ],
107 [ cf_enable_openssl="auto" ])
108 AC_MSG_CHECKING([for OpenSSL])
109 if test "$cf_enable_openssl" != "no"; then
110  cf_openssl_basedir=""
111  if test "$cf_enable_openssl" != "auto" &&
112     test "$cf_enable_openssl" != "yes"; then
113     dnl Support for --enable-openssl=/some/place
114     cf_openssl_basedir="${cf_enable_openssl}"
115  else
116    dnl Do the auto-probe here.  Check some common directory paths.
117    for dirs in /usr/local/ssl /usr/pkg /usr/local /usr/lib /usr/lib/ssl\
118                /opt /opt/openssl /usr/local/openssl; do
119      if test -f "${dirs}/include/openssl/opensslv.h"; then
120        cf_openssl_basedir="${dirs}"
121        break
122      fi
123    done
124    unset dirs
125  fi
126
127  dnl Now check cf_openssl_found to see if we found anything.
128  if test ! -z "$cf_openssl_basedir"; then
129    if test -f "${cf_openssl_basedir}/include/openssl/opensslv.h"; then
130      CPPFLAGS="-I${cf_openssl_basedir}/include $CPPFLAGS"
131      LDFLAGS="-L${cf_openssl_basedir}/lib $LDFLAGS"
132    else
133      dnl OpenSSL wasn't found in the directory specified.  Naughty
134      dnl administrator...
135      cf_openssl_basedir=""
136    fi
137  else
138    dnl Check for stock FreeBSD 4.x and 5.x systems, since their files
139    dnl are in /usr/include and /usr/lib.  In this case, we don't want to
140    dnl change INCLUDES or LIBS, but still want to enable OpenSSL.
141    dnl We can't do this check above, because some people want two versions
142    dnl of OpenSSL installed (stock FreeBSD 4.x/5.x and /usr/local/ssl)
143    dnl and they want /usr/local/ssl to have preference.
144    if test -f "/usr/include/openssl/opensslv.h"; then
145      cf_openssl_basedir="/usr"
146    fi
147  fi
148
149  dnl If we have a basedir defined, then everything is okay.  Otherwise,
150  dnl we have a problem.
151  if test ! -z "$cf_openssl_basedir"; then
152    LIBS="-lcrypto -lssl $LIBS"
153    AC_MSG_RESULT([$cf_openssl_basedir])
154    cf_enable_openssl="yes"
155    AC_DEFINE(HAVE_LIBCRYPTO, 1, [If we support ssl])
156  else
157    AC_MSG_RESULT([not found. Please check your path.])
158    cf_enable_openssl="no"
159  fi
160  unset cf_openssl_basedir
161 else
162  dnl If --disable-openssl was specified
163  AC_MSG_RESULT([disabled])
164 fi
165 AM_CONDITIONAL(ENABLE_SSL, [test "$cf_enable_openssl" = yes])
166
167
168 AC_ARG_ENABLE(assert, AS_HELP_STRING([--enable-assert],
169                                     [Enable assert() statements]),
170  [assert=$enableval], [assert=no])
171
172 AS_IF([test "$assert" = "no"],
173  [AC_DEFINE(NDEBUG, 1, [Define to disable assert() statements.])])
174
175
176 AC_ARG_ENABLE(small-net, AS_HELP_STRING([--enable-small-net],
177                                        [Enable small network support.]),
178 [small_net=$enableval], [small_net=no])
179
180 if test "$small_net" = yes; then
181  AC_DEFINE([NICKNAMEHISTORYLENGTH], 1500, [Size of the WHOWAS array.])
182  AC_DEFINE([CHANNEL_HEAP_SIZE], 256, [Size of the channel heap.])
183  AC_DEFINE([BAN_HEAP_SIZE], 128, [Size of the ban heap.])
184  AC_DEFINE([CLIENT_HEAP_SIZE], 256, [Size of the client heap.])
185  AC_DEFINE([LCLIENT_HEAP_SIZE], 128, [Size of the local client heap.])
186  AC_DEFINE([DNODE_HEAP_SIZE], 256, [Size of the dlink_node heap.])
187  AC_DEFINE([TOPIC_HEAP_SIZE], 256, [Size of the topic heap.])
188  AC_DEFINE([DBUF_HEAP_SIZE], 64, [Size of the dbuf heap.])
189  AC_DEFINE([AUTH_HEAP_SIZE], 128, [Size of the auth heap.])
190  AC_DEFINE([DNS_HEAP_SIZE], 128, [Size of the dns heap.])
191 else
192  AC_DEFINE([NICKNAMEHISTORYLENGTH], 15000, [Size of the WHOWAS array.])
193  AC_DEFINE([CHANNEL_HEAP_SIZE], 1024, [Size of the channel heap.])
194  AC_DEFINE([BAN_HEAP_SIZE], 1024, [Size of the ban heap.])
195  AC_DEFINE([CLIENT_HEAP_SIZE], 1024, [Size of the client heap.])
196  AC_DEFINE([LCLIENT_HEAP_SIZE], 512, [Size of the local client heap.])
197  AC_DEFINE([DNODE_HEAP_SIZE], 1024, [Size of the dlink_node heap.])
198  AC_DEFINE([TOPIC_HEAP_SIZE], 1024, [Size of the topic heap.])
199  AC_DEFINE([DBUF_HEAP_SIZE], 512, [Size of the dbuf heap.])
200  AC_DEFINE([AUTH_HEAP_SIZE], 512, [Size of the auth heap.])
201  AC_DEFINE([DNS_HEAP_SIZE], 512, [Size of the dns heap.])
202 fi
203
204
50   # Argument processing.
51 < AX_ARG_ENABLE_IOLOOP_MECHANISM
52 < AX_ARG_WITH_NICKLEN
208 < AX_ARG_WITH_TOPICLEN
209 < AX_ARG_WITH_SYSLOG
210 < AX_ARG_ENABLE_EFNET
211 < AX_ARG_ENABLE_HALFOPS
51 > AX_ARG_IOLOOP_MECHANISM
52 > AX_ARG_ENABLE_ASSERT
53   AX_ARG_ENABLE_DEBUGGING
54   AX_ARG_ENABLE_WARNINGS
55 < AX_ARG_ENABLE_SYSLOG
55 > AX_ARG_ENABLE_EFENCE
56 > AX_ARG_TLS
57 >
58 > # Disable -Wformat-truncation
59 > AX_APPEND_COMPILE_FLAGS([-Wno-format-truncation])
60  
61 < AC_DEFINE_DIR([PREFIX],[prefix],[Set to prefix.])
62 < AC_DEFINE_DIR([SYSCONFDIR],[sysconfdir],[Set to sysconfdir.])
63 < AC_DEFINE_DIR([LIBDIR],[libdir],[Set to libdir.])
64 < AC_DEFINE_DIR([DATADIR],[datadir],[Set to datadir.])
65 < AC_DEFINE_DIR([LOCALSTATEDIR],[localstatedir],[Set to localstatedir.])
61 > AX_DEFINE_DIR([PREFIX],[prefix],[Set to prefix.])
62 > AX_DEFINE_DIR([SYSCONFDIR],[sysconfdir],[Set to sysconfdir.])
63 > AX_DEFINE_DIR([LIBDIR],[libdir],[Set to libdir.])
64 > AX_DEFINE_DIR([DATADIR],[datadir],[Set to datadir.])
65 > AX_DEFINE_DIR([LOCALSTATEDIR],[localstatedir],[Set to localstatedir.])
66  
67   AC_CONFIG_FILES(              \
68         Makefile               \
224       etc/Makefile           \
225       etc/example.conf       \
226       etc/example.conf.quick \
227       etc/example.efnet.conf \
228       servlink/Makefile      \
229       contrib/Makefile       \
230       contrib/help/Makefile  \
69         src/Makefile           \
70 <       messages/Makefile      \
70 >       libltdl/Makefile       \
71         modules/Makefile       \
72 <                         modules/core/Makefile  \
72 >       modules/core/Makefile  \
73 >       modules/extra/Makefile \
74         doc/Makefile           \
75         help/Makefile          \
76 <                         help/opers/Makefile            \
238 <                         help/users/Makefile    \
239 <       tools/Makefile
240 < )
76 >       tools/Makefile)
77  
78   AC_OUTPUT
79 +
80 + echo "###############################################################################"
81 + echo "Configuration complete.  Type make (or gmake on some *BSD machines) to compile."
82 + echo
83 + echo "ircd-hybrid will be installed in ${prefix}.  To change this, run:"
84 + echo "   ./configure --prefix=DIRECTORY"
85 + echo "###############################################################################"

Comparing:
ircd-hybrid-7.2/configure.ac (property svn:keywords), Revision 1010 by michael, Thu Sep 17 17:06:11 2009 UTC vs.
ircd-hybrid/branches/8.2.x/configure.ac (property svn:keywords), Revision 9174 by michael, Sun Jan 19 12:38:41 2020 UTC

# Line 1 | Line 1
1 < Id Revision
1 > Id

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)