Skip to content

Commit

Permalink
Patching in the right way
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 committed Mar 8, 2019
1 parent 874c92c commit 803b433
Showing 1 changed file with 10 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
diff -Naur SDL2_mixer/Android.mk SDL2_mixer-1/Android.mk
--- SDL2_mixer/Android.mk 2019-03-07 21:07:42.149457400 +0100
+++ SDL2_mixer-1/Android.mk 2019-03-07 21:05:06.851338800 +0100
@@ -3,20 +3,20 @@
--- orig/Android.mk 2018-10-31 15:58:59.000000000 +0100
+++ patched/Android.mk 2019-03-08 12:11:35.271258500 +0100
@@ -3,7 +3,7 @@


# Enable this if you want to support loading FLAC music with libFLAC
-SUPPORT_FLAC := false
+SUPPORT_FLAC ?= true
-SUPPORT_FLAC ?= true
+SUPPORT_FLAC := false
FLAC_LIBRARY_PATH := external/flac-1.3.2

# Enable this if you want to support loading OGG Vorbis music via Tremor
-SUPPORT_OGG := true
+SUPPORT_OGG ?= true
OGG_LIBRARY_PATH := external/libogg-1.3.2
@@ -12,11 +12,11 @@
VORBIS_LIBRARY_PATH := external/libvorbisidec-1.2.1

# Enable this if you want to support loading MP3 music via MPG123
-SUPPORT_MP3_MPG123 := false
+SUPPORT_MP3_MPG123 ?= true
-SUPPORT_MP3_MPG123 ?= true
+SUPPORT_MP3_MPG123 := false
MPG123_LIBRARY_PATH := external/mpg123-1.25.6

# Enable this if you want to support loading MOD music via modplug
-SUPPORT_MOD_MODPLUG := false
+SUPPORT_MOD_MODPLUG ?= true
-SUPPORT_MOD_MODPLUG ?= true
+SUPPORT_MOD_MODPLUG := false
MODPLUG_LIBRARY_PATH := external/libmodplug-0.8.9.0

# Enable this if you want to support TiMidity

0 comments on commit 803b433

Please sign in to comment.