From e3e153b62a8154aa38106455605c91718a7654e8 Mon Sep 17 00:00:00 2001 From: Nathan Bryant Date: Mon, 23 Feb 2004 16:10:48 +0000 Subject: [PATCH] --disable-pie by default. --- citadel/ChangeLog | 4 ++++ citadel/configure.ac | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/citadel/ChangeLog b/citadel/ChangeLog index 172b1b45e..583b0dc52 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -1,4 +1,7 @@ $Log$ + Revision 614.48 2004/02/23 16:10:47 nbryant + --disable-pie by default. + Revision 614.47 2004/02/22 04:55:15 ajc * CSR code more or less in its final form for now. @@ -5392,3 +5395,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant Fri Jul 10 1998 Art Cancro * Initial CVS import + diff --git a/citadel/configure.ac b/citadel/configure.ac index 48bbb5a6a..ef5d4357a 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -17,7 +17,7 @@ AC_ARG_ENABLE(chkpwd, [ --disable-chkpwd don't build 'chkpwd']) AC_ARG_ENABLE(threaded-client, [ --disable-threaded-client disable multithreaded client]) -AC_ARG_ENABLE(pie, [ --disable-pie don't build position-independent executables]) +AC_ARG_ENABLE(pie, [ --enable-pie don't build position-independent executables]) AC_ARG_WITH(pam, [ --with-pam use PAM if present (see PAM.txt before you try this)]) AC_ARG_WITH(kthread, [ --with-kthread use kernel threads (on FreeBSD) (not recommended yet)]) @@ -115,7 +115,7 @@ if test "$GCC" = yes; then esac fi -if test "x$enable_pie" != xno; then +if test "x$enable_pie" = xyes; then save_CFLAGS="$CFLAGS" save_LDFLAGS="$LDFLAGS" CFLAGS="$CFLAGS -fpie" -- 2.39.2