From ef255f022737bf89dbf51bdd1a4fbe312f5f35c3 Mon Sep 17 00:00:00 2001 From: pk910 Date: Sat, 14 Jan 2012 10:12:35 +0100 Subject: [PATCH] added --enable-threads flag to enable experimental multi thread support --- configure.ac | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) 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'], -- 2.20.1