diff options
| author | Vincent Richard <[email protected]> | 2009-04-09 20:31:16 +0000 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2009-04-09 20:31:16 +0000 |
| commit | 4de47af6fa2e954ea984637a9630a44b41cde7d2 (patch) | |
| tree | c78a3899918db6270db92ea5eed6baa002d56188 | |
| parent | Fixed duplicate switch case on AIX (thanks to Robin Rawson-Tetley). (diff) | |
| download | vmime-4de47af6fa2e954ea984637a9630a44b41cde7d2.tar.gz vmime-4de47af6fa2e954ea984637a9630a44b41cde7d2.zip | |
Removed '-pipe' compiler flags, as it is not available on all platforms.
| -rw-r--r-- | SConstruct | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -590,7 +590,6 @@ env.Append(CPPPATH = [ '.' ]) env.Append(CPPDEFINES = ['_REENTRANT=1']) -env.Append(CXXFLAGS = ['-pipe']) env.Append(CXXFLAGS = ['-W']) env.Append(CXXFLAGS = ['-Wall']) env.Append(CXXFLAGS = ['-ansi']) @@ -1831,7 +1830,7 @@ EXTRA_CFLAGS="$EXTRA_CFLAGS $lt_prog_compiler_pic" """) - compilerFlags = [ '-pipe', '-ansi', '-pedantic', '-W', '-Wall', '-Wpointer-arith', '-Wold-style-cast', '-Wconversion' ] + compilerFlags = [ '-ansi', '-pedantic', '-W', '-Wall', '-Wpointer-arith', '-Wold-style-cast', '-Wconversion' ] for f in compilerFlags: configure_in.write('# ' + f + '\n') |
