From 2bed2c14afbf6c2d3222b96ef2f8f13421ef8ce5 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Sun, 10 Sep 2017 22:12:24 -0400 Subject: [PATCH] [mod_webdav] check HAVE_UUID for -luuid check HAVE_UUID for -luuid in order to detect more pedantic cases, e.g. when -luuid is not installed under Cygwin, even if devel headers are present () --- src/mod_webdav.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mod_webdav.c b/src/mod_webdav.c index d61c5b7b..58e3df38 100644 --- a/src/mod_webdav.c +++ b/src/mod_webdav.c @@ -31,7 +31,8 @@ #include #endif -#if defined(HAVE_LIBXML_H) && defined(HAVE_SQLITE3_H) && defined(HAVE_UUID_UUID_H) +#if defined(HAVE_LIBXML_H) && defined(HAVE_SQLITE3_H) \ + && defined(HAVE_UUID) && defined(HAVE_UUID_UUID_H) #define USE_LOCKS #include #endif