diff options
author | Olly Betts <olly@survex.com> | 2009-12-15 14:33:47 +0000 |
---|---|---|
committer | Olly Betts <olly@survex.com> | 2009-12-15 14:33:47 +0000 |
commit | d1eed0bc8ef9462e66418751284efa02e7c45235 (patch) | |
tree | 556e453aa3617fbad50c1402849cb92fa8973bdb /configure.in | |
parent | 3a0e056d638625780612d6b81dadd84362e876c6 (diff) | |
download | swig-d1eed0bc8ef9462e66418751284efa02e7c45235.tar.gz |
Don't use -Wno-long-double on OS X - it seems to no longer be supported by
Apple's compilers, and was never supported by FSF GCC on any platform.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11786 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 96c3d18b0..f457d73e3 100644 --- a/configure.in +++ b/configure.in @@ -316,11 +316,7 @@ esac # Optional CFLAGS used to silence compiler warnings on some platforms. AC_SUBST(PLATFLAGS) -case $host in - *-*-darwin*) PLATFLAGS="-Wno-long-double";; - *) PLATFLAGS="";; -esac - +PLATFLAGS= # Check for specific libraries. Used for SWIG examples AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV |