diff options
author | Stef Walter <stef@memberwebs.com> | 2006-08-05 20:48:58 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2006-08-05 20:48:58 +0000 |
commit | 2d975d635f1903a5a5b84ff808b0311d431f9e25 (patch) | |
tree | 04dcb3842e05dadd22764e56fcadc17f0072c632 /configure.in | |
parent | 2b77de36782f4906b20b45d695524bbe48c731fc (diff) |
Added asynchronous DNS resolver. See #47
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 3c3907d..ab0f81e 100644 --- a/configure.in +++ b/configure.in @@ -26,6 +26,12 @@ AC_PROG_CC AC_PROG_INSTALL AC_PROG_RANLIB +# TODO: Figure out why we need this wierd hack +ACX_PTHREAD( , [echo "ERROR: Pthread support not found."; exit 1] ) + +LIBS="$PTHREAD_LIBS $LIBS" +CFLAGS="$CFLAGS $PTHREAD_CFLAGS -D_POSIX_PTHREAD_SEMANTICS" + dnl Checks for libraries AC_CHECK_LIB(rrd, rrd_update, , [echo "ERROR: librrd not found."; exit 1]) |