[scons] add some generic defintions early

Also add _GNU_SOURCE.
This commit is contained in:
Stefan Bühler 2017-10-24 16:30:33 +02:00 committed by Glenn Strauss
parent f78749d3c6
commit 706910ac6a
1 changed files with 7 additions and 1 deletions

View File

@ -163,6 +163,13 @@ if env['CC'] == 'gcc':
## we need x-open 6 and bsd 4.3 features
env.Append(CCFLAGS = Split('-Wall -O2 -g -W -pedantic -Wunused -Wshadow -std=gnu99'))
env.Append(CPPFLAGS = [
'-D_FILE_OFFSET_BITS=64',
'-D_LARGEFILE_SOURCE',
'-D_LARGE_FILES',
'-D_GNU_SOURCE',
])
if env['with_all']:
for feature in vars.keys():
# only enable 'with_*' flags
@ -428,7 +435,6 @@ env.Append(CPPFLAGS = [
'-DPACKAGE_NAME=\\"' + package + '\\"',
'-DPACKAGE_VERSION=\\"' + version + '\\"',
'-DLIBRARY_DIR="\\"${libdir}\\""',
'-D_FILE_OFFSET_BITS=64', '-D_LARGEFILE_SOURCE', '-D_LARGE_FILES'
] )
SConscript('src/SConscript', exports = 'env', variant_dir = 'sconsbuild/build', duplicate = 0)