aboutsummaryrefslogtreecommitdiffstats
path: root/package/goldfish-qemu/patches/100-darwin_fix.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-10-07 12:50:15 +0000
committerFelix Fietkau <nbd@openwrt.org>2012-10-07 12:50:15 +0000
commitfafaa38ae55cab486f2b929a131fe433ce180224 (patch)
tree25d7e19e357623b44714e2052228a7e05eb3ade7 /package/goldfish-qemu/patches/100-darwin_fix.patch
parent6f752c725a5b592dff8c17f0fe4e905de22b8112 (diff)
downloadupstream-fafaa38ae55cab486f2b929a131fe433ce180224.tar.gz
upstream-fafaa38ae55cab486f2b929a131fe433ce180224.tar.bz2
upstream-fafaa38ae55cab486f2b929a131fe433ce180224.zip
move a few unmaintained packages from trunk to /packages
SVN-Revision: 33634
Diffstat (limited to 'package/goldfish-qemu/patches/100-darwin_fix.patch')
-rw-r--r--package/goldfish-qemu/patches/100-darwin_fix.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/package/goldfish-qemu/patches/100-darwin_fix.patch b/package/goldfish-qemu/patches/100-darwin_fix.patch
deleted file mode 100644
index a5f56b3cf4..0000000000
--- a/package/goldfish-qemu/patches/100-darwin_fix.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- a/android-configure.sh
-+++ b/android-configure.sh
-@@ -656,6 +656,9 @@ case "$CPU" in
- *) HOST_CPU=$CPU
- ;;
- esac
-+case "$OS" in
-+ darwin*) echo "#define _BSD 1" >> $config_h;;
-+esac
- echo "#define HOST_$HOST_CPU 1" >> $config_h
- log "Generate : $config_h"
-
---- a/android/utils/display-quartz.m
-+++ b/android/utils/display-quartz.m
-@@ -34,6 +34,7 @@ get_monitor_resolution( int *px_dpi, in
- int
- get_nearest_monitor_rect( int *x, int *y, int *width, int *height )
- {
-+#if 0
- SDL_SysWMinfo info;
- NSWindow* window;
-
-@@ -108,4 +109,7 @@ get_nearest_monitor_rect( int *x, int
- }
- return 0;
- }
-+#else
-+ return -1;
-+#endif
- };