diff options
author | lioux <lioux@FreeBSD.org> | 2004-06-26 11:05:57 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2004-06-26 11:05:57 +0800 |
commit | ec42cd092e6b11dd74e12bef81f9e08f113a31d7 (patch) | |
tree | 8a1a7257e782ae0b578f7ed9ed3b204dec9d9cbf /multimedia | |
parent | 1a4dd4691edb011020a2d7ae2c8befaf10fd9590 (diff) | |
download | freebsd-ports-graphics-ec42cd092e6b11dd74e12bef81f9e08f113a31d7.tar.gz freebsd-ports-graphics-ec42cd092e6b11dd74e12bef81f9e08f113a31d7.tar.zst freebsd-ports-graphics-ec42cd092e6b11dd74e12bef81f9e08f113a31d7.zip |
o Add OPTIONS knobs: DEBUG which defaults to on
o If you disable DEBUG; duh, no debug support is built
o No PORTREVISION bump since this maintains the current port state
(DEBUG defaults to on)
PR: 67678
Submitted by: michael johnson <ahze@ahze.net>
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/openquicktime/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/multimedia/openquicktime/Makefile b/multimedia/openquicktime/Makefile index 3af92309ad4..3178c907aac 100644 --- a/multimedia/openquicktime/Makefile +++ b/multimedia/openquicktime/Makefile @@ -27,8 +27,14 @@ USE_SIZE= yes INSTALL_SHLIBS= yes PKGDEINSTALL= ${PKGINSTALL} +OPTIONS= DEBUG "Turn on debugging" on + .include <bsd.port.pre.mk> +.ifndef(WITH_DEBUG) +CONFIGURE_ARGS+= --enable-debug=no +.endif + .if ${ARCH} == "sparc64" BROKEN= "Does not build on sparc64" .endif |