diff options
author | lioux <lioux@FreeBSD.org> | 2006-03-21 03:43:31 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2006-03-21 03:43:31 +0800 |
commit | ad4aadf999d3d4e44293fded601fb4ef1399362a (patch) | |
tree | 5053cca529e5aa0ea107236c9aecf21da6c82ecc | |
parent | cb92056d65dffed34933500b39904895f786434d (diff) | |
download | freebsd-ports-gnome-ad4aadf999d3d4e44293fded601fb4ef1399362a.tar.gz freebsd-ports-gnome-ad4aadf999d3d4e44293fded601fb4ef1399362a.tar.zst freebsd-ports-gnome-ad4aadf999d3d4e44293fded601fb4ef1399362a.zip |
Fix for FreeBSD 4.x branch: replace header stdint.h with inttypes.h
Reported by: kris
-rw-r--r-- | graphics/icoutils/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/graphics/icoutils/Makefile b/graphics/icoutils/Makefile index 977858d3e10e..8946d0b52292 100644 --- a/graphics/icoutils/Makefile +++ b/graphics/icoutils/Makefile @@ -37,6 +37,7 @@ post-patch: @${FIND} ${WRKSRC} -type f -print0 | \ ${XARGS} -0 -x -n 10 \ ${REINPLACE_CMD} -E \ + -e 's|stdint\.h|inttypes\.h|g' \ -e 's|/usr/bin/perl|${PERL5}|' .include <bsd.port.pre.mk> |