diff options
author | jmc <jmc> | 2003-03-08 03:05:39 +0000 |
---|---|---|
committer | jmc <jmc> | 2003-03-08 03:05:39 +0000 |
commit | b0f26bfa5bb075a3561accb05000997b8c655e9a (patch) | |
tree | a0d9e78c126080df6f1a05ab11f0a11b676aeedc /emulators | |
parent | c5665f64374d98e4b92a14b4acd9007b6e3a7dcb (diff) | |
download | pkgsrc-b0f26bfa5bb075a3561accb05000997b8c655e9a.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} |