diff options
author | pav <pav@FreeBSD.org> | 2005-05-04 19:44:31 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-05-04 19:44:31 +0800 |
commit | 64512b0f052176e54a2a81e3e07006a7b2ebc202 (patch) | |
tree | b51d19085747064cfea34d8c6d37bda8564b34b1 /multimedia/transcode | |
parent | ec408820222f2d0616f6969bdf1d634e9d0c9dbd (diff) | |
download | freebsd-ports-graphics-64512b0f052176e54a2a81e3e07006a7b2ebc202.tar.gz freebsd-ports-graphics-64512b0f052176e54a2a81e3e07006a7b2ebc202.tar.zst freebsd-ports-graphics-64512b0f052176e54a2a81e3e07006a7b2ebc202.zip |
- Don't discard CFLAGS for WITH_DIVX5 knob
PR: ports/79826 (based on)
Submitted by: Jonathan Lennox <lennox@cnr.cs.columbia.edu>
Approved by: maintainer timeout (15 days)
Diffstat (limited to 'multimedia/transcode')
-rw-r--r-- | multimedia/transcode/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/multimedia/transcode/Makefile b/multimedia/transcode/Makefile index a1265875eda..b3efc8a94c5 100644 --- a/multimedia/transcode/Makefile +++ b/multimedia/transcode/Makefile @@ -261,7 +261,8 @@ PLIST_SUB+= WITH_LZO="@comment " .if defined(WITH_DIVX5) BUILD_DEPENDS+= ${LINUXBASE}/usr/lib/libdivxdecore.so:${PORTSDIR}/multimedia/linux-divx4linux -CONFIGURE_ENV+= CFLAGS="-I${LINUXBASE}/usr/include/divx" CPPFLAGS="-I${LINUXBASE}/usr/include/divx" +CFLAGS+= -I${LINUXBASE}/usr/include/divx +CPPFLAGS+= -I${LINUXBASE}/usr/include/divx .else .endif |