diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2004-03-20 02:10:44 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2004-03-20 02:10:44 +0000 |
commit | e81325906f690374f4a39660b5880e2d6fb4772b (patch) | |
tree | 622c93832b47cff2db297046a74139eb22b2c37f /multimedia/mpeg4ip | |
parent | d686d285182ce1fc5626d982c41f8a0b1c99706a (diff) | |
download | ports-e81325906f690374f4a39660b5880e2d6fb4772b.tar.gz ports-e81325906f690374f4a39660b5880e2d6fb4772b.zip |
Notes
Diffstat (limited to 'multimedia/mpeg4ip')
-rw-r--r-- | multimedia/mpeg4ip/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/multimedia/mpeg4ip/Makefile b/multimedia/mpeg4ip/Makefile index d9992b646339..e0728bfcb594 100644 --- a/multimedia/mpeg4ip/Makefile +++ b/multimedia/mpeg4ip/Makefile @@ -92,18 +92,17 @@ post-extract: .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 502102 -BROKEN= "Does not compile" -.endif - post-patch: @${FIND} ${WRKSRC} -type f -name "*.[ch]" -or -name "*.cpp" | ${XARGS} -n 10 \ ${REINPLACE_CMD} -e \ - 's|stdint\.h|inttypes.h|;s|malloc\.h|stdlib.h|' + 's|<stdint.h>|<inttypes.h>|; \ + s|<malloc.h>|<stdlib.h>|; \ + s|<strstream.h>|<iostream>|' # replacing distfile's libs with ports' versions # CFLAGS safeness @${REINPLACE_CMD} -E -e 's|lib/SDL/sdl-config|${SDL_CONFIG}|; \ - s|^(SDL_LIBS=).+$$|\1"`${SDL_CONFIG} --libs`"|' \ + s|^(SDL_LIBS=).+$$|\1"`${SDL_CONFIG} --libs`"|; \ + s|-Wmissing-declarations||' \ ${CONFIGURE_WRKSRC}/configure @${FIND} ${WRKSRC} -type f -name "Makefile.in" | ${XARGS} \ -n 10 ${REINPLACE_CMD} -E -e \ |