diff options
Diffstat (limited to 'media-sound/aqualung/files/aqualung-1.0-mac.patch')
-rw-r--r-- | media-sound/aqualung/files/aqualung-1.0-mac.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/media-sound/aqualung/files/aqualung-1.0-mac.patch b/media-sound/aqualung/files/aqualung-1.0-mac.patch new file mode 100644 index 00000000000..16689ee0ae7 --- /dev/null +++ b/media-sound/aqualung/files/aqualung-1.0-mac.patch @@ -0,0 +1,26 @@ +Revert this patch. + +From 12c3a45a6d5b6ef0da70e0cdc424beff993eeef6 Mon Sep 17 00:00:00 2001 +From: Tom Szilagyi <tszilagyi@users.sourceforge.net> +Date: Mon, 9 Jun 2014 12:54:54 +0000 +Subject: [PATCH] Make the APE decoder compile with current libmac-dev + (4.11-u4-b5-s7-d) + +git-svn-id: https://svn.code.sf.net/p/aqualung/code/trunk@1303 3cd24cdc-1f22-0410-b8b1-dcf80e670293 +--- + src/decoder/dec_mac.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/decoder/dec_mac.cpp b/src/decoder/dec_mac.cpp +index 024c8b9..2e9bc01 100644 +--- a/src/decoder/dec_mac.cpp ++++ b/src/decoder/dec_mac.cpp +@@ -174,7 +174,7 @@ mac_decoder_open(decoder_t * dec, char * filename) { + + + int ret = 0; ++ wchar_t * pUTF16 = GetUTF16FromANSI(filename); +- wchar_t * pUTF16 = CAPECharacterHelper::GetUTF16FromANSI(filename); + pdecompress = CreateIAPEDecompress(pUTF16, &ret); + free(pUTF16); + |