Merge branch 'master' into IOMultiplexer
[NeonServV5.git] / configure.ac
1 # Process this file with autoconf to produce a configure script.
2
3 AC_PREREQ([2.67])
4 AC_INIT([NeonServ], [5.5], [bugs@pk910.de], [neonserv], [http://neonserv.krypton-bouncer.de])
5 AC_PREFIX_DEFAULT([~/neonserv])
6 AC_CANONICAL_TARGET
7 AM_INIT_AUTOMAKE([foreign subdir-objects])
8 AM_SILENT_RULES([yes])
9 AC_CONFIG_HEADERS([config.h])
10
11 LT_INIT([disable-static])
12
13 # Checks for programs.
14 AC_PROG_CC
15 AC_PROG_AWK
16
17 # Checks for libraries.
18 # Get MySQL library and include locations
19 AC_ARG_WITH([mysql],
20   [AS_HELP_STRING([--with-mysql=DIR],
21     [location of the MySQL headers, defaults to /usr/include/mysql])],
22   [MYSQL_CFLAGS="-I$withval"],
23   [MYSQL_CFLAGS='-I/usr/include/mysql'])
24 AC_SUBST([MYSQL_CFLAGS])
25
26 AC_ARG_WITH([mysql-lib],
27   [AS_HELP_STRING([--with-mysql-lib=DIR], [location of the MySQL libraries])],
28   [MYSQL_LIBS="-L$withval -lmysqlclient"],
29   [MYSQL_LIBS='-lmysqlclient'])
30 AC_SUBST([MYSQL_LIBS])
31
32 AC_CHECK_LIB([ws2_32], [_head_libws2_32_a], [LIBS="$LIBS -lws2_32"])
33 AC_CHECK_LIB([dl], [dlopen], [LIBS="$LIBS -ldl"])
34 AC_CHECK_LIB([pthread], [pthread_create], [LIBS="$LIBS -lpthread"])
35 AC_CHECK_LIB([ssl], [SSL_read], [LIBS="$LIBS -lssl"])
36 AC_CHECK_LIB([crypto], [X509_new], [LIBS="$LIBS -lcrypto"])
37
38 do_have_ssl="no";
39 AC_CHECK_LIB(ssl, SSL_read, [
40   AC_CHECK_LIB(crypto, X509_new, [
41     AC_CHECK_HEADERS(openssl/ssl.h openssl/err.h openssl/rand.h, [
42       AC_DEFINE([HAVE_SSL], 1, [Define if you are using SSL])
43     ])
44   ])
45 ])
46
47 do_have_threads="no";
48 AC_CHECK_LIB(pthread, pthread_create, [
49   AC_CHECK_HEADERS(pthread.h, [
50     do_have_threads="yes"
51   ])
52 ])
53
54 AC_ARG_ENABLE([threads],
55   [AS_HELP_STRING([--enable-threads], [use threads if possible])],
56   [
57   if test x"$do_have_threads" = xyes; then
58     LIBS="$LIBS -lpthread"
59     AC_DEFINE([HAVE_THREADS], 1, [Define if you have Threads])
60   fi
61   ],
62   [])
63
64 AC_ARG_ENABLE([memory-debug],
65   [AS_HELP_STRING([--enable-memory-debug], [run memory debugger])],
66   [
67     AC_DEFINE([ENABLE_MEMORY_DEBUG], 1, [Define if you enable memoryDebug.c])
68   ],
69   [])
70
71 AC_ARG_ENABLE([debug],
72   [AS_HELP_STRING([--enable-debug], [debug mode (compile using -O0 -Wall -Wshadow -Werror)])],
73   [CFLAGS='-g -O0 -Wall -Wshadow -Werror'],
74   [CFLAGS='-g -O2'])
75
76 CFLAGS="$CFLAGS -D_GNU_SOURCE"
77
78 # Checks for header files.
79 AC_CHECK_HEADERS([arpa/inet.h netdb.h netinet/in.h stdlib.h string.h sys/socket.h unistd.h windows.h winsock2.h pthread.h sys/epoll.h sys/kevent.h openssl/ssl.h openssl/err.h openssl/rand.h])
80
81 # Checks for typedefs, structures, and compiler characteristics.
82
83 # Checks for library functions.
84 AC_FUNC_MALLOC
85 AC_CHECK_FUNCS([gethostbyname memset select socket strchr strdup strstr])
86
87 AC_CONFIG_FILES(Makefile)
88 AC_OUTPUT