Ryan C. Gordon <icculus@icculus.org> [Fri, 11 Oct 2013 10:58:05 -0400] rev 7805
Do a full sysroot for the Raspberry Pi buildbot.
This gets us ALSA and X11, etc.
Sam Lantinga <slouken@libsdl.org> [Thu, 10 Oct 2013 21:51:39 -0700] rev 7804
Fixed bug 2146 - Enable static linking of libSDL on Android
Denis Bernard
This patch to Android.mk adds support for static linking of libSDL for Android applications. A patched readme with static build instructions is also provided.
It does not break existing build environments setup according to the README-android.txt since the static library version will not be built in not required.
The static build uses the Android NDK module system (see docs/IMPORT-MODULE.html in the NDK folder and step 5 in the instructions below).
Instructions:
1. Copy the android-project directory wherever you want to keep your projects
and rename it to the name of your project.
2. Create a symlink to SDL/src/main/android/SDL_android_main.c as
<project>/jni/src/SDL_android_main.c
3. Rename <project>/jni/src/Android_static.mk to <project>/jni/src/Android.mk
(overwrite the existing one)
4. Edit <project>/jni/src/Android.mk to include your source files
5. create and export an environment variable named NDK_MODULE_PATH that points
to the parent directory of this SDL directory. e.g.:
export NDK_MODULE_PATH="$PWD"/..
6. Edit <project>/src/org/libsdl/app/SDLActivity.java and remove the call to
System.loadLibrary("SDL2") line 42.
7. Run 'ndk-build' (a script provided by the NDK). This compiles the C source
Although this requires an environment variable to be setup, it can be added once and for all to the main Android.mk of the project.
Sam Lantinga <slouken@libsdl.org> [Thu, 10 Oct 2013 21:50:25 -0700] rev 7803
Updated SDL to version 2.0.1
Sam Lantinga <slouken@libsdl.org> [Thu, 10 Oct 2013 20:58:20 -0700] rev 7802
Report joystick added/removed events even if we don't have udev.
T. Joseph Carter
As discussed (possibly to death), the Linux joystick driver does not actually report events for added or removed joysticks when you haven't got udev support.
We simply cannot know about removed joysticks without udev. But we can (and we should) report adding them. This brings the legacy case in line with pretty much the rest of SDL's joystick drivers.
Jørgen P. Tjernø <jorgen@valvesoftware.com> [Mon, 07 Oct 2013 16:01:40 -0700] rev 7801
Mac: Better handling when someone else is the app delegate.
Ryan C. Gordon <icculus@icculus.org> [Thu, 10 Oct 2013 02:37:36 -0400] rev 7800
Raspberry Pi build script: let caller specify final tarball name.
Ryan C. Gordon <icculus@icculus.org> [Thu, 10 Oct 2013 02:21:41 -0400] rev 7799
Patched to compile in C90 mode.
Ryan C. Gordon <icculus@icculus.org> [Thu, 10 Oct 2013 02:06:14 -0400] rev 7798
Fixed tarball name in Raspberry Pi build script.
Ryan C. Gordon <icculus@icculus.org> [Thu, 10 Oct 2013 01:46:39 -0400] rev 7797
Added script that the buildbot will use for cross-compiling to Raspberry Pi.
Gabriel Jacobo <gabomdq@gmail.com> [Thu, 10 Oct 2013 00:49:57 -0300] rev 7796
Adds gl_profile_mask to test framework, uses it in testgles