[sdl2_mixer] update to 2.0.2

This version uses the new SDL_AudioStream API for audio conversion,
which is necessary to make use of high quality resampling via
libsamplerate.

The linking patch is no longer needed (fixed upstream)
This commit is contained in:
Andrei Alexeyev 2017-12-23 06:07:04 +02:00
parent 9d9e5bfa85
commit 488a8b47a7
No known key found for this signature in database
GPG Key ID: 363707CD4C7FE8A4
2 changed files with 2 additions and 22 deletions

View File

@ -1,20 +0,0 @@
This file is part of MXE. See LICENSE.md for licensing information.
Fix link order for the 2 test programs.
diff -Naur SDL2_mixer-2.0.0/Makefile.in SDL2_mixer-2.0.0.fixed/Makefile.in
--- SDL2_mixer-2.0.0/Makefile.in 2013-08-10 19:39:54.000000000 +0200
+++ SDL2_mixer-2.0.0.fixed/Makefile.in 2014-10-09 13:27:51.275921178 +0200
@@ -66,10 +66,10 @@
$(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(VERSION_OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS)
$(objects)/playwave$(EXE): $(objects)/playwave.lo $(objects)/$(TARGET)
- $(LIBTOOL) --mode=link $(CC) -o $@ $(objects)/playwave.lo $(SDL_CFLAGS) $(SDL_LIBS) $(LDFLAGS) $(objects)/$(TARGET)
+ $(LIBTOOL) --mode=link $(CC) -o $@ $(objects)/playwave.lo $(objects)/$(TARGET) $(SDL_LIBS) $(LDFLAGS)
$(objects)/playmus$(EXE): $(objects)/playmus.lo $(objects)/$(TARGET)
- $(LIBTOOL) --mode=link $(CC) -o $@ $(objects)/playmus.lo $(SDL_CFLAGS) $(SDL_LIBS) $(LDFLAGS) $(objects)/$(TARGET)
+ $(LIBTOOL) --mode=link $(CC) -o $@ $(objects)/playmus.lo $(objects)/$(TARGET) $(SDL_LIBS) $(LDFLAGS)
install: all install-hdrs install-lib #install-bin
install-hdrs:

View File

@ -4,8 +4,8 @@ PKG := sdl2_mixer
$(PKG)_WEBSITE := https://www.libsdl.org/
$(PKG)_DESCR := SDL2_mixer
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.0.1
$(PKG)_CHECKSUM := 5a24f62a610249d744cbd8d28ee399d8905db7222bf3bdbc8a8b4a76e597695f
$(PKG)_VERSION := 2.0.2
$(PKG)_CHECKSUM := 4e615e27efca4f439df9af6aa2c6de84150d17cbfd12174b54868c12f19c83bb
$(PKG)_SUBDIR := SDL2_mixer-$($(PKG)_VERSION)
$(PKG)_FILE := SDL2_mixer-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := https://www.libsdl.org/projects/SDL_mixer/release/$($(PKG)_FILE)