From 2d54d662403e5e22bc6fe4aebe0a0bb7c2684b61 Mon Sep 17 00:00:00 2001 From: Gabriel Jacobo Date: Tue, 9 Jul 2013 13:54:29 -0300 Subject: [PATCH] Removing video/uikit/*.c from configure's iOS sources Unexplicable computer sciences phenomenon: Instead of returning an empty set, *.c in an folder with no .c files produces the "*.c" string to be added as a source. I'm sorry future generations, we are doing the best we can :) --- configure | 1 - configure.in | 1 - 2 files changed, 2 deletions(-) diff --git a/configure b/configure index e60b62f5c..97ab2a3fe 100755 --- a/configure +++ b/configure @@ -22505,7 +22505,6 @@ $as_echo "#define SDL_POWER_BEOS 1" >>confdefs.h fi # The iOS platform requires special setup. SOURCES="$SOURCES $srcdir/src/video/uikit/*.m" - SOURCES="$SOURCES $srcdir/src/video/uikit/*.c" EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings" EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm -liconv -lobjc" EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Foundation" diff --git a/configure.in b/configure.in index 23194b488..825f5ba16 100644 --- a/configure.in +++ b/configure.in @@ -2592,7 +2592,6 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau fi # The iOS platform requires special setup. SOURCES="$SOURCES $srcdir/src/video/uikit/*.m" - SOURCES="$SOURCES $srcdir/src/video/uikit/*.c" EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings" EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm -liconv -lobjc" EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Foundation"