--disable-pie by default.
authorNathan Bryant <loanshark@uncensored.citadel.org>
Mon, 23 Feb 2004 16:10:48 +0000 (16:10 +0000)
committerNathan Bryant <loanshark@uncensored.citadel.org>
Mon, 23 Feb 2004 16:10:48 +0000 (16:10 +0000)
citadel/ChangeLog
citadel/configure.ac

index 172b1b45e7524972fddc350a7d9dd282ea9648df..583b0dc52ff17b7237f25a92d6f3bc6497d37066 100644 (file)
@@ -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 <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
+
index 48bbb5a6a867ecb9850dd24495a1e87b4bbb585a..ef5d4357a0acd98a5632072702e7c684534c6fe9 100644 (file)
@@ -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"