summaryrefslogtreecommitdiff
path: root/gdk
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2004-08-10 18:57:41 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-08-10 18:57:41 +0000
commitefab9fbe8e9717a50168906434cbca296d7467ae (patch)
treecdff1707857c2d788e9266d30cbab89dc7ee5b4c /gdk
parent9c0208b2536f45e2942df66c3e8c973d592caa32 (diff)
downloadgdk-pixbuf-efab9fbe8e9717a50168906434cbca296d7467ae.tar.gz
Protect gtkalias.h by G_HAVE_GNUC_VISIBILITY.
2004-08-10 Matthias Clasen <mclasen@redhat.com> * gdk/makegdkalias.pl: * gtk/makegtkalias.pl: Protect gtkalias.h by G_HAVE_GNUC_VISIBILITY.
Diffstat (limited to 'gdk')
-rwxr-xr-xgdk/makegdkalias.pl41
1 files changed, 19 insertions, 22 deletions
diff --git a/gdk/makegdkalias.pl b/gdk/makegdkalias.pl
index 3f04a52a1..6d5626882 100755
--- a/gdk/makegdkalias.pl
+++ b/gdk/makegdkalias.pl
@@ -1,9 +1,9 @@
#!/usr/bin/perl -w
-my $preamble = <<EOF;
+print <<EOF;
/* Generated by makegdkalias.pl */
-#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
+#ifdef G_HAVE_GNUC_VISIBILITY
#ifdef GDK_ENABLE_BROKEN
#define WAS_BROKEN
@@ -31,7 +31,22 @@ my $preamble = <<EOF;
EOF
-my $postamble = <<EOF;
+while (<>) {
+
+ # ignore empty lines
+ next if /^\s*$/;
+
+ my $str = $_;
+ chomp($str);
+ my $alias = $str."__internal_alias";
+
+ print "extern __typeof ($str) $alias __attribute((visibility(\"hidden\"))); \n";
+ print "extern __typeof ($str) $str __attribute((alias(\"$alias\"), visibility(\"default\"))); \n";
+ print "#define $str $alias \n";
+ print "\n";
+}
+
+print <<EOF;
#ifndef WAS_BROKEN
#undef GDK_ENABLE_BROKEN
@@ -54,24 +69,6 @@ my $postamble = <<EOF;
#undef WAS_NO_G_DEPR
#endif
-#endif /* __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96) */
+#endif /* G_HAVE_GNUC_VISIBILITY */
EOF
-print $preamble;
-while (<>) {
-
- # ignore empty lines
- next if /^\s*$/;
-
- my $str = $_;
- chomp($str);
- my $alias = $str."__internal_alias";
-
- print "extern __typeof ($str) $alias __attribute((visibility(\"hidden\"))); \n";
- print "extern __typeof ($str) $str __attribute((alias(\"$alias\"), visibility(\"default\"))); \n";
- print "#define $str $alias \n";
- print "\n";
-}
-
-print $postamble;
-