Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Added command-line cross-compile support for iOS - Gabriel Jacobo wil…
Browse files Browse the repository at this point in the history
…l be adding iosbuild.sh and documentation for the process.
  • Loading branch information
slouken committed Jun 19, 2012
1 parent ffeba8c commit ae07322
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 1 deletion.
53 changes: 52 additions & 1 deletion configure
Expand Up @@ -22180,11 +22180,14 @@ cat >>conftest.$ac_ext <<_ACEOF
#include <X11/Xproto.h>
#include <X11/extensions/Xext.h>
#include <X11/extensions/extutil.h>
extern XExtDisplayInfo* XextAddDisplay(XExtensionInfo* a,Display* b,_Xconst char* c,XExtensionHooks* d,int e,XPointer f);

extern XExtDisplayInfo* XextAddDisplay(XExtensionInfo* a,Display* b,_Xconst char* c,XExtensionHooks* d,int e,XPointer f);
int
main ()
{


;
return 0;
}
_ACEOF
Expand Down Expand Up @@ -27960,6 +27963,54 @@ _ACEOF
SOURCES="$srcdir/src/main/beos/*.cc $SOURCES"
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lroot -lbe -lmedia -lgame -ldevice -ltextencoding"
;;
arm*-apple-darwin*)
# iOS - We are not writing anything to confdefs.h because you have to replace
# SDL_config.h for SDL_config_iphoneos.h anyway
ARCH=ios

CheckVisibilityHidden
CheckDummyVideo
CheckDiskAudio
CheckDummyAudio
CheckDLOPEN
CheckCOCOA
CheckPTHREAD


# Set up files for the audio library
if test x$enable_audio = xyes; then
SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.c"
have_audio=yes
fi
# Set up files for the joystick library
if test x$enable_joystick = xyes; then
SOURCES="$SOURCES $srcdir/src/joystick/iphoneos/*.m"
have_joystick=yes
fi
# Set up files for the haptic library
#if test x$enable_haptic = xyes; then
# SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
# have_haptic=yes
# EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
#fi
# Set up files for the power library
if test x$enable_power = xyes; then
SOURCES="$SOURCES $srcdir/src/power/uikit/*.m"
have_power=yes
fi
# Set up files for the timer library
if test x$enable_timers = xyes; then
SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
have_timers=yes
fi
# Set up additional files for the file library
if test x$enable_file = xyes; then
SOURCES="$SOURCES $srcdir/src/file/cocoa/*.m"
fi
# The iOS platform requires special setup.
SOURCES="$SOURCES $srcdir/src/video/uikit/*.m"
SOURCES="$SOURCES $srcdir/src/video/uikit/*.c"
;;
*-*-darwin* )
# This could be either full "Mac OS X", or plain "Darwin" which is
# just the OS X kernel sans upper layers like Carbon and Cocoa.
Expand Down
48 changes: 48 additions & 0 deletions configure.in
Expand Up @@ -2439,6 +2439,54 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau
SOURCES="$srcdir/src/main/beos/*.cc $SOURCES"
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lroot -lbe -lmedia -lgame -ldevice -ltextencoding"
;;
arm*-apple-darwin*)
# iOS - We are not writing anything to confdefs.h because you have to replace
# SDL_config.h for SDL_config_iphoneos.h anyway
ARCH=ios

CheckVisibilityHidden
CheckDummyVideo
CheckDiskAudio
CheckDummyAudio
CheckDLOPEN
CheckCOCOA
CheckPTHREAD


# Set up files for the audio library
if test x$enable_audio = xyes; then
SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.c"
have_audio=yes
fi
# Set up files for the joystick library
if test x$enable_joystick = xyes; then
SOURCES="$SOURCES $srcdir/src/joystick/iphoneos/*.m"
have_joystick=yes
fi
# Set up files for the haptic library
#if test x$enable_haptic = xyes; then
# SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
# have_haptic=yes
# EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
#fi
# Set up files for the power library
if test x$enable_power = xyes; then
SOURCES="$SOURCES $srcdir/src/power/uikit/*.m"
have_power=yes
fi
# Set up files for the timer library
if test x$enable_timers = xyes; then
SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
have_timers=yes
fi
# Set up additional files for the file library
if test x$enable_file = xyes; then
SOURCES="$SOURCES $srcdir/src/file/cocoa/*.m"
fi
# The iOS platform requires special setup.
SOURCES="$SOURCES $srcdir/src/video/uikit/*.m"
SOURCES="$SOURCES $srcdir/src/video/uikit/*.c"
;;
*-*-darwin* )
# This could be either full "Mac OS X", or plain "Darwin" which is
# just the OS X kernel sans upper layers like Carbon and Cocoa.
Expand Down

0 comments on commit ae07322

Please sign in to comment.