aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-04-15 18:58:58 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-04-15 18:58:58 +0300
commitc556a538a951dd95d8c134420c486708de0b943b (patch)
tree668066ed44890f35e92aa18a0b501371c79072b3
parentddf368bb6d1093657ab29cb5af894bdc2b93788f (diff)
downloadlibmicrohttpd-c556a538a951dd95d8c134420c486708de0b943b.tar.gz
libmicrohttpd-c556a538a951dd95d8c134420c486708de0b943b.zip
configure: fixed '--enable-sanitizer'
Due to typo, using '--enable-sanitizer' resulted in lost of LDFLAGS
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a9318e91..879e95bb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
1Thu 15 Apr 2021 18:56:00 MSK
2 Fixed configure '--enable-sanitizer' paramenter.
3 Stopped pushing of patrial responses when limited by system maximum size
4 for sendmsg(). -EG
5
1Web 14 Apr 2021 22:20:00 MSK 6Web 14 Apr 2021 22:20:00 MSK
2 Fixed: use sendmsg() in POSIX-compatible way, do not try to send more 7 Fixed: use sendmsg() in POSIX-compatible way, do not try to send more
3 than IOV_MAX elements per single call. -EG 8 than IOV_MAX elements per single call. -EG
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