diff options
author | tnn <tnn@pkgsrc.org> | 2008-02-21 01:36:28 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2008-02-21 01:36:28 +0000 |
commit | 42076f6a8317b9a99acb97c8919a52102e7c3338 (patch) | |
tree | b3753c9306de8d422ba9f6c95aa30540f55a2938 /mk/features | |
parent | 060d68d9ac473237cd4e7c4d24a7aa9c96b7c746 (diff) | |
download | pkgsrc-42076f6a8317b9a99acb97c8919a52102e7c3338.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.mk | 4 |
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 |