diff options
author | jmc <jmc@pkgsrc.org> | 2003-03-08 03:05:39 +0000 |
---|---|---|
committer | jmc <jmc@pkgsrc.org> | 2003-03-08 03:05:39 +0000 |
commit | bcf598b1a6777930fb11f3fb27de997c265b72f8 (patch) | |
tree | a0d9e78c126080df6f1a05ab11f0a11b676aeedc /emulators | |
parent | 02a156bd9bbd9482eff0b1a596bff6f648c97812 (diff) | |
download | pkgsrc-bcf598b1a6777930fb11f3fb27de997c265b72f8.tar.gz |
Can't be used on powerpc or anything else where va_list isn't a void *. At least
right now too much code is assuming how a va_list is laid out and is trying
to construct one by hand.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/palmosemulator/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emulators/palmosemulator/Makefile b/emulators/palmosemulator/Makefile index 07a92185fa8..d4cd1fda86b 100644 --- a/emulators/palmosemulator/Makefile +++ b/emulators/palmosemulator/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2003/01/05 03:31:25 dsainty Exp $ +# $NetBSD: Makefile,v 1.5 2003/03/08 03:05:39 jmc Exp $ # DISTNAME= emulator_src_${POSE_VERSION} @@ -40,6 +40,9 @@ GNU_CONFIGURE= YES CONFIGURE_ARGS+= --with-fltk=${BUILDLINK_PREFIX.fltk} CONFIGURE_ENV+= PACKAGE_SKINS_DIR=${POSE_SKINS_DIR} +# Assumes too much about how to build va_list's from scratch +NOT_FOR_PLATFORM= *-*-powerpc + do-install: ${INSTALL_PROGRAM} ${POSE_BUILD_DIR}/pose ${PREFIX}/bin/pose ${INSTALL_DATA_DIR} ${POSE_SHARE_DIR} |