X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=configure.ac;h=b118cae671fd144c8e7ed399d738769bee2b9d58;hb=ef255f022737bf89dbf51bdd1a4fbe312f5f35c3;hp=745ed802335334ebe35f791ea341bd957d07450f;hpb=f90d21daf31f8d69e24406678be696afa8cae962;p=NeonServV5.git diff --git a/configure.ac b/configure.ac index 745ed80..b118cae 100644 --- a/configure.ac +++ b/configure.ac @@ -45,13 +45,23 @@ if test x"$do_have_ssl" = xyes; then AC_DEFINE([HAVE_SSL], 1, [Define if you are using SSL]) fi +do_have_threads="no"; AC_CHECK_LIB(pthread, pthread_create, [ AC_CHECK_HEADERS(pthread.h, [ - LIBS="$LIBS -lpthread" - AC_DEFINE([HAVE_THREADS], 1, [Define if you have Threads]) + do_have_threads="yes" ]) ]) +AC_ARG_ENABLE([threads], + [AS_HELP_STRING([--enable-threads], [use threads if possible])], + [ + if test x"$do_have_threads" = xyes; then + LIBS="$LIBS -lpthread" + AC_DEFINE([HAVE_THREADS], 1, [Define if you have Threads]) + fi + ], + []) + AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug], [debug mode (compile using -O0 -Wall -Wshadow -Werror)])], [CFLAGS='-g -O0 -Wall -Wshadow -Werror'],