X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=configure.ac;h=9dc6e4f2b1539a034ca5bf2192da1fb2b0719a8a;hb=55831bf424312a6908ca07a904f288fba0919a9a;hp=109c5d990a20b3f95ae8e4ce6d0310240f70993e;hpb=3e468d2c23318616f86dc7c180102ebb2c34bd6c;p=NeonServV5.git diff --git a/configure.ac b/configure.ac index 109c5d9..9dc6e4f 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.67]) -AC_INIT([NeonServ], [5.2], [bugs@pk910.de], [neonserv], [http://neonserv.krypton-bouncer.de]) +AC_INIT([NeonServ], [5.3], [bugs@pk910.de], [neonserv], [http://neonserv.krypton-bouncer.de]) AC_PREFIX_DEFAULT([~/neonserv]) AM_INIT_AUTOMAKE([foreign subdir-objects]) AC_CONFIG_HEADERS([config.h]) @@ -45,6 +45,18 @@ if test x"$do_have_ssl" = xyes; then AC_DEFINE([HAVE_SSL], 1, [Define if you are using SSL]) fi +AC_CHECK_LIB(pthread, pthread_create, [ + AC_CHECK_HEADERS(pthread.h, [ + LIBS="$LIBS -lpthread" + AC_DEFINE([HAVE_THREADS], 1, [Define if you have Threads]) + ]) +]) + +AC_ARG_ENABLE([debug], + [AS_HELP_STRING([--enable-debug], [debug mode (compile using -O0 -Wall -Wshadow -Werror)])], + [CFLAGS='-g -O0 -Wall -Wshadow -Werror'], + [CFLAGS='-g -O2']) + # Checks for header files. AC_CHECK_HEADERS([arpa/inet.h netdb.h netinet/in.h stdlib.h string.h sys/socket.h unistd.h windows.h winsock2.h])