From 6039eb05ba6d82ef56f2868c96654c552d117bf9 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Wed, 7 Feb 2018 20:04:46 -0500 Subject: sdl: remove non-rockbox drivers We never use any of these other drivers, so having them around just takes up space. Change-Id: Iced812162df1fef3fd55522b7e700acb6c3bcd41 --- apps/plugins/sdl/src/main/macos/exports/gendef.pl | 43 ----------------------- 1 file changed, 43 deletions(-) delete mode 100644 apps/plugins/sdl/src/main/macos/exports/gendef.pl (limited to 'apps/plugins/sdl/src/main/macos/exports/gendef.pl') diff --git a/apps/plugins/sdl/src/main/macos/exports/gendef.pl b/apps/plugins/sdl/src/main/macos/exports/gendef.pl deleted file mode 100644 index 9cffca92aa..0000000000 --- a/apps/plugins/sdl/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 () { - if ( / DECLSPEC.* SDLCALL ([^\s\(]+)/ ) { - if ( not $exclude{$1} ) { - print "\t$1\r"; - } - } - } - close(FILE); -} - -# Special exports to include for this platform -print "\tSDL_putenv\r"; -print "\tSDL_getenv\r"; -print "\tSDL_qsort\r"; -print "\tSDL_revcpy\r"; -print "\tSDL_strlcpy\r"; -print "\tSDL_strlcat\r"; -print "\tSDL_strdup\r"; -print "\tSDL_strrev\r"; -print "\tSDL_strupr\r"; -print "\tSDL_strlwr\r"; -print "\tSDL_ltoa\r"; -print "\tSDL_ultoa\r"; -print "\tSDL_strcasecmp\r"; -print "\tSDL_strncasecmp\r"; -print "\tSDL_snprintf\r"; -print "\tSDL_vsnprintf\r"; -print "\tSDL_iconv\r"; -print "\tSDL_iconv_string\r"; -print "\tSDL_InitQuickDraw\r"; -- cgit v1.2.3