diff options
author | Lennart Poettering <lennart@poettering.net> | 2007-04-12 21:27:29 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2007-04-12 21:27:29 +0000 |
commit | 94ec2faf542bee1b9434bdbd2f01e20894d8bc3f (patch) | |
tree | ba24462a3498ab0dddafc85b603b8ae632dfab9f | |
parent | 511bbee5e4da8e71b5da8521a162941398ebfdba (diff) |
always build with -fPIC to allow address space randomization
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1410 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f127648..58b5951 100644 --- a/configure.ac +++ b/configure.ac @@ -219,7 +219,7 @@ test_gcc_flag() { # If using GCC specify some additional parameters if test "x$GCC" = "xyes" ; then - DESIRED_FLAGS="-Wall -W -Wextra -pedantic -pipe -Wformat -Wold-style-definition -Wdeclaration-after-statement -Wfloat-equal -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls -Wmissing-noreturn -Wshadow -Wendif-labels -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Winline" + DESIRED_FLAGS="-Wall -W -Wextra -pedantic -pipe -Wformat -Wold-style-definition -Wdeclaration-after-statement -Wfloat-equal -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls -Wmissing-noreturn -Wshadow -Wendif-labels -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Winline -fPIC" if test "x$HAVE_NETLINK" = "xyes" ; then # Test whether rtnetlink.h can be included when compiled with -std=c99 |