diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-26 18:58:19 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-26 18:58:19 +0000 |
commit | 9c28c7dfe2a839a73e43156e7699a75b232e657d (patch) | |
tree | c25b401835650ce7022108430beb0151d58b1b75 | |
parent | 9910c06bd2b95a8f841d7975b93a9c4b86771836 (diff) | |
download | tinyproxy-9c28c7dfe2a839a73e43156e7699a75b232e657d.tar.gz tinyproxy-9c28c7dfe2a839a73e43156e7699a75b232e657d.zip |
Removed the pthread related tests and added a test for the sys/mman.h
header (needed for shared memory.)
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/configure.ac b/configure.ac index 828893c..85c3fdc 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -dnl $Id: configure.ac,v 2.31 2002-05-23 18:29:34 rjkaes Exp $ +dnl $Id: configure.ac,v 2.32 2002-05-26 18:58:19 rjkaes Exp $ dnl Devlopers, please strive to achieve this order: dnl @@ -178,16 +178,6 @@ fi dnl dnl Checks for libraries dnl -AC_CHECK_LIB(pthread, pthread_create) -if test x"$ac_cv_lib_pthread_pthread_create" != x"yes"; then - AC_CHECK_LIB(pthreads, pthread_create) - if test x"$ac_cv_lib_pthreads_pthread_create" != x"yes"; then - AC_CHECK_LIB(c_r, pthread_create, - [CFLAGS="-pthread $CFLAGS"], - [AC_MSG_ERROR([You must have a POSIX compliant threading library installed])]) - fi -fi - AC_CHECK_LIB(socket, socket, , [AC_CHECK_LIB(socket, htonl)]) dnl Some systems (OpenServer 5) dislike -lsocket -lnsl, so we try to @@ -211,11 +201,11 @@ dnl dnl Checks for headers dnl AC_HEADER_STDC -AC_CHECK_HEADERS([sys/types.h sys/ioctl.h sys/resource.h sys/select.h \ - sys/socket.h sys/stat.h sys/time.h sys/uio.h \ +AC_CHECK_HEADERS([sys/types.h sys/ioctl.h sys/mman.h sys/resource.h \ + sys/select.h sys/socket.h sys/stat.h sys/time.h sys/uio.h \ sys/un.h sys/wait.h arpa/inet.h netinet/in.h alloca.h \ assert.h ctype.h errno.h fcntl.h grp.h io.h libintl.h \ - memory.h netdb.h pthread.h pwd.h regex.h signal.h \ + memory.h netdb.h pwd.h regex.h signal.h \ stdarg.h stddef.h stdint.h stdio.h stdlib.h string.h \ strings.h sysexits.h syslog.h time.h unistd.h wchar.h \ wctype.h]) @@ -257,7 +247,7 @@ AC_TYPE_SIGNAL AC_FUNC_STRERROR_R AC_FUNC_STRFTIME AC_CHECK_FUNCS([btowc bzero ftruncate gethostbyaddr gethostbyname gethostname \ - inet_ntoa memchr memset pthread_cancel re_comp regcomp \ + inet_ntoa memchr memset re_comp regcomp \ regexec select setrlimit socket strncasecmp strchr strdup \ strerror strstr strtol vsyslog vsnprintf]) |