summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2008-05-26 17:48:27 +0000
committertnn <tnn@pkgsrc.org>2008-05-26 17:48:27 +0000
commita80aa4a4fd1ae7bf22e077fc488d9829a82c0026 (patch)
tree14cf87fd58bce4ba1c92d1e5dee7d27891c5aff5 /mk
parenteebc3fba44c74dab0e0e2e9b52480aa00fb948e9 (diff)
downloadpkgsrc-a80aa4a4fd1ae7bf22e077fc488d9829a82c0026.tar.gz
Depend on nbcompat for getopt_long on OSF1.
XXX bandaid to get groff to build, will be fixed differently with the (still vaporware) new features framework ...
Diffstat (limited to 'mk')
-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 71c6d3d8999..331f2d2b761 100644
--- a/mk/features/features-vars.mk
+++ b/mk/features/features-vars.mk
@@ -1,4 +1,4 @@
-# $NetBSD: features-vars.mk,v 1.17 2008/02/21 14:08:48 tnn Exp $
+# $NetBSD: features-vars.mk,v 1.18 2008/05/26 17:48:27 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
@@ -104,7 +104,7 @@ MISSING_FEATURES+= ${_feature_}
.for _feature_ in getopt_long
. if !empty(USE_FEATURES:M${_feature_})
-. if !exists(/usr/include/getopt.h) || ${OPSYS} == "IRIX"
+. if !exists(/usr/include/getopt.h) || ${OPSYS} == "IRIX" || ${OPSYS} == "OSF1"
MISSING_FEATURES+= ${_feature_}
. endif
. endif