summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorRajan Arora <rarora@redhat.com>2009-03-24 22:30:37 -0400
committerRajan Arora <rarora@redhat.com>2009-03-24 22:30:37 -0400
commite1e3ba36653db4b1dcd82e7cb3579776a6834de7 (patch)
treea9fa5ea05dc18d8bfdf7216e1ca4453594579147 /configure
parentc87193cfb18258abbad947d009e6ca0bd2d5e0cf (diff)
downloadsystemtap-steved-e1e3ba36653db4b1dcd82e7cb3579776a6834de7.tar.gz
systemtap-steved-e1e3ba36653db4b1dcd82e7cb3579776a6834de7.tar.xz
systemtap-steved-e1e3ba36653db4b1dcd82e7cb3579776a6834de7.zip
PR 9922 fix, make --disable-pie the configure default
*configure.ac: Change the default to compiling without fPIE. *systemtap.spec: Add --enable-pie as the default option (set pie_supported to 1). *configure: Regenerated with autoconf 2.61.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 57afc1bb..4f33313d 100755
--- a/configure
+++ b/configure
@@ -5990,12 +5990,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
+# Compiling without fPIE by default (see PR 9922)
# Check whether --enable-pie was given.
if test "${enable_pie+set}" = set; then
enableval=$enable_pie;
fi
-if test "x$enable_pie" != xno; then
+if test "x$enable_pie" == xyes; then
save_CFLAGS="$CFLAGS"
save_CXXFLAGS="$CXXFLAGS"