summaryrefslogtreecommitdiff
path: root/mk/features
diff options
context:
space:
mode:
authortnn <tnn>2008-02-21 01:36:28 +0000
committertnn <tnn>2008-02-21 01:36:28 +0000
commit2b87c2200d70f9cd3c07c7c66472c36380f84d8c (patch)
treeb3753c9306de8d422ba9f6c95aa30540f55a2938 /mk/features
parent11d68feb38c1958b11d27f1334ddea623d2335ad (diff)
downloadpkgsrc-2b87c2200d70f9cd3c07c7c66472c36380f84d8c.tar.gz
HPUX 11.11, like IRIX, doesn't have standards compliant (v)snprintf.
Diffstat (limited to 'mk/features')
-rw-r--r--mk/features/features-vars.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/features/features-vars.mk b/mk/features/features-vars.mk
index b93ed092670..277a6979264 100644
--- a/mk/features/features-vars.mk
+++ b/mk/features/features-vars.mk
@@ -1,4 +1,4 @@
-# $NetBSD: features-vars.mk,v 1.15 2008/01/14 23:06:26 tnn Exp $
+# $NetBSD: features-vars.mk,v 1.16 2008/02/21 01:36:28 tnn Exp $
#
# The platforms that are supported by pkgsrc differ in the amount of
# functions they provide in the C library (libc). Functions that are
@@ -144,7 +144,7 @@ MISSING_FEATURES+= ${_feature_}
.for _feature_ in snprintf vsnprintf
. if !empty(USE_FEATURES:M${_feature_})
-. if ${OPSYS} == "IRIX"
+. if ${OPSYS} == "IRIX" || !empty(MACHINE_PLATFORM:MHPUX-11.11-hppa)
MISSING_FEATURES+= ${_feature_}
. endif
. endif