diff options
author | tnn <tnn@pkgsrc.org> | 2008-05-26 17:48:27 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2008-05-26 17:48:27 +0000 |
commit | ab7d348d3aebc16cc2ba4b49fe1c35bda6e8338f (patch) | |
tree | 14cf87fd58bce4ba1c92d1e5dee7d27891c5aff5 /mk | |
parent | 1426617fb76ce1f014aaceefc337cad8424b55fd (diff) | |
download | pkgsrc-ab7d348d3aebc16cc2ba4b49fe1c35bda6e8338f.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.mk | 4 |
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 |