aboutsummaryrefslogtreecommitdiffstats
path: root/distrib/sdl-1.2.12/src/main/macos/exports/gendef.pl
diff options
context:
space:
mode:
authorJesse Hall <jessehall@google.com>2012-07-17 16:58:55 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-07-23 19:59:14 -0700
commitd8239786b306ffda6d5d73753d01f0ad3358e1a0 (patch)
treeb6b2aa300fc08f7fa20d545a7255d4a9a748d282 /distrib/sdl-1.2.12/src/main/macos/exports/gendef.pl
parent4b0ca3716e04e4b445fd987e877f07bba6ce06cd (diff)
downloadexternal_qemu-d8239786b306ffda6d5d73753d01f0ad3358e1a0.zip
external_qemu-d8239786b306ffda6d5d73753d01f0ad3358e1a0.tar.gz
external_qemu-d8239786b306ffda6d5d73753d01f0ad3358e1a0.tar.bz2
Delete sdl-1.2.12
Change-Id: Ia96f80df04035ae84be3af468c945f2cec14f99c
Diffstat (limited to 'distrib/sdl-1.2.12/src/main/macos/exports/gendef.pl')
-rw-r--r--distrib/sdl-1.2.12/src/main/macos/exports/gendef.pl43
1 files changed, 0 insertions, 43 deletions
diff --git a/distrib/sdl-1.2.12/src/main/macos/exports/gendef.pl b/distrib/sdl-1.2.12/src/main/macos/exports/gendef.pl
deleted file mode 100644
index c27394b..0000000
--- a/distrib/sdl-1.2.12/src/main/macos/exports/gendef.pl
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/perl
-#
-# Program to take a set of header files and generate DLL export definitions
-
-# Special exports to ignore for this platform
-
-while ( ($file = shift(@ARGV)) ) {
- if ( ! defined(open(FILE, $file)) ) {
- warn "Couldn't open $file: $!\n";
- next;
- }
- $printed_header = 0;
- $file =~ s,.*/,,;
- while (<FILE>) {
- if ( / DECLSPEC.* SDLCALL ([^\s\(]+)/ ) {
- if ( not $exclude{$1} ) {
- print "\t$1\n";
- }
- }
- }
- close(FILE);
-}
-
-# Special exports to include for this platform
-print "\tSDL_putenv\n";
-print "\tSDL_getenv\n";
-print "\tSDL_qsort\n";
-print "\tSDL_revcpy\n";
-print "\tSDL_strlcpy\n";
-print "\tSDL_strlcat\n";
-print "\tSDL_strdup\n";
-print "\tSDL_strrev\n";
-print "\tSDL_strupr\n";
-print "\tSDL_strlwr\n";
-print "\tSDL_ltoa\n";
-print "\tSDL_ultoa\n";
-print "\tSDL_strcasecmp\n";
-print "\tSDL_strncasecmp\n";
-print "\tSDL_snprintf\n";
-print "\tSDL_vsnprintf\n";
-print "\tSDL_iconv\n";
-print "\tSDL_iconv_string\n";
-print "\tSDL_InitQuickDraw\n";