diff options
author | mezz <mezz@FreeBSD.org> | 2006-09-01 02:14:56 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2006-09-01 02:14:56 +0800 |
commit | 9ab2d0a86c73eec3dd1b1a9579379a06cb534328 (patch) | |
tree | 1bce0b086d46ede37bb49dc3a10b65df1b3e3115 /audio/faad | |
parent | 4d74378bdf999bd3c16e0a5df7fbcb19b7cce69a (diff) | |
download | freebsd-ports-gnome-9ab2d0a86c73eec3dd1b1a9579379a06cb534328.tar.gz freebsd-ports-gnome-9ab2d0a86c73eec3dd1b1a9579379a06cb534328.tar.zst freebsd-ports-gnome-9ab2d0a86c73eec3dd1b1a9579379a06cb534328.zip |
Fix the build on FreeBSD 4.x.
PR: ports/102572
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Diffstat (limited to 'audio/faad')
-rw-r--r-- | audio/faad/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/faad/Makefile b/audio/faad/Makefile index 3949b746b04e..205a85ea7c80 100644 --- a/audio/faad/Makefile +++ b/audio/faad/Makefile @@ -32,9 +32,9 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ .include <bsd.port.pre.mk> -.if ${OSVERSION} < 500000 -BROKEN= Does not build -.endif +post-patch: + @${REINPLACE_CMD} -e 's|<stdint\.h>|<inttypes.h>|g' \ + ${WRKSRC}/common/mp4ff/mp4ff_int_types.h pre-configure: ${MKDIR} ${WRKSRC}/plugins/bmp |