2004-08-11 04:10:18 +00:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
|
|
|
|
print <<EOF;
|
|
|
|
/* Generated by makegdkpixbufalias.pl */
|
|
|
|
|
2004-09-15 02:03:58 +00:00
|
|
|
#ifndef DISABLE_VISIBILITY
|
|
|
|
|
2004-08-11 04:10:18 +00:00
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#ifdef G_HAVE_GNUC_VISIBILITY
|
|
|
|
|
|
|
|
#ifdef GDK_PIXBUF_DISABLE_DEPRECATED
|
|
|
|
#define WAS_NO_DEPR
|
|
|
|
#endif
|
|
|
|
#undef GDK_PIXBUF_DISABLE_DEPRECATED
|
|
|
|
|
|
|
|
#ifdef G_DISABLE_DEPRECATED
|
|
|
|
#define WAS_NO_G_DEPR
|
|
|
|
#endif
|
|
|
|
#undef G_DISABLE_DEPRECATED
|
|
|
|
|
|
|
|
#include "gdk-pixbuf.h"
|
|
|
|
#include "gdk-pixdata.h"
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
while (<>) {
|
|
|
|
|
|
|
|
# ignore empty lines
|
|
|
|
next if /^\s*$/;
|
|
|
|
|
2004-08-17 18:24:06 +00:00
|
|
|
# skip comments
|
|
|
|
if ($_ =~ /^\s*\/\*/)
|
|
|
|
{
|
|
|
|
$in_comment = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($in_comment)
|
|
|
|
{
|
|
|
|
if ($_ =~ /\*\/\s$/)
|
|
|
|
{
|
|
|
|
$in_comment = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
# handle ifdefs
|
|
|
|
if ($_ =~ /^\#endif/)
|
|
|
|
{
|
|
|
|
if (!$in_skipped_section)
|
|
|
|
{
|
|
|
|
print $_;
|
|
|
|
}
|
|
|
|
|
|
|
|
$in_skipped_section = 0;
|
|
|
|
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($_ =~ /^\#ifdef\s+INCLUDE_VARIABLES/)
|
|
|
|
{
|
|
|
|
$in_skipped_section = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($in_skipped_section)
|
|
|
|
{
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($_ =~ /^\#ifdef\s+G/)
|
|
|
|
{
|
|
|
|
print $_;
|
|
|
|
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
2004-11-23 19:54:41 +00:00
|
|
|
chop;
|
2004-08-11 04:10:18 +00:00
|
|
|
my $str = $_;
|
2004-11-23 19:54:41 +00:00
|
|
|
my @words;
|
|
|
|
my $attributes = "";
|
|
|
|
|
|
|
|
@words = split(/ /, $str);
|
|
|
|
$str = shift(@words);
|
2004-08-11 04:10:18 +00:00
|
|
|
chomp($str);
|
2004-09-09 19:44:24 +00:00
|
|
|
my $alias = "IA__".$str;
|
2004-08-11 04:10:18 +00:00
|
|
|
|
2004-11-23 19:54:41 +00:00
|
|
|
# Drop any Win32 specific .def file syntax, but keep attributes
|
|
|
|
foreach $word (@words) {
|
|
|
|
$attributes = "$attributes $word" unless $word eq "PRIVATE";
|
|
|
|
}
|
|
|
|
|
2004-08-17 18:24:06 +00:00
|
|
|
print <<EOF
|
2004-11-23 19:54:41 +00:00
|
|
|
extern __typeof ($str) $alias __attribute((visibility("hidden")))$attribute;
|
2004-08-17 18:24:06 +00:00
|
|
|
extern __typeof ($str) $str __attribute((alias("$alias"), visibility("default")));
|
|
|
|
\#define $str $alias
|
|
|
|
|
|
|
|
EOF
|
2004-08-11 04:10:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
print <<EOF;
|
|
|
|
|
|
|
|
#ifdef WAS_NO_DEPR
|
|
|
|
#define GDK_PIXBUF_DISABLE_DEPRECATED
|
|
|
|
#undef WAS_NO_DEPR
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WAS_NO_G_DEPR
|
|
|
|
#define G_DISABLE_DEPRECATED
|
|
|
|
#undef WAS_NO_G_DEPR
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* G_HAVE_GNUC_VISIBILITY */
|
2004-09-15 02:03:58 +00:00
|
|
|
|
|
|
|
#endif /* DISABLE_VISIBILITY */
|
2004-08-11 04:10:18 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
|