diff options
author | arved <arved@FreeBSD.org> | 2003-11-21 03:13:28 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2003-11-21 03:13:28 +0800 |
commit | 36dbcec492efb2ff7164354113e01e7c3dc47f10 (patch) | |
tree | b261328cd9431adb9ae8365aae559783925efd74 /games/taxipilot | |
parent | a259da5aca802d00411d8fa5db238b58eb4fa156 (diff) | |
download | freebsd-ports-gnome-36dbcec492efb2ff7164354113e01e7c3dc47f10.tar.gz freebsd-ports-gnome-36dbcec492efb2ff7164354113e01e7c3dc47f10.tar.zst freebsd-ports-gnome-36dbcec492efb2ff7164354113e01e7c3dc47f10.zip |
Unbreak on 4.x 3rd try.
Diffstat (limited to 'games/taxipilot')
-rw-r--r-- | games/taxipilot/Makefile | 10 | ||||
-rw-r--r-- | games/taxipilot/files/patch-acinclude.m4 | 11 | ||||
-rw-r--r-- | games/taxipilot/files/patch-timemanager.h | 15 |
3 files changed, 28 insertions, 8 deletions
diff --git a/games/taxipilot/Makefile b/games/taxipilot/Makefile index b5acf7d5feef..e03b21246e65 100644 --- a/games/taxipilot/Makefile +++ b/games/taxipilot/Makefile @@ -16,15 +16,9 @@ COMMENT= A Spacetaxi clone LIB_DEPENDS= noatun.0:${PORTSDIR}/multimedia/kdemultimedia3 USE_KDELIBS_VER= 3 -GNU_CONFIGURE= yes +USE_AUTOMAKE= yes CONFIGURE_TARGET= CONFIGURE_ARGS+=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_GMAKE= yes -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 500028 -BROKEN= "Does not build on 4.x" -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/games/taxipilot/files/patch-acinclude.m4 b/games/taxipilot/files/patch-acinclude.m4 new file mode 100644 index 000000000000..fb1332479bbd --- /dev/null +++ b/games/taxipilot/files/patch-acinclude.m4 @@ -0,0 +1,11 @@ +--- admin/acinclude.m4.in.orig Thu Nov 20 19:35:08 2003 ++++ admin/acinclude.m4.in Thu Nov 20 19:35:27 2003 +@@ -2937,7 +2937,7 @@ + AC_REQUIRE([AC_FUNC_ALLOCA])dnl + AC_REQUIRE([AC_FUNC_MMAP])dnl + AC_REQUIRE([AM_KDE_WITH_NLS])dnl +- AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h string.h values.h alloca.h]) ++ AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h string.h values.h alloca.h stdint.h]) + AC_CHECK_FUNCS([getcwd munmap putenv setenv setlocale strchr strcasecmp \ + __argz_count __argz_stringify __argz_next]) + diff --git a/games/taxipilot/files/patch-timemanager.h b/games/taxipilot/files/patch-timemanager.h new file mode 100644 index 000000000000..fc75ba7b5d5f --- /dev/null +++ b/games/taxipilot/files/patch-timemanager.h @@ -0,0 +1,15 @@ +--- taxipilot/timemanager.h.orig Wed Aug 21 11:20:40 2002 ++++ taxipilot/timemanager.h Thu Nov 20 19:19:09 2003 +@@ -19,7 +19,12 @@ + #define TIMEMANAGER_H + + #include <qobject.h> ++#ifdef HAVE_STDINT_H + #include <stdint.h> ++#else ++#include <sys/types.h> ++#define int_fast32_t int32_t ++#endif + #include <qlist.h> + + #include "timedobject.h" |