summaryrefslogtreecommitdiff
path: root/mk/features/features-vars.mk
diff options
context:
space:
mode:
Diffstat (limited to 'mk/features/features-vars.mk')
-rw-r--r--mk/features/features-vars.mk82
1 files changed, 82 insertions, 0 deletions
diff --git a/mk/features/features-vars.mk b/mk/features/features-vars.mk
new file mode 100644
index 00000000000..bed2d0b7fac
--- /dev/null
+++ b/mk/features/features-vars.mk
@@ -0,0 +1,82 @@
+# $NetBSD: features-vars.mk,v 1.1 2007/09/07 21:55:46 jlam Exp $
+#
+# This file is include by bsd.prefs.mk.
+#
+# Package-settable variables:
+#
+# USE_FEATURES
+# Lists the system features required by the package.
+#
+# Default value: undefined
+#
+# Variables defined by this file:
+#
+# MISSING_FEATURES
+# The features listed in USE_FEATURES that are missing on the
+# current system. Also includes "inet6" if the system doesn't
+# support IPv6.
+#
+
+MISSING_FEATURES= # empty
+
+#
+# Handle "inet6" feature specially -- we always add it to
+# MISSING_FEATURES if the operating system doesn't support IPv6,
+# regardless of whether or not "inet6" is a requested feature
+# in USE_FEATURES.
+#
+.if defined(_OPSYS_HAS_INET6) && empty(_OPSYS_HAS_INET6:M[nN][oO])
+MISSING_FEATURES+= inet6
+.endif
+
+.for _feature_ in err warn
+. if defined(USE_FEATURES) && !empty(USE_FEATURES:M${_feature_})
+. if (${OPSYS} != NetBSD) && (${OPSYS} != FreeBSD) && (${OPSYS} != DragonFly)
+MISSING_FEATURES+= ${_feature_}
+. endif
+. endif
+.endfor
+
+.if defined(USE_FEATURES) && !empty(USE_FEATURES:Mgetopt_long)
+. if !exists(/usr/include/getopt.h)
+MISSING_FEATURES+= getopt_long
+. endif
+.endif
+
+.for _feature_ in getprogname setprogname
+. if defined(USE_FEATURES) && !empty(USE_FEATURES:M${_feature_})
+. if (${OPSYS} != NetBSD) && (${OPSYS} != FreeBSD) && (${OPSYS} != DragonFly)
+MISSING_FEATURES+= ${_feature_}
+. endif
+. endif
+.endfor
+
+.if defined(USE_FEATURES) && !empty(USE_FEATURES:Mglob)
+. if !exists(/usr/include/glob.h)
+MISSING_FEATURES+= glob
+. endif
+.endif
+
+.if defined(USE_FEATURES) && !empty(USE_FEATURES:Mregex)
+. if !exists(/usr/include/regex.h)
+MISSING_FEATURES+= regex
+. endif
+.endif
+
+.for _feature_ in snprintf vsnprintf
+. if defined(USE_FEATURES) && !empty(USE_FEATURES:M${_feature_})
+. if !empty(LOWER_OPSYS:Mirix5*)
+MISSING_FEATURES+= snprintf
+. endif
+. endif
+.endfor
+
+.if defined(USE_FEATURES) && !empty(USE_FEATURES:Mutimes)
+. if ${OPSYS} == "Interix"
+MISSING_FEATURES+= utimes
+. endif
+.endif
+
+.if defined(USE_FEATURES) && !empty(USE_FEATURES:Mnbcompat)
+MISSING_FEATURES+= nbcompat
+.endif