summaryrefslogtreecommitdiffstats
path: root/patches/SDL_mixer-1.2.11
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2009-12-28 21:23:30 +0100
committerRobert Schwebel <r.schwebel@pengutronix.de>2009-12-28 21:23:30 +0100
commitb55b3ddfc8bc6abf3bb2b55090b82b65d4dea051 (patch)
tree0c1a85d37abe6b2c5f8ce2985301eadd3ddb0ca6 /patches/SDL_mixer-1.2.11
parent80f02811b59a8cb0b9562526efa3c4919ce1a31a (diff)
downloadptxdist-b55b3ddfc8bc6abf3bb2b55090b82b65d4dea051.tar.gz
ptxdist-b55b3ddfc8bc6abf3bb2b55090b82b65d4dea051.tar.xz
[sdl_mixer] version bump 1.2.8 -> 1.2.11
Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Diffstat (limited to 'patches/SDL_mixer-1.2.11')
-rw-r--r--patches/SDL_mixer-1.2.11/fix-parallel-build.diff47
-rw-r--r--patches/SDL_mixer-1.2.11/series1
2 files changed, 48 insertions, 0 deletions
diff --git a/patches/SDL_mixer-1.2.11/fix-parallel-build.diff b/patches/SDL_mixer-1.2.11/fix-parallel-build.diff
new file mode 100644
index 000000000..7130df161
--- /dev/null
+++ b/patches/SDL_mixer-1.2.11/fix-parallel-build.diff
@@ -0,0 +1,47 @@
+From: Marc Kleine-Budde <mkl@pengutronix.de>
+Subject: fix parallel build
+
+We have to create the objects dir before saving gcc's output into it.
+
+Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
+Signed-off-by: Robert Schwebel <rsc@pengutronix.de>
+---
+V2:
+ rsc: ported to 1.2.11
+
+V1:
+ mkl: patch for 1.2.8
+
+ Makefile.in | 8 ++++----
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+Index: SDL_mixer-1.2.11/Makefile.in
+===================================================================
+--- SDL_mixer-1.2.11.orig/Makefile.in
++++ SDL_mixer-1.2.11/Makefile.in
+@@ -71,13 +71,13 @@ $(objects):
+ -include $(PLAYMUS_OBJECTS:.lo=.d)
+ @PLAYMUS_DEPENDS@
+
+-$(objects)/$(TARGET): $(OBJECTS) $(VERSION_OBJECTS)
++$(objects)/$(TARGET): $(OBJECTS) $(VERSION_OBJECTS) $(objects)
+ $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(VERSION_OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS)
+
+-$(objects)/playwave$(EXE): $(objects)/playwave.lo $(objects)/$(TARGET)
++$(objects)/playwave$(EXE): $(objects)/playwave.lo $(objects)/$(TARGET) $(objects)
+ $(LIBTOOL) --mode=link $(CC) -o $@ $(objects)/playwave.lo $(SDL_CFLAGS) $(SDL_LIBS) $(objects)/$(TARGET)
+
+-$(objects)/playmus$(EXE): $(objects)/playmus.lo $(objects)/$(TARGET)
++$(objects)/playmus$(EXE): $(objects)/playmus.lo $(objects)/$(TARGET) $(objects)
+ $(LIBTOOL) --mode=link $(CC) -o $@ $(objects)/playmus.lo $(SDL_CFLAGS) $(SDL_LIBS) $(objects)/$(TARGET)
+
+ install: all install-hdrs install-lib #install-bin
+@@ -92,7 +92,7 @@ install-hdrs:
+ install-lib: $(objects) $(objects)/$(TARGET)
+ $(SHELL) $(auxdir)/mkinstalldirs $(libdir)
+ $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(libdir)/$(TARGET)
+-install-bin:
++install-bin: $(objects)
+ $(SHELL) $(auxdir)/mkinstalldirs $(bindir)
+ $(LIBTOOL) --mode=install $(INSTALL) -m 755 $(objects)/playwave$(EXE) $(bindir)/playwave$(EXE)
+ $(LIBTOOL) --mode=install $(INSTALL) -m 755 $(objects)/playmus$(EXE) $(bindir)/playmus$(EXE)
diff --git a/patches/SDL_mixer-1.2.11/series b/patches/SDL_mixer-1.2.11/series
new file mode 100644
index 000000000..30ae80700
--- /dev/null
+++ b/patches/SDL_mixer-1.2.11/series
@@ -0,0 +1 @@
+fix-parallel-build.diff