diff options
author | rillig <rillig@pkgsrc.org> | 2007-11-03 15:17:42 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-11-03 15:17:42 +0000 |
commit | c34dcea2e81f02c61d6d9492fef16788ca93c011 (patch) | |
tree | 99f4074c0d81e9f6d9c3a455c56b2e08ee80fa3b | |
parent | 814309bb19ceb32296cf14936cca875a9fbf4baa (diff) | |
download | pkgsrc-c34dcea2e81f02c61d6d9492fef16788ca93c011.tar.gz |
Clarified the comment.
-rw-r--r-- | mk/curses.buildlink3.mk | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/mk/curses.buildlink3.mk b/mk/curses.buildlink3.mk index effe14a80c6..e7e903b44c3 100644 --- a/mk/curses.buildlink3.mk +++ b/mk/curses.buildlink3.mk @@ -1,10 +1,13 @@ -# $NetBSD: curses.buildlink3.mk,v 1.4 2007/10/17 10:43:37 rillig Exp $ +# $NetBSD: curses.buildlink3.mk,v 1.5 2007/11/03 15:17:42 rillig Exp $ # # This file should be included by Makefiles for packages that use curses. -# If a system curses isn't available, then add a dependency on ncurses. +# It checks whether a native curses implementation is available, or +# otherwise adds a dependency on ncurses. # # If a package genuinely requires ncurses, then it should directly include -# ncurses/buildlink3.mk instead of this file in the package Makefile. +# ncurses/buildlink3.mk instead of this file in the package Makefile and +# additionally set USE_NCURSES=yes. +# .if !exists(/usr/include/curses.h) && \ !exists(/usr/include/ncurses.h) |