comparison src/libsndfile-1-fixes.patch @ 3776:5fd074e27f85

audio: updates for libsound, portaudio * src/libsndfile-1-fixes.patch: added file * src/portaudio.mk: remove building of test program, fix typo for AR. * dist-files.mk: add libsndfile-1-fixes.patch
author John Donoghue <john.donoghue@ieee.org>
date Sun, 25 Jan 2015 07:59:19 -0500
parents
children
comparison
equal deleted inserted replaced
3775:7f250bf4c472 3776:5fd074e27f85
1 This file is part of MXE.
2 See index.html for further information.
3
4 Taken from https://github.com/erikd/libsndfile/pull/76
5
6 From 9ce0175df1fcb3db7a63ba8a72712b4676a3af86 Mon Sep 17 00:00:00 2001
7 From: Timothy Gu <timothygu99@gmail.com>
8 Date: Mon, 1 Sep 2014 11:05:13 -0700
9 Subject: [PATCH] configure.ac: Fix detection of MinGW
10
11 Signed-off-by: Timothy Gu <timothygu99@gmail.com>
12
13 diff --git a/configure.ac b/configure.ac
14 index 20ba55a..d25201c 100644
15 --- a/configure.ac
16 +++ b/configure.ac
17 @@ -168,7 +168,7 @@ unset ac_cv_sizeof_off_t
18 AC_CHECK_SIZEOF(off_t,1) # Fake default value.
19
20 case "$host_os" in
21 - mingw32msvc | mingw32)
22 + mingw32*)
23 TYPEOF_SF_COUNT_T="__int64"
24 SF_COUNT_MAX="0x7FFFFFFFFFFFFFFFLL"
25 SIZEOF_SF_COUNT_T=8
26 --
27 1.9.1
28