summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarix <darix@152afb58-edef-0310-8abb-c4023f1b3aa9>2006-09-27 23:55:04 +0000
committerdarix <darix@152afb58-edef-0310-8abb-c4023f1b3aa9>2006-09-27 23:55:04 +0000
commitf4cc04c65ca13fa0be7b8a8327356b75cd7ee24d (patch)
tree3c410f721d1f325619873569a1ad5176080e2a00
parentd80d1d1f13db58fa8f0aac2867da4be00189e6c7 (diff)
downloadlighttpd-f4cc04c65ca13fa0be7b8a8327356b75cd7ee24d.tar.gz
- configure.in:
check for uuid/uuid.h - mod_webdav.c: change the conditional to use HAVE_UUID_UUID_h git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.11-ssl-fixes@1343 152afb58-edef-0310-8abb-c4023f1b3aa9
-rw-r--r--configure.in2
-rw-r--r--src/mod_webdav.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 74bca033..87cf8fc2 100644
--- a/configure.in
+++ b/configure.in
@@ -56,7 +56,7 @@ AC_CHECK_HEADERS([arpa/inet.h fcntl.h netinet/in.h stdlib.h string.h \
sys/socket.h sys/time.h unistd.h sys/sendfile.h sys/uio.h \
getopt.h sys/epoll.h sys/select.h poll.h sys/poll.h sys/devpoll.h sys/filio.h \
sys/mman.h sys/event.h sys/port.h pwd.h sys/syslimits.h \
-sys/resource.h sys/un.h syslog.h sys/prctl.h])
+sys/resource.h sys/un.h syslog.h sys/prctl.h uuid/uuid.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
diff --git a/src/mod_webdav.c b/src/mod_webdav.c
index 3fd021f2..0ad12b1e 100644
--- a/src/mod_webdav.c
+++ b/src/mod_webdav.c
@@ -23,7 +23,7 @@
#include <sqlite3.h>
#endif
-#if defined(HAVE_LIBXML_H) && defined(HAVE_SQLITE3_H) && defined(HAVE_UUID_H)
+#if defined(HAVE_LIBXML_H) && defined(HAVE_SQLITE3_H) && defined(HAVE_UUID_UUID_H)
#define USE_LOCKS
#include <uuid/uuid.h>
#endif