| 4 |
|
AC_REVISION([$Id$]) |
| 5 |
|
|
| 6 |
|
AC_PREREQ(2.68) |
| 7 |
< |
AC_INIT([ircd-hybrid], [7.3-rc1], [bugs@ircd-hybrid.org]) |
| 8 |
< |
AM_INIT_AUTOMAKE(1.11.1) |
| 7 |
> |
AC_INIT([ircd-hybrid], [8beta1], [bugs@ircd-hybrid.org]) |
| 8 |
> |
AM_INIT_AUTOMAKE(1.11.4) |
| 9 |
|
AM_MAINTAINER_MODE |
| 10 |
|
AC_CONFIG_HEADER(config.h) |
| 11 |
|
AC_CONFIG_SRCDIR(src/ircd.c) |
| 36 |
|
strtok_r \ |
| 37 |
|
usleep \ |
| 38 |
|
strlcat \ |
| 39 |
< |
strlcpy \ |
| 40 |
< |
socketpair) |
| 39 |
> |
strlcpy) |
| 40 |
|
|
| 41 |
|
# Checks for header files. |
| 42 |
|
AC_CHECK_HEADERS_ONCE(crypt.h \ |
| 44 |
– |
inttypes.h \ |
| 45 |
– |
stdint.h \ |
| 43 |
|
sys/resource.h \ |
| 44 |
|
sys/param.h \ |
| 48 |
– |
errno.h \ |
| 49 |
– |
sys/syslog.h \ |
| 45 |
|
types.h \ |
| 46 |
|
socket.h \ |
| 47 |
|
sys/wait.h \ |
| 48 |
|
wait.h \ |
| 49 |
|
link.h) |
| 50 |
|
|
| 56 |
– |
# 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 |
– |
|
| 64 |
– |
|
| 51 |
|
AC_SEARCH_LIBS(crypt, crypt) |
| 52 |
|
|
| 53 |
|
|
| 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 |
– |
|
| 54 |
|
AC_ARG_WITH(libpcre-path, |
| 55 |
|
AS_HELP_STRING([--with-libpcre-path=DIR], [Path to libpcre.so for PCRE support.]), |
| 56 |
|
[LDFLAGS="-L$withval $LDFLAGS"],) |
| 119 |
|
dnl If we have a basedir defined, then everything is okay. Otherwise, |
| 120 |
|
dnl we have a problem. |
| 121 |
|
if test ! -z "$cf_openssl_basedir"; then |
| 152 |
– |
LIBS="-lcrypto -lssl $LIBS" |
| 122 |
|
AC_MSG_RESULT([$cf_openssl_basedir]) |
| 123 |
|
cf_enable_openssl="yes" |
| 155 |
– |
AC_DEFINE(HAVE_LIBCRYPTO, 1, [If we support ssl]) |
| 124 |
|
else |
| 125 |
|
AC_MSG_RESULT([not found. Please check your path.]) |
| 126 |
|
cf_enable_openssl="no" |
| 132 |
|
fi |
| 133 |
|
|
| 134 |
|
AS_IF([test "$cf_enable_openssl" != "no"], |
| 135 |
< |
[AC_MSG_CHECKING(for OpenSSL 0.9.7 or above) |
| 135 |
> |
[AC_MSG_CHECKING(for OpenSSL 0.9.8 or above) |
| 136 |
|
AC_RUN_IFELSE([ |
| 137 |
|
AC_LANG_PROGRAM([ |
| 138 |
|
#include <openssl/opensslv.h> |
| 139 |
|
#include <stdlib.h>], |
| 140 |
< |
[[ exit(!(OPENSSL_VERSION_NUMBER >= 0x00907000)); ]])], |
| 140 |
> |
[[ exit(!(OPENSSL_VERSION_NUMBER >= 0x00908000)); ]])], |
| 141 |
|
[cf_openssl_version_ok=yes], |
| 142 |
|
[cf_openssl_version_ok=no], |
| 143 |
|
[cf_openssl_version_ok=no]) |
| 145 |
|
AS_IF([test "$cf_openssl_version_ok" = "yes"], |
| 146 |
|
[AC_MSG_RESULT(found) |
| 147 |
|
|
| 148 |
< |
AC_CHECK_LIB(crypto, RSA_free) |
| 149 |
< |
AS_IF([test "$ac_cv_lib_crypto_RSA_free" = "yes"], |
| 150 |
< |
[AC_CHECK_FUNCS(EVP_bf_cfb \ |
| 183 |
< |
EVP_cast5_cfb \ |
| 184 |
< |
EVP_idea_cfb \ |
| 185 |
< |
EVP_rc5_32_12_16_cfb \ |
| 186 |
< |
EVP_des_ede3_cfb \ |
| 187 |
< |
EVP_des_cfb)]) |
| 148 |
> |
AC_CHECK_LIB(ssl, SSL_connect) |
| 149 |
> |
AS_IF([test "$ac_cv_lib_ssl_SSL_connect" = "yes"], |
| 150 |
> |
[AC_CHECK_LIB(crypto, RSA_free)]) |
| 151 |
|
],[AC_MSG_RESULT(no - OpenSSL support disabled) |
| 152 |
|
cf_enable_openssl="no"])]) |
| 153 |
|
|
| 154 |
< |
AM_CONDITIONAL(ENABLE_SSL, [test "$cf_enable_openssl" = yes]) |
| 154 |
> |
AM_CONDITIONAL(ENABLE_SSL, [test "$ac_cv_lib_crypto_RSA_free" = yes]) |
| 155 |
|
|
| 156 |
|
|
| 157 |
|
AC_ARG_ENABLE(assert, AS_HELP_STRING([--enable-assert], |
| 194 |
|
AX_ARG_ENABLE_IOLOOP_MECHANISM |
| 195 |
|
AX_ARG_WITH_NICKLEN |
| 196 |
|
AX_ARG_WITH_TOPICLEN |
| 234 |
– |
AX_ARG_WITH_SYSLOG |
| 197 |
|
AX_ARG_ENABLE_EFNET |
| 198 |
|
AX_ARG_ENABLE_HALFOPS |
| 199 |
|
AX_ARG_ENABLE_DEBUGGING |
| 200 |
|
AX_ARG_ENABLE_WARNINGS |
| 239 |
– |
AX_ARG_ENABLE_SYSLOG |
| 201 |
|
|
| 202 |
|
AC_DEFINE_DIR([PREFIX],[prefix],[Set to prefix.]) |
| 203 |
|
AC_DEFINE_DIR([SYSCONFDIR],[sysconfdir],[Set to sysconfdir.]) |
| 207 |
|
|
| 208 |
|
AC_CONFIG_FILES( \ |
| 209 |
|
Makefile \ |
| 249 |
– |
etc/Makefile \ |
| 250 |
– |
servlink/Makefile \ |
| 210 |
|
contrib/Makefile \ |
| 211 |
|
contrib/help/Makefile \ |
| 212 |
|
src/Makefile \ |