pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/ncurses devel/ncurses: fix broken string compari...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f3b94f58f48c
branches:  trunk
changeset: 319551:f3b94f58f48c
user:      gutteridge <gutteridge%pkgsrc.org@localhost>
date:      Thu Feb 14 22:59:49 2019 +0000

description:
devel/ncurses: fix broken string comparison in Makefile.common

Revision 1.38 introduced an invalid check, fix it.

diffstat:

 devel/ncurses/Makefile.common |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 31d451f0e1b3 -r f3b94f58f48c devel/ncurses/Makefile.common
--- a/devel/ncurses/Makefile.common     Thu Feb 14 20:54:17 2019 +0000
+++ b/devel/ncurses/Makefile.common     Thu Feb 14 22:59:49 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.38 2019/02/12 20:11:22 triaxx Exp $
+# $NetBSD: Makefile.common,v 1.39 2019/02/14 22:59:49 gutteridge Exp $
 #
 # used by devel/ncurses/Makefile
 # used by devel/ncursesw/Makefile
@@ -55,7 +55,8 @@
 # Additionally, Interix is special, see ../../mk/curses.buildlink3.mk
 .  if !(exists(/usr/include/curses.h) || exists(/usr/include/ncurses.h)) || \
        ${OPSYS} == "Interix" || \
-       (${OPSYS} == "FreeBSD" && ${OS_VERSION} >= 12)
+       (${OPSYS} == "FreeBSD" && empty(OS_VERSION:M[0-9].*) && \
+               empty(OS_VERSION:M1[01].*))
 # None was available, so disable use of tbl(1)
 USE_TOOLS:=            ${USE_TOOLS:Ntbl}
 CONFIGURE_ARGS+=       --without-manpage-tbl



Home | Main Index | Thread Index | Old Index