diff options
author | trevor <trevor@FreeBSD.org> | 2001-03-15 22:34:35 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2001-03-15 22:34:35 +0800 |
commit | 5383d616bdf31446bd6d1b670beb75a9aa80672b (patch) | |
tree | 2c5693b1c4290ab2bd3ab74533825c149e77980d | |
parent | 095eba4ee8c01a87c5b733dc67a859ff407225c1 (diff) | |
download | freebsd-ports-gnome-5383d616bdf31446bd6d1b670beb75a9aa80672b.tar.gz freebsd-ports-gnome-5383d616bdf31446bd6d1b670beb75a9aa80672b.tar.zst freebsd-ports-gnome-5383d616bdf31446bd6d1b670beb75a9aa80672b.zip |
Patch aops.c for a header problem. Remove BROKEN line.
reported by: kris
-rw-r--r-- | audio/csound/Makefile | 2 | ||||
-rw-r--r-- | audio/csound/files/patch-aops.c | 16 |
2 files changed, 16 insertions, 2 deletions
diff --git a/audio/csound/Makefile b/audio/csound/Makefile index 9a62c93d1d57..592bd26c66e7 100644 --- a/audio/csound/Makefile +++ b/audio/csound/Makefile @@ -15,8 +15,6 @@ EXTRACT_ONLY= Csound${PORTVERSION}.tar.gz MAINTAINER= trevor@FreeBSD.org -BROKEN= "Fails to compile" - LIB_DEPENDS= tcl83:${PORTSDIR}/lang/tcl83 \ tk83:${PORTSDIR}/x11-toolkits/tk83 diff --git a/audio/csound/files/patch-aops.c b/audio/csound/files/patch-aops.c new file mode 100644 index 000000000000..0dd3e34b94d1 --- /dev/null +++ b/audio/csound/files/patch-aops.c @@ -0,0 +1,16 @@ +--- aops.c.orig Thu Jan 4 03:48:26 2001 ++++ aops.c Thu Mar 15 06:26:31 2001 +@@ -1,3 +1,4 @@ ++#include <sys/time.h> + #include "cs.h" /* AOPS.C */ + #include "aops.h" + #include <math.h>
+@@ -421,8 +422,6 @@ + #ifdef LINUX + void rtclock(EVAL *p) + { +-#include <sys/time.h> +-#include <unistd.h> + struct timeval tv; + struct timezone tz; + gettimeofday(&tv, &tz); |