diff options
author | wiz <wiz@pkgsrc.org> | 2016-12-31 14:16:14 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2016-12-31 14:16:14 +0000 |
commit | 7698b0ec467db55af0cbf189dbeb1e78c840b68e (patch) | |
tree | 9508c5a431371157b0cdfa909f19e7eb6def5216 /editors/emacs24 | |
parent | e82b1502e00d4e0b05477f6990bb0455a3b2d33c (diff) | |
download | pkgsrc-7698b0ec467db55af0cbf189dbeb1e78c840b68e.tar.gz |
Remove special case for DragonFly (termcap vs curses).
Not needed any longer, tested with emacs25-nox11 on monster; others
copy look quite the same.
I suspect this is not needed on FreeBSD, OpenBSD, or Linux either, but
don't have test hosts.
Diffstat (limited to 'editors/emacs24')
-rw-r--r-- | editors/emacs24/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/emacs24/Makefile.common b/editors/emacs24/Makefile.common index 096e8b5f3db..ebe09a2da8f 100644 --- a/editors/emacs24/Makefile.common +++ b/editors/emacs24/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.13 2016/12/03 05:00:46 marino Exp $ +# $NetBSD: Makefile.common,v 1.14 2016/12/31 14:16:14 wiz Exp $ # # used by editors/emacs24/Makefile # used by editors/emacs24-nox11/Makefile @@ -68,7 +68,7 @@ fake-libgcc: .if (${OPSYS} == "NetBSD") && exists(/usr/include/term.h) CPPFLAGS+= -DTERMINFO -.elif ${OPSYS} == "DragonFly" || ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" || ${OPSYS} == "OpenBSD" +.elif ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" || ${OPSYS} == "OpenBSD" .include "../../mk/curses.buildlink3.mk" .else .include "../../mk/termcap.buildlink3.mk" |