summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archivers/bzip2/buildlink.mk9
-rw-r--r--devel/ncurses/buildlink.mk8
-rw-r--r--devel/readline/buildlink.mk9
3 files changed, 21 insertions, 5 deletions
diff --git a/archivers/bzip2/buildlink.mk b/archivers/bzip2/buildlink.mk
index 4c7e3b8820c..898dfa41ee6 100644
--- a/archivers/bzip2/buildlink.mk
+++ b/archivers/bzip2/buildlink.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink.mk,v 1.7 2002/08/07 06:10:32 jlam Exp $
+# $NetBSD: buildlink.mk,v 1.8 2002/08/07 19:29:29 jlam Exp $
#
# This Makefile fragment is included by packages that use bzip2.
#
@@ -35,7 +35,12 @@ _NEED_BZIP2= YES
. else
_NEED_BZIP2= NO
. endif
-_INCOMPAT_BZIP2?= # should be set from defs.${OPSYS}.mk
+#
+# This catch-all for SunOS is probably too broad, but better to err on
+# the safe side. We can narrow down the match when we have better
+# information.
+#
+_INCOMPAT_BZIP2= SunOS-*-*
INCOMPAT_BZIP2?= # empty
. for _pattern_ in ${_INCOMPAT_BZIP2} ${INCOMPAT_BZIP2}
. if !empty(MACHINE_PLATFORM:M${_pattern_})
diff --git a/devel/ncurses/buildlink.mk b/devel/ncurses/buildlink.mk
index 80325b14729..29d33cf7b7d 100644
--- a/devel/ncurses/buildlink.mk
+++ b/devel/ncurses/buildlink.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink.mk,v 1.19 2002/08/07 06:10:33 jlam Exp $
+# $NetBSD: buildlink.mk,v 1.20 2002/08/07 19:29:30 jlam Exp $
#
# This Makefile fragment is included by packages that use ncurses.
#
@@ -31,6 +31,12 @@ _NEED_NCURSES= NO
#
_INCOMPAT_CURSES= NetBSD-0.*-* NetBSD-1.[0123]*-*
_INCOMPAT_CURSES+= NetBSD-1.4.*-* NetBSD-1.4[A-X]-*
+#
+# This catch-all for SunOS is probably too broad, but better to err on
+# the safe side. We can narrow down the match when we have better
+# information.
+#
+_INCOMPAT_CURSES+= SunOS-*-*
INCOMPAT_CURSES?= # empty
. for _pattern_ in ${_INCOMPAT_CURSES} ${INCOMPAT_CURSES}
. if !empty(MACHINE_PLATFORM:M${_pattern_})
diff --git a/devel/readline/buildlink.mk b/devel/readline/buildlink.mk
index 6f63ca64f38..6424de84007 100644
--- a/devel/readline/buildlink.mk
+++ b/devel/readline/buildlink.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink.mk,v 1.18 2002/08/07 06:10:34 jlam Exp $
+# $NetBSD: buildlink.mk,v 1.19 2002/08/07 19:29:30 jlam Exp $
#
# This Makefile fragment is included by packages that use readline().
#
@@ -31,7 +31,12 @@ _NEED_GNU_READLINE= NO
. else
_NEED_GNU_READLINE= YES
. endif
-_INCOMPAT_READLINE?= # should be set from defs.${OPSYS}.mk
+#
+# This catch-all for SunOS is probably too broad, but better to err on
+# the safe side. We can narrow down the match when we have better
+# information.
+#
+_INCOMPAT_READLINE= SunOS-*-*
INCOMPAT_READLINE?= # empty
. for _pattern_ in ${_INCOMPAT_READLINE} ${INCOMPAT_READLINE}
. if !empty(MACHINE_PLATFORM:M${_pattern_})