pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/readline



Module Name:    pkgsrc
Committed By:   marino
Date:           Thu Nov 24 23:35:19 UTC 2016

Modified Files:
        pkgsrc/devel/readline: Makefile

Log Message:
devel/readline: On DragonFly, uses ncurses instead of termcap

There is no termcap library available in any form on DragonFly.
Discussed with wiz@.


To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 pkgsrc/devel/readline/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/readline/Makefile
diff -u pkgsrc/devel/readline/Makefile:1.64 pkgsrc/devel/readline/Makefile:1.65
--- pkgsrc/devel/readline/Makefile:1.64 Sun Nov 20 01:14:21 2016
+++ pkgsrc/devel/readline/Makefile      Thu Nov 24 23:35:19 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.64 2016/11/20 01:14:21 dholland Exp $
+# $NetBSD: Makefile,v 1.65 2016/11/24 23:35:19 marino Exp $
 
 READLINE_VERSION=      7.0
 
@@ -24,5 +24,10 @@ CONFIGURE_ENV.NetBSD+=       bash_cv_wcwidth_b
 BUILD_TARGET=          everything-libtool
 INSTALL_TARGET=                install-libtool
 
+.if ${OPSYS} == "DragonFly"
+CONFIGURE_ARGS+=       --with-curses=yes
+.include "../../mk/curses.buildlink3.mk"
+.else
 .include "../../mk/termcap.buildlink3.mk"
+.endif
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index