diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-03-06 21:14:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:52:20 -0500 |
commit | ce3032cab82fd66ddfd4d55d7cc242aff80be161 (patch) | |
tree | 7a13b9a20a34ef79c17abc38cc9752149d94a5fc /source4/build/smb_build/cflags.pm | |
parent | 148403594be03ab0ca8e396ef22cd01ef19921d5 (diff) | |
download | samba-ce3032cab82fd66ddfd4d55d7cc242aff80be161.tar.gz samba-ce3032cab82fd66ddfd4d55d7cc242aff80be161.tar.bz2 samba-ce3032cab82fd66ddfd4d55d7cc242aff80be161.zip |
r13898: Add a subsystem-specific DEFAULT_VISIBILITY property that can be used
to not export symbols when building shared libraries. Symbols that have to be
available to users of the library can be explicitly exported by
prepending them with _PUBLIC_ in the C source.
(This used to be commit ea9988dfda6df09f1ee8f9aea1dc5b96fff52ee6)
Diffstat (limited to 'source4/build/smb_build/cflags.pm')
-rwxr-xr-x | source4/build/smb_build/cflags.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/build/smb_build/cflags.pm b/source4/build/smb_build/cflags.pm index a19c0efa7b..2cf6453841 100755 --- a/source4/build/smb_build/cflags.pm +++ b/source4/build/smb_build/cflags.pm @@ -15,6 +15,7 @@ sub create_cflags($$) foreach my $key (values %{$CTX}) { next unless defined ($key->{OBJ_LIST}); next unless defined ($key->{EXTRA_CFLAGS}); + next if ($key->{EXTRA_CFLAGS} eq ""); foreach (@{$key->{OBJ_LIST}}) { print CFLAGS_TXT "$_: $key->{EXTRA_CFLAGS}\n"; |