svn commit: samba r13921 - in branches/SAMBA_4_0/source/build/smb_build: .

metze at samba.org metze at samba.org
Tue Mar 7 10:30:40 GMT 2006


Author: metze
Date: 2006-03-07 10:30:39 +0000 (Tue, 07 Mar 2006)
New Revision: 13921

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13921

Log:
rename DEFAULT_VISIBILITY -> STANDARD_VISIBILITY

the standard is "hidden" and not "default", I hope this
name makes a bit less confusing

metze
Modified:
   branches/SAMBA_4_0/source/build/smb_build/config_mk.pm
   branches/SAMBA_4_0/source/build/smb_build/input.pm
   branches/SAMBA_4_0/source/build/smb_build/output.pm


Changeset:
Modified: branches/SAMBA_4_0/source/build/smb_build/config_mk.pm
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/config_mk.pm	2006-03-07 10:20:47 UTC (rev 13920)
+++ branches/SAMBA_4_0/source/build/smb_build/config_mk.pm	2006-03-07 10:30:39 UTC (rev 13921)
@@ -35,7 +35,7 @@
 		"PUBLIC_HEADERS"	=> "list",
 
 		"EXTRA_CFLAGS"		=> "string",
-		"DEFAULT_VISIBILITY"	=> "string"
+		"STANDARD_VISIBILITY"	=> "string"
 		},
 	"MODULE" => {
 		"SUBSYSTEM"		=> "string",
@@ -94,7 +94,7 @@
 		"PRIVATE_PROTO_HEADER"	=> "string",
 
 		"EXTRA_CFLAGS"		=> "string",
-		"DEFAULT_VISIBILITY"	=> "string"
+		"STANDARD_VISIBILITY"	=> "string"
 		}
 };
 

Modified: branches/SAMBA_4_0/source/build/smb_build/input.pm
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/input.pm	2006-03-07 10:20:47 UTC (rev 13920)
+++ branches/SAMBA_4_0/source/build/smb_build/input.pm	2006-03-07 10:30:39 UTC (rev 13921)
@@ -159,8 +159,8 @@
 			$part->{NOPROTO} = "YES";
 		}
 
-		unless (defined($part->{DEFAULT_VISIBILITY})) {
-			$part->{DEFAULT_VISIBILITY} = "hidden";
+		unless (defined($part->{STANDARD_VISIBILITY})) {
+			$part->{STANDARD_VISIBILITY} = "hidden";
 		}
 
 		unless (defined($part->{EXTRA_CFLAGS})) {

Modified: branches/SAMBA_4_0/source/build/smb_build/output.pm
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/output.pm	2006-03-07 10:20:47 UTC (rev 13920)
+++ branches/SAMBA_4_0/source/build/smb_build/output.pm	2006-03-07 10:30:39 UTC (rev 13921)
@@ -111,9 +111,9 @@
 			$part->{OUTPUT_TYPE} = "OBJLIST";
 		}
 
-		if (($part->{DEFAULT_VISIBILITY} ne "hidden") and 
+		if (($part->{STANDARD_VISIBILITY} ne "hidden") and 
 			($config->{visibility_attribute} eq "yes")) {
-			$part->{EXTRA_CFLAGS} .= " -fvisibility=$part->{DEFAULT_VISIBILITY}";
+			$part->{EXTRA_CFLAGS} .= " -fvisibility=$part->{STANDARD_VISIBILITY}";
 		}
 
 		generate_binary($part) if $part->{OUTPUT_TYPE} eq "BINARY";



More information about the samba-cvs mailing list