diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-05-31 00:53:07 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-05-31 00:53:07 +0800 |
commit | a9ee499e6059a463ab5026bab12ca92e091725d9 (patch) | |
tree | 5b29b07be4e7886b8b82f38d33258d2965193ac0 /audio/cmt/files | |
parent | 8183ffa147981c94587f7990e02f2dc3495344ab (diff) | |
download | freebsd-ports-gnome-a9ee499e6059a463ab5026bab12ca92e091725d9.tar.gz freebsd-ports-gnome-a9ee499e6059a463ab5026bab12ca92e091725d9.tar.zst freebsd-ports-gnome-a9ee499e6059a463ab5026bab12ca92e091725d9.zip |
add cmt 1.12
The Computer Music Toolkit (CMT) is a collection of LADSPA plugins
PR: 37970
Submitted by: Tilman Linneweh <tilman@arved.de>
Diffstat (limited to 'audio/cmt/files')
-rw-r--r-- | audio/cmt/files/patch-makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/audio/cmt/files/patch-makefile b/audio/cmt/files/patch-makefile new file mode 100644 index 000000000000..6a7f997c68a9 --- /dev/null +++ b/audio/cmt/files/patch-makefile @@ -0,0 +1,22 @@ +--- makefile.orig Tue Sep 18 00:15:28 2001 ++++ makefile Sun May 12 00:46:39 2002 +@@ -12,9 +12,7 @@ + # GENERAL + # + +-INCLUDES = -I/usr/local/include/ +-CFLAGS = $(INCLUDES) -Wall -Werror -O3 -fPIC +-CXXFLAGS = $(CFLAGS) ++CXXFLAGS += -I/usr/local/include/ + PLUGIN_LIB = ../plugins/cmt.so + + ############################################################################### +@@ -61,7 +59,7 @@ + targets: $(PLUGIN_LIB) + + $(PLUGIN_LIB): $(PLUGIN_OBJECTS) +- $(CXX) -shared \ ++ $(CXX) ${CXXFLAGS} -shared \ + -o $(PLUGIN_LIB) \ + $(PLUGIN_OBJECTS) + |