diff options
author | hauke <hauke@pkgsrc.org> | 2017-06-12 09:34:12 +0000 |
---|---|---|
committer | hauke <hauke@pkgsrc.org> | 2017-06-12 09:34:12 +0000 |
commit | fde13f9af49fe733d8bd10f626b868ee9794d9d1 (patch) | |
tree | 25ee8eb98abbe69a6fc1f6b2cf0740e5d012eb77 /editors/xemacs | |
parent | 1401987ecd8efb2f2e8ae6989828b3fdfc4fb1dc (diff) | |
download | pkgsrc-fde13f9af49fe733d8bd10f626b868ee9794d9d1.tar.gz |
Terminfo issue applies to FreeBSD, too.
Diffstat (limited to 'editors/xemacs')
-rw-r--r-- | editors/xemacs/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/xemacs/Makefile.common b/editors/xemacs/Makefile.common index 4e176dae4f2..5341d401a74 100644 --- a/editors/xemacs/Makefile.common +++ b/editors/xemacs/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.23 2017/01/24 20:31:14 hauke Exp $ +# $NetBSD: Makefile.common,v 1.24 2017/06/12 09:34:12 hauke Exp $ # # used by editors/xemacs-nox11/Makefile # used by editors/xemacs/Makefile @@ -48,7 +48,7 @@ CFLAGS+= -Dunix # Use terminfo on NetBSD-6 and newer. # We cannot use terminfo.*.mk as XEmacs enforces a link to termcap, # but this is fine for us. -.if (${OPSYS} == "NetBSD") && exists(/usr/include/term.h) +.if (${OPSYS} == "NetBSD" || ${OPSYS} == "FreeBSD") && exists(/usr/include/term.h) CPPFLAGS+= -DTERMINFO .endif |