diff options
Diffstat (limited to 'audio/jack/files/patch-driver.c')
-rw-r--r-- | audio/jack/files/patch-driver.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/audio/jack/files/patch-driver.c b/audio/jack/files/patch-driver.c deleted file mode 100644 index 15194d406eeb..000000000000 --- a/audio/jack/files/patch-driver.c +++ /dev/null @@ -1,31 +0,0 @@ ---- libjack/driver.c.orig Thu Dec 11 00:50:40 2003 -+++ libjack/driver.c Tue Mar 9 19:52:04 2004 -@@ -24,6 +24,7 @@ - #include <stdarg.h> - #include <stdlib.h> - #include <stdio.h> -+#include <sys/types.h> - #include <sys/mman.h> - #include <errno.h> - -@@ -105,6 +106,11 @@ - return -1; - } - -+#ifdef __FreeBSD__ -+#include <osreldate.h> -+#endif -+#if (defined(__APPLE__) && defined(__POWERPC__)) || (__FreeBSD_version < 501000) -+#else - if (mlockall (MCL_CURRENT | MCL_FUTURE) != 0) { - jack_error ("cannot lock down memory for RT thread (%s)", - strerror (errno)); -@@ -112,7 +118,7 @@ - return -1; - #endif /* ENSURE_MLOCK */ - } -- -+#endif - return 0; - } - |