diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-05-11 04:05:23 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-05-11 04:05:23 +0000 |
commit | 5663132a21c8c41c378c0131f3b000d53bd3087f (patch) | |
tree | 8bf56bec3c5e9e3ae3c9af2413860ebef6b9c609 /multimedia/mpeg4ip/Makefile | |
parent | Fix a nibble calculation bug for IPv6 in nslookup. (diff) |
o For some reason configure is not propagating PTHREAD_LIBS to the
makefiles in the SDL lib lines in the 5.x branch. Add PTHREAD_LIBS
by hand on those.
o Unmark BROKEN
Submitted by: David Yeske <dyeske@yahoo.com>
Diffstat (limited to 'multimedia/mpeg4ip/Makefile')
-rw-r--r-- | multimedia/mpeg4ip/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/multimedia/mpeg4ip/Makefile b/multimedia/mpeg4ip/Makefile index d27b9987eb10..d25b78a819c7 100644 --- a/multimedia/mpeg4ip/Makefile +++ b/multimedia/mpeg4ip/Makefile @@ -14,8 +14,6 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= lioux@FreeBSD.org COMMENT= Standards-based system to encode, stream and play MPEG-4 audio/video -BROKEN= "Does not compile" - BUILD_DEPENDS= libtool:${PORTSDIR}/devel/libtool \ nasm:${PORTSDIR}/devel/nasm \ pkg-config:${PORTSDIR}/devel/pkgconfig @@ -132,6 +130,15 @@ post-configure: -n 10 ${REINPLACE_CMD} -E -e \ 's! (autoconf|autoheader|automake|aclocal)$$! ${TRUE}!; \ s|-Werror||g' +# configure is not propagating PTHREAD_LIBS to the makefiles +# investigated by David Yeske <dyeske@yahoo.com> +#.if ${OSVERSION} >= 500000 + @${REINPLACE_CMD} -E \ + -e 's|(-lSDL)|${PTHREAD_LIBS} \1|' \ + ${WRKSRC}/player/src/Makefile \ + ${WRKSRC}/util/yuv/Makefile \ + ${WRKSRC}/util/iptv/Makefile +#.endif post-install: .ifndef(NOPORTDOCS) |