summaryrefslogtreecommitdiff
path: root/mk/features
diff options
context:
space:
mode:
authorobache <obache>2014-05-18 08:38:07 +0000
committerobache <obache>2014-05-18 08:38:07 +0000
commit488649965341bc76cc1cc8b9594157bf9eed908d (patch)
tree65eeba8521f8f990442c399c877d82678a9c11af /mk/features
parentbb2bc691b034b8c9112800f0af66869ca349a1f2 (diff)
downloadpkgsrc-488649965341bc76cc1cc8b9594157bf9eed908d.tar.gz
Haiku also has getprogname(3)/setprogname(3).
noticed by diger in pkgsrc-users@.
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 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