Add a catch-all for SunOS to force using the pkgsrc versions of the
software instead of any base system version. This match is probably too broad, but better to err on the safe side. We can narrow down the match when we have better information. Closes pkg/17775 by Julien T. Letessier <julien.letessier at sun dot com>.
This commit is contained in:
parent
e82baf51e2
commit
f21ae53323
3 changed files with 21 additions and 5 deletions
|
@ -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_})
|
||||
|
|
|
@ -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_})
|
||||
|
|
|
@ -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_})
|
||||
|
|
Loading…
Reference in a new issue