From: Jakub Bogusz Date: Fri, 19 May 2006 18:52:28 +0000 (+0000) Subject: - obsolete X-Git-Tag: auto/ac/SDL-1_2_11-1~1 X-Git-Url: http://git.pld-linux.org/?p=packages%2Fcrossmingw32-SDL.git;a=commitdiff_plain;h=986474c7e17e7af31bbf196dbc559b06ffb2c105 - obsolete Changed files: SDL-amfix.patch -> 1.2 SDL-byteorder.patch -> 1.2 SDL-lpthread.patch -> 1.2 SDL-no_rpath_in_sdl-config.patch -> 1.4 --- diff --git a/SDL-amfix.patch b/SDL-amfix.patch deleted file mode 100644 index 44982c3..0000000 --- a/SDL-amfix.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- SDL-1.2.2/configure.in.orig Mon Jul 23 21:54:03 2001 -+++ SDL-1.2.2/configure.in Fri Oct 19 22:05:53 2001 -@@ -50,6 +50,7 @@ - AM_PROG_LIBTOOL - AC_PROG_MAKE_SET - AC_PROG_CC -+AM_PROG_AS - AC_C_INLINE - AC_C_CONST - case "$target" in diff --git a/SDL-byteorder.patch b/SDL-byteorder.patch deleted file mode 100644 index 86c5498..0000000 --- a/SDL-byteorder.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- SDL-1.1.7/include/SDL_byteorder.h.foo Mon May 7 14:27:33 2001 -+++ SDL-1.1.7/include/SDL_byteorder.h Mon May 7 14:29:22 2001 -@@ -34,6 +34,12 @@ - #define SDL_LIL_ENDIAN 1234 - #define SDL_BIG_ENDIAN 4321 - -+ -+#ifdef __linux__ -+#include -+#define SDL_BYTEORDER __BYTE_ORDER -+#else -+ - /* Pardon the mess, I'm trying to determine the endianness of this host. - I'm doing it by preprocessor defines rather than some sort of configure - script so that application code can use this too. The "right" way would -@@ -46,5 +52,7 @@ - #else - #define SDL_BYTEORDER SDL_BIG_ENDIAN - #endif -+ -+#endif /* __linux __ */ - - #endif /* _SDL_byteorder_h */ diff --git a/SDL-lpthread.patch b/SDL-lpthread.patch deleted file mode 100644 index 5d01b01..0000000 --- a/SDL-lpthread.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- SDL-1.2.2/configure.in.orig Fri Oct 19 22:09:46 2001 -+++ SDL-1.2.2/configure.in Fri Oct 19 22:16:25 2001 -@@ -979,7 +979,7 @@ - if test x$use_pthreads = xyes; then - CFLAGS="$CFLAGS $pthread_cflags -DSDL_USE_PTHREADS" - SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags" -- SDL_LIBS="$SDL_LIBS $pthread_lib" -+ SYSTEM_LIBS="$SYSTEM_LIBS $pthread_lib" - - # Check to see if recursive mutexes are available - AC_MSG_CHECKING(for recursive mutexes) diff --git a/SDL-no_rpath_in_sdl-config.patch b/SDL-no_rpath_in_sdl-config.patch deleted file mode 100644 index 06f401a..0000000 --- a/SDL-no_rpath_in_sdl-config.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- SDL-1.2.7/sdl-config.in.orig 2004-02-18 18:21:55.000000000 +0100 -+++ SDL-1.2.7/sdl-config.in 2004-02-27 23:00:09.602808160 +0100 -@@ -51,12 +51,12 @@ - #echo $includes -I@includedir@/SDL @SDL_CFLAGS@ - ;; - @ENABLE_SHARED_TRUE@ --libs) --@ENABLE_SHARED_TRUE@ libdirs="-L@libdir@ @SDL_RLD_FLAGS@" -+@ENABLE_SHARED_TRUE@ libdirs="-L@libdir@" - @ENABLE_SHARED_TRUE@ echo $libdirs @SDL_LIBS@ @SHARED_SYSTEM_LIBS@ - @ENABLE_SHARED_TRUE@ ;; - @ENABLE_STATIC_TRUE@@ENABLE_SHARED_TRUE@ --static-libs) - @ENABLE_STATIC_TRUE@@ENABLE_SHARED_FALSE@ --libs|--static-libs) --@ENABLE_STATIC_TRUE@ libdirs="-L@libdir@ @SDL_RLD_FLAGS@" -+@ENABLE_STATIC_TRUE@ libdirs="-L@libdir@" - @ENABLE_STATIC_TRUE@ echo $libdirs @SDL_STATIC_LIBS@ @STATIC_SYSTEM_LIBS@ - @ENABLE_STATIC_TRUE@ ;; - *)