aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-04-15 18:58:58 +0300
committerChristian Grothoff <christian@grothoff.org>2021-04-16 10:25:37 +0200
commitfadba1133cc4e67ce8dd9d9709edd76f9285c704 (patch)
treea13f8e74e7e8314d3da7a41d50b6edb5d1fd4bfa /configure.ac
parentddf368bb6d1093657ab29cb5af894bdc2b93788f (diff)
downloadlibmicrohttpd-fadba1133cc4e67ce8dd9d9709edd76f9285c704.tar.gz
libmicrohttpd-fadba1133cc4e67ce8dd9d9709edd76f9285c704.zip
fix #6768: do not use TCP-specific syscalls on UNIX domain sockets
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e6cc7214..e9c1e03b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -117,7 +117,7 @@ AC_ARG_ENABLE([linker-hardening],
117AC_ARG_ENABLE([sanitizer], 117AC_ARG_ENABLE([sanitizer],
118 [AS_HELP_STRING([--enable-sanitizer], [enable Address Sanitizer and Undefined Behavior Sanitizer])], 118 [AS_HELP_STRING([--enable-sanitizer], [enable Address Sanitizer and Undefined Behavior Sanitizer])],
119[AS_IF([test x$enableval = xyes],[ 119[AS_IF([test x$enableval = xyes],[
120 LDFLAGS="$CFLAGS -fsanitize=address,undefined -fno-omit-frame-pointer" 120 CFLAGS="$CFLAGS -fsanitize=address,undefined -fno-omit-frame-pointer"
121 ])]) 121 ])])
122 122
123 123