summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorasau <asau@pkgsrc.org>2013-12-15 20:19:08 +0000
committerasau <asau@pkgsrc.org>2013-12-15 20:19:08 +0000
commit79a7c95f9cc815566690c529c6a226a240ad5e10 (patch)
treefc54522d354cf03ae4013590d067b3164a200997
parent116d30d650214c4cc889f79b37973b9aac05ca24 (diff)
downloadpkgsrc-79a7c95f9cc815566690c529c6a226a240ad5e10.tar.gz
FreeBSD 9 doesn't have alloca.h, alloca() is declared in stdlib.h
-rw-r--r--audio/portaudio-devel/distinfo4
-rw-r--r--audio/portaudio-devel/patches/patch-ac4
2 files changed, 4 insertions, 4 deletions
diff --git a/audio/portaudio-devel/distinfo b/audio/portaudio-devel/distinfo
index 0bc8b55b6bb..663820a9e11 100644
--- a/audio/portaudio-devel/distinfo
+++ b/audio/portaudio-devel/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.5 2012/01/11 20:15:36 hans Exp $
+$NetBSD: distinfo,v 1.6 2013/12/15 20:19:08 asau Exp $
SHA1 (portaudio-devel-20060521/pa_snapshot_v19.tar.gz) = 05c35c7add9f95c79491fbacb80b057be339ed6f
RMD160 (portaudio-devel-20060521/pa_snapshot_v19.tar.gz) = dea1e921189bd788815c3012498fc035f3df8bad
Size (portaudio-devel-20060521/pa_snapshot_v19.tar.gz) = 722148 bytes
SHA1 (patch-aa) = b29699d78e1216bb3d129f1736e8c7b56e8c322b
-SHA1 (patch-ac) = 6dece8b29f30465ad12404c87436e4530b723272
+SHA1 (patch-ac) = c86dbd0c9f49f3e793dc5e9024c5896fcbf35966
diff --git a/audio/portaudio-devel/patches/patch-ac b/audio/portaudio-devel/patches/patch-ac
index 5f63691ce02..cf157ea198d 100644
--- a/audio/portaudio-devel/patches/patch-ac
+++ b/audio/portaudio-devel/patches/patch-ac
@@ -1,4 +1,4 @@
-$NetBSD: patch-ac,v 1.4 2012/01/11 20:15:37 hans Exp $
+$NetBSD: patch-ac,v 1.5 2013/12/15 20:19:08 asau Exp $
--- src/hostapi/oss/pa_unix_oss.c.orig 2006-05-17 08:02:24.000000000 +0000
+++ src/hostapi/oss/pa_unix_oss.c
@@ -6,7 +6,7 @@ $NetBSD: patch-ac,v 1.4 2012/01/11 20:15:37 hans Exp $
#include <sys/ioctl.h>
#include <unistd.h>
#include <pthread.h>
-+#if !defined(__NetBSD__) && !defined(__DragonFly__)
++#if !defined(__NetBSD__) && !defined(__DragonFly__) && !defined(__FreeBSD__)
#include <alloca.h>
-#include <malloc.h>
+#endif