aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lodder <[email protected]>2018-01-21 14:54:26 +0100
committerMax K <[email protected]>2018-01-21 14:54:26 +0100
commit10a5e93a055ab5f239c5447a5fe05283af09e293 (patch)
tree70dc5ad4a121a4c748f47f19f6378383ec45690e
parentChange fPIE to fPIC (#1420) (diff)
downloaddiscoin-10a5e93a055ab5f239c5447a5fe05283af09e293.tar.xz
discoin-10a5e93a055ab5f239c5447a5fe05283af09e293.zip
Revert "Change fPIE to fPIC (#1420)" (#1447)
This reverts commit 7c52b213c870ac210b225110759308cd8c6b8e81.
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 749edcb22..fb3c4da51 100644
--- a/configure.ac
+++ b/configure.ac
@@ -417,8 +417,8 @@ if test x$use_hardening != xno; then
if test x$TARGET_OS != xwindows; then
# All windows code is PIC, forcing it on just adds useless compile warnings
- AX_CHECK_COMPILE_FLAG([-fPIC],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fPIC"])
- AX_CHECK_LINK_FLAG([[-fno-pie]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -fno-pie"])
+ AX_CHECK_COMPILE_FLAG([-fPIE],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fPIE"])
+ AX_CHECK_LINK_FLAG([[-pie]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -pie"])
fi
case $host in