diff options
author | arved <arved@FreeBSD.org> | 2003-07-27 12:50:48 +0000 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2003-07-27 12:50:48 +0000 |
commit | 6e329c027051ad4d1ff18e9ae303fcd8fd5fc1d1 (patch) | |
tree | ecc0c61e92735437252a53c19054ff0c232f1e9d /games/taxipilot | |
parent | 9d3a28923fe5ed66596780b52981c7808992cce1 (diff) | |
download | FreeBSD-ports-6e329c027051ad4d1ff18e9ae303fcd8fd5fc1d1.zip FreeBSD-ports-6e329c027051ad4d1ff18e9ae303fcd8fd5fc1d1.tar.gz |
There is no stdint.h in STABLE.
Submitted by: bento
Diffstat (limited to 'games/taxipilot')
-rw-r--r-- | games/taxipilot/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/games/taxipilot/Makefile b/games/taxipilot/Makefile index 05bd5cb..51ca380 100644 --- a/games/taxipilot/Makefile +++ b/games/taxipilot/Makefile @@ -20,5 +20,14 @@ GNU_CONFIGURE= yes CONFIGURE_TARGET= CONFIGURE_ARGS+=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_GMAKE= yes +USE_REINPLACE= yes -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500028 +post-patch: + ${REINPLACE_CMD} -e "s,#include <stdint.h>,," \ + ${WRKSRC}/taxipilot/timemanager.h +.endif + +.include <bsd.port.post.mk> |