diff options
author | Jörg Mayer <jmayer@loplof.de> | 2010-05-15 20:41:53 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2010-05-15 20:41:53 +0000 |
commit | e4eecc5215b8c6521931a15951b71a522ba826bd (patch) | |
tree | afac8a8cd2b6d3f7597e5e08563dd3e5ea2e895d /configure.in | |
parent | 682b962e72325451467f1a296d97169cc649f6b3 (diff) | |
download | wireshark-e4eecc5215b8c6521931a15951b71a522ba826bd.tar.gz wireshark-e4eecc5215b8c6521931a15951b71a522ba826bd.tar.bz2 wireshark-e4eecc5215b8c6521931a15951b71a522ba826bd.zip |
- Move cmake options into their own file, making it easier to
use a locally modified version of the stuff
- Some (still preliminary) CPack changes
- Add -fexcess-precision=fast (configure.in and CmakeLists.txt)
to the compileflags (new gcc-4.5 feature to maintain backward
compatibility with gcc-4.4 and IMO we don't need the slower but
more exact implementation gcc 4.5 offers.
svn path=/trunk/; revision=32823
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 7198cc123f..5ddfa58e64 100644 --- a/configure.in +++ b/configure.in @@ -302,6 +302,8 @@ AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wno-pointer-sign) AC_WIRESHARK_GCC_CFLAGS_CHECK(-Warray-bounds) AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wcast-align) AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wformat-security) +# Use the faster pre gcc 4.5 floating point precision +AC_WIRESHARK_GCC_CFLAGS_CHECK(-fexcess-precision=fast) AC_WIRESHARK_GCC_LDFLAGS_CHECK([-Wl,--as-needed]) # AC_WIRESHARK_GCC_LDFLAGS_CHECK([-flto]) |