aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xautogen.sh5
-rw-r--r--m4/check-hardening-options.m44
2 files changed, 8 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 0b0fc04..72174ea 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -4,3 +4,8 @@ set -e
4./update.sh 4./update.sh
5mkdir -p m4 5mkdir -p m4
6autoreconf -i -f 6autoreconf -i -f
7
8# Patch libtool 2.4.2 to pass -fstack-protector as a linker argument
9sed 's/-fuse-linker-plugin)/-fuse-linker-plugin|-fstack-protector*)/' \
10 ltmain.sh > ltmain.sh.fixed
11mv -f ltmain.sh.fixed ltmain.sh
diff --git a/m4/check-hardening-options.m4 b/m4/check-hardening-options.m4
index 544d283..3ffdb1a 100644
--- a/m4/check-hardening-options.m4
+++ b/m4/check-hardening-options.m4
@@ -94,7 +94,9 @@ AC_DEFUN([CHECK_C_HARDENING_OPTIONS], [
94 AC_MSG_WARN([compiler does not appear to support stack protection]) 94 AC_MSG_WARN([compiler does not appear to support stack protection])
95 ) 95 )
96 ) 96 )
97 AC_SEARCH_LIBS([__stack_chk_guard],[ssp]) 97 AS_IF([test "x$HOST_OS" = "xwin"], [
98 AC_SEARCH_LIBS([__stack_chk_guard],[ssp])
99 ])
98 ]) 100 ])
99 ]) 101 ])
100 102