From d9c439b88448055d62ab85d6dab2204894b9dd9e Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 7 Mar 2006 17:15:18 +0000 Subject: r13967: change the standard visibility to "default" public again for modules, libraries and subsystems metze (This used to be commit 2d546c32801b12ba82596ccdf1521cba7bfff9f7) --- source4/build/smb_build/input.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'source4/build/smb_build/input.pm') diff --git a/source4/build/smb_build/input.pm b/source4/build/smb_build/input.pm index 5d6320942c..8cad9aafa6 100644 --- a/source4/build/smb_build/input.pm +++ b/source4/build/smb_build/input.pm @@ -160,7 +160,11 @@ sub check($$$$$) } unless (defined($part->{STANDARD_VISIBILITY})) { - $part->{STANDARD_VISIBILITY} = "hidden"; + if ($part->{TYPE} eq "BINARY") { + $part->{STANDARD_VISIBILITY} = "hidden"; + } else { + $part->{STANDARD_VISIBILITY} = "default"; + } } unless (defined($part->{EXTRA_CFLAGS})) { -- cgit