From b55b3ddfc8bc6abf3bb2b55090b82b65d4dea051 Mon Sep 17 00:00:00 2001 From: Robert Schwebel Date: Mon, 28 Dec 2009 21:23:30 +0100 Subject: [sdl_mixer] version bump 1.2.8 -> 1.2.11 Signed-off-by: Robert Schwebel --- patches/SDL_mixer-1.2.11/fix-parallel-build.diff | 47 ++++++++++++++++++++++++ patches/SDL_mixer-1.2.11/series | 1 + 2 files changed, 48 insertions(+) create mode 100644 patches/SDL_mixer-1.2.11/fix-parallel-build.diff create mode 100644 patches/SDL_mixer-1.2.11/series (limited to 'patches/SDL_mixer-1.2.11') 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 +Subject: fix parallel build + +We have to create the objects dir before saving gcc's output into it. + +Signed-off-by: Marc Kleine-Budde +Signed-off-by: Robert Schwebel +--- +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 -- cgit v1.2.3