This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LIBSODIUM_PREFIX=/opt/libsodium-debug | |
LIBSODIUM_INC=$(LIBSODIUM_PREFIX)/include | |
LIBSODIUM_LIB=$(LIBSODIUM_PREFIX)/lib | |
LIBSODIUM_LFLAGS=-L$(LIBSODIUM_LIB) -lsodium | |
LIBSODIUM_RPATH=-Wl,-rpath=$(LIBSODIUM_LIB) | |
LIBHACL_ROOT=$(HOME)/repos/hacl-star | |
LIBHACL_PREFIX=$(LIBHACL_ROOT)/snapshots/hacl-c | |
LIBHACL_INC=$(LIBHACL_PREFIX) | |
LIBHACL_LIB=$(LIBHACL_PREFIX) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Pioneers < Formula | |
url 'https://downloads.sourceforge.net/project/pio/Source/pioneers-15.1.tar.gz' | |
homepage 'http://pio.sourceforge.net/' | |
sha1 'cea94cd77edef31b3f9e601077dff9b199dfeaf4' | |
fails_with :clang do | |
build 318 | |
cause "'#line directive requires a positive integer' argument in generated file" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/libavformat/riffenc.c 2014-02-23 22:59:10.000000000 +0100 | |
+++ b/libavformat/riffenc.c 2014-03-26 15:12:11.000000000 +0100 | |
@@ -70,7 +70,10 @@ | |
if (!frame_size) | |
frame_size = enc->frame_size; | |
- waveformatextensible = (enc->channels > 2 && enc->channel_layout) || | |
+ /* Patched libav to avoid waveformatextensible header in AVI with | |
+ * >2 channels audio streams to improve compatibility as per | |
+ * http://ffmpeg-users.933282.n4.nabble.com/AC3-encoding-problem-wrong-audio-tag-tp4651779p4651810.html */ |
NewerOlder