aboutsummaryrefslogtreecommitdiffstats
path: root/audio/tclmidi
diff options
context:
space:
mode:
authormarino <marino@FreeBSD.org>2015-08-22 22:45:18 +0800
committermarino <marino@FreeBSD.org>2015-08-22 22:45:18 +0800
commitb8976a3ec1831ef3006a4aa92267514bc47cc337 (patch)
treeec19400d0a76753021e2fc4ecaa110faf0257308 /audio/tclmidi
parentdea146e89b22952aa3b88c81193e6469f200b090 (diff)
downloadfreebsd-ports-gnome-b8976a3ec1831ef3006a4aa92267514bc47cc337.tar.gz
freebsd-ports-gnome-b8976a3ec1831ef3006a4aa92267514bc47cc337.tar.zst
freebsd-ports-gnome-b8976a3ec1831ef3006a4aa92267514bc47cc337.zip
audio/tclmide: Remove -Werror flag
This unmaintained port won't build on gcc5+ with -Werror.
Diffstat (limited to 'audio/tclmidi')
-rw-r--r--audio/tclmidi/files/BSDmakefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/audio/tclmidi/files/BSDmakefile b/audio/tclmidi/files/BSDmakefile
index c863d8a06731..d6ded61b0493 100644
--- a/audio/tclmidi/files/BSDmakefile
+++ b/audio/tclmidi/files/BSDmakefile
@@ -25,9 +25,10 @@ LDADD= -lstdc++
SUBDIRS=events device patch smf song rb
INCLUDES= -I${TCL_INCLUDEDIR} ${SUBDIRS:S/^/-I/}
-CFLAGS+= ${INCLUDES} -Werror
+CFLAGS+= ${INCLUDES}
CXXFLAGS+= -Wall -Wno-deprecated ${INCLUDES} -I${FILESDIR}
-CXXFLAGS+= -DHAVE_UNISTD_H -DHAVE_SYS_FILIO_H -DHAVE_SYS_TIME_H -Werror
+CXXFLAGS+= -DHAVE_UNISTD_H -DHAVE_SYS_FILIO_H -DHAVE_SYS_TIME_H
+NO_WERROR= yes
.PATH: ${SUBDIRS} man
WARNS= 5