mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 15:46:17 +01:00
3339995d87
2001-08-04 Alexander Larsson <alexl@redhat.com> * win32-fixup.pl: Hacky script to fix up your .msc.in files on windows. Dunno if this is a good solution yet. * build/win32/module.defs: Back down libiconv version to 1.3, since that is what tor distributes. * glib/glib.def: Update * gobject/makefile.msc.in: build gobject-query.exe and gmarshal.strings, add libiconv dependency to linklines. * gobject/marshal-genstrings.pl: New file. perl script to generate gmarshal.strings.
10 lines
162 B
Perl
10 lines
162 B
Perl
#!/usr/bin/perl
|
|
|
|
open (List, "gmarshal.list");
|
|
|
|
while (<List>) {
|
|
next unless /^[A-Z]/;
|
|
s/^/"g_cclosure_marshal_/; s/:/__/; s/,/_/g; s/$/",/;
|
|
print;
|
|
}
|