1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-28 10:08:24 +00:00
freebsd-ports/audio/rubberband/files/patch-system-sysutils.h
Martin Wilke 8cd71a337d Rubber Band Library is a high quality software library for audio time-stretching
and pitch-shifting. It permits you to change the tempo and pitch of an audio
stream or recording dynamically and independently of one another.

WWW: http://breakfastquay.com/rubberband/

PR:		ports/164641
Submitted by:	mathias.picker@gmx.de
2012-02-07 06:37:49 +00:00

13 lines
292 B
C

--- src/system/sysutils.h-dist 2012-01-08 17:15:39.369149714 +0100
+++ src/system/sysutils.h 2012-01-08 17:19:42.384145925 +0100
@@ -27,7 +27,8 @@
#ifdef __MINGW32__
#include <malloc.h>
#else
-#include <alloca.h>
+/* linux stdlib also includes alloca.h */
+#include <stdlib.h>
#endif