This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with …
…SDL 1.2
- Loading branch information
Showing
with
905 additions
and 870 deletions.
- +2 −3 .hgignore
- +1 −1 COPYING
- +21 −22 Makefile.in
- +1 −1 VisualC/SDL/SDL_VS2008.vcproj
- +1 −1 VisualC/SDLmain/SDLmain_VS2008.vcproj
- +5 −0 VisualC/clean.sh
- +2 −2 VisualC/tests/checkkeys/checkkeys_VS2008.vcproj
- +2 −2 VisualC/tests/graywin/graywin_VS2008.vcproj
- +2 −2 VisualC/tests/loopwave/loopwave_VS2008.vcproj
- +2 −2 VisualC/tests/testalpha/testalpha_VS2008.vcproj
- +2 −2 VisualC/tests/testatomic/testatomic_VS2008.vcproj
- +2 −2 VisualC/tests/testcursor/testcursor_VS2008.vcproj
- +2 −2 VisualC/tests/testdraw2/testdraw2_VS2008.vcproj
- +2 −2 VisualC/tests/testfile/testfile_VS2008.vcproj
- +2 −2 VisualC/tests/testgamma/testgamma_VS2008.vcproj
- +2 −2 VisualC/tests/testgesture/testgesture_VS2008.vcproj
- +2 −2 VisualC/tests/testgl/testgl_VS2008.vcproj
- +2 −2 VisualC/tests/testgl2/testgl2_VS2008.vcproj
- +2 −2 VisualC/tests/testjoystick/testjoystick_VS2008.vcproj
- +2 −2 VisualC/tests/testoverlay/testoverlay_VS2008.vcproj
- +2 −2 VisualC/tests/testoverlay2/testoverlay2_VS2008.vcproj
- +2 −2 VisualC/tests/testplatform/testplatform_VS2008.vcproj
- +2 −2 VisualC/tests/testpower/testpower_VS2008.vcproj
- +2 −2 VisualC/tests/testrendertarget/testrendertarget_VS2008.vcproj
- +2 −2 VisualC/tests/testscale/testscale_VS2008.vcproj
- +2 −2 VisualC/tests/testshape/testshape_VS2008.vcproj
- +2 −2 VisualC/tests/testsprite/testsprite_VS2008.vcproj
- +2 −2 VisualC/tests/testsprite2/testsprite2_VS2008.vcproj
- +2 −2 VisualC/tests/testvidinfo/testvidinfo_VS2008.vcproj
- +2 −2 VisualC/tests/testwin/testwin_VS2008.vcproj
- +2 −2 VisualC/tests/testwm/testwm_VS2008.vcproj
- +17 −17 Xcode/SDL/SDL.xcodeproj/project.pbxproj
- +0 −283 Xcode/SDL/pkg-support/resources/License.rtf
- +19 −0 Xcode/SDL/pkg-support/resources/License.txt
- +4 −137 Xcode/SDL/pkg-support/resources/ReadMe.txt
- BIN Xcode/SDL/pkg-support/resources/SDL_DS_Store
- +0 −150 Xcode/SDL/pkg-support/resources/UniversalBinaryNotes.rtf
- +13 −13 configure
- +10 −10 configure.in
- +2 −2 include/SDL_version.h
- +3 −3 sdl-config.in → sdl2-config.in
- +16 −19 sdl.m4 → sdl2.m4
- +2 −2 sdl.pc.in → sdl2.pc.in
- +228 −50 test/acinclude.m4
- +228 −50 test/aclocal.m4
- +281 −55 test/configure
- +1 −1 test/configure.in
@@ -0,0 +1,5 @@ | ||
find . -type d -name 'Debug' -exec rm -rv {} \; | ||
find . -type d -name 'Release' -exec rm -rv {} \; | ||
find . -type f -name '*.user' -exec rm -v {} \; | ||
find . -type f -name '*.ncb' -exec rm -v {} \; | ||
find . -type f -name '*.suo' -exec rm -v {} \; |
Oops, something went wrong.