diff options
author | obache <obache@pkgsrc.org> | 2014-05-18 08:38:07 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-05-18 08:38:07 +0000 |
commit | 1dacb32e642714f7aef41df8542836a9bd35a4e8 (patch) | |
tree | ae774b65950665ae6302beb97a9abb9faa19e4a1 /mk | |
parent | 24d854e9bb6355dccebe9b8f699316174a6e5959 (diff) | |
download | pkgsrc-1dacb32e642714f7aef41df8542836a9bd35a4e8.tar.gz |
Haiku also has getprogname(3)/setprogname(3).
noticed by diger in pkgsrc-users@.
Diffstat (limited to 'mk')
-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 2cc50c7da3e..b71c91c9618 100644 --- a/mk/features/features-vars.mk +++ b/mk/features/features-vars.mk @@ -1,4 +1,4 @@ -# $NetBSD: features-vars.mk,v 1.21 2013/11/26 07:04:55 obache Exp $ +# $NetBSD: features-vars.mk,v 1.22 2014/05/18 08:38:07 obache Exp $ # # The platforms that are supported by pkgsrc differ in the amount of # functions they provide in the C library (libc). Functions that are @@ -133,7 +133,7 @@ MISSING_FEATURES+= ${_feature_} .for _feature_ in getprogname setprogname . if !empty(USE_FEATURES:M${_feature_}) -. if (${OPSYS} != NetBSD) && (${OPSYS} != FreeBSD) && (${OPSYS} != DragonFly) +. if (${OPSYS} != NetBSD) && (${OPSYS} != FreeBSD) && (${OPSYS} != DragonFly) && (${OPSYS} != Haiku) MISSING_FEATURES+= ${_feature_} . endif . endif |