mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
wafsamba: move compiler / cflags related stuff from lib/replace to wafsamba
We should have this just in one central place. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
parent
ab4b988ba2
commit
7a3dc66852
@ -363,6 +363,27 @@ def configure(conf):
|
||||
conf.DEFINE('_GNU_SOURCE', 1, add_to_cflags=True)
|
||||
conf.DEFINE('_XOPEN_SOURCE_EXTENDED', 1, add_to_cflags=True)
|
||||
|
||||
# on Tru64 certain features are only available with _OSF_SOURCE set to 1
|
||||
# and _XOPEN_SOURCE set to 600
|
||||
if conf.env['SYSTEM_UNAME_SYSNAME'] == 'OSF1':
|
||||
conf.DEFINE('_OSF_SOURCE', 1, add_to_cflags=True)
|
||||
conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True)
|
||||
|
||||
# SCM_RIGHTS is only avail if _XOPEN_SOURCE iѕ defined on IRIX
|
||||
if conf.env['SYSTEM_UNAME_SYSNAME'] == 'IRIX':
|
||||
conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True)
|
||||
conf.DEFINE('_BSD_TYPES', 1, add_to_cflags=True)
|
||||
|
||||
# Try to find the right extra flags for C99 initialisers
|
||||
for f in ["", "-AC99", "-qlanglvl=extc99", "-qlanglvl=stdc99", "-c99"]:
|
||||
if conf.CHECK_CFLAGS([f], '''
|
||||
struct foo {int x;char y;};
|
||||
struct foo bar = { .y = 'X', .x = 1 };
|
||||
'''):
|
||||
if f != "":
|
||||
conf.ADD_CFLAGS(f)
|
||||
break
|
||||
|
||||
# get the base headers we'll use for the rest of the tests
|
||||
conf.CHECK_HEADERS('stdio.h sys/types.h sys/stat.h stdlib.h stddef.h memory.h string.h',
|
||||
add_headers=True)
|
||||
|
@ -32,27 +32,6 @@ def configure(conf):
|
||||
conf.DEFINE('HAVE_LIBREPLACE', 1)
|
||||
conf.DEFINE('LIBREPLACE_NETWORK_CHECKS', 1)
|
||||
|
||||
# on Tru64 certain features are only available with _OSF_SOURCE set to 1
|
||||
# and _XOPEN_SOURCE set to 600
|
||||
if conf.env['SYSTEM_UNAME_SYSNAME'] == 'OSF1':
|
||||
conf.DEFINE('_OSF_SOURCE', 1, add_to_cflags=True)
|
||||
conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True)
|
||||
|
||||
# SCM_RIGHTS is only avail if _XOPEN_SOURCE iѕ defined on IRIX
|
||||
if conf.env['SYSTEM_UNAME_SYSNAME'] == 'IRIX':
|
||||
conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True)
|
||||
conf.DEFINE('_BSD_TYPES', 1, add_to_cflags=True)
|
||||
|
||||
# Try to find the right extra flags for C99 initialisers
|
||||
for f in ["", "-AC99", "-qlanglvl=extc99", "-qlanglvl=stdc99", "-c99"]:
|
||||
if conf.CHECK_CFLAGS([f], '''
|
||||
struct foo {int x;char y;};
|
||||
struct foo bar = { .y = 'X', .x = 1 };
|
||||
'''):
|
||||
if f != "":
|
||||
conf.ADD_CFLAGS(f)
|
||||
break
|
||||
|
||||
if conf.CHECK_CFLAGS(['-fstack-protector']) and conf.CHECK_LDFLAGS(['-fstack-protector']):
|
||||
conf.ADD_CFLAGS('-fstack-protector')
|
||||
conf.ADD_LDFLAGS('-fstack-protector')
|
||||
|
Loading…
Reference in New Issue
Block a user