aboutsummaryrefslogtreecommitdiff
path: root/lib/ncurses/form
diff options
context:
space:
mode:
authorRong-En Fan <rafan@FreeBSD.org>2007-05-25 02:27:46 +0000
committerRong-En Fan <rafan@FreeBSD.org>2007-05-25 02:27:46 +0000
commit4409495bc80e5168216d5900fac8ff1d84482f7a (patch)
tree143a56ecfc4605eb0e38e844ac854eb50212ed7e /lib/ncurses/form
parentfdd54a53de43774874b7d1db17811a530c28fa76 (diff)
downloadsrc-4409495bc80e5168216d5900fac8ff1d84482f7a.tar.gz
src-4409495bc80e5168216d5900fac8ff1d84482f7a.zip
- When I introduce wide character enabled ncurses into base, all headers
are installed twice (once in non-widec version, onec in widec version). Headers with widec enabled are compatible with non-widec version for libraries. However, if you do a repeat build/install, the curses.h is always overwritten. The reason is that headers and statics libraries are installed with -S option to preserve their mtime if no actual changes, which saves time when doing incremental builds. The curses.h is installed by non-widec ncurses first, then by widec ncurses. So next time, it happens again. You see something like this: # pwd /usr/src/lib/ncurses # make -s installincludes INSTALL="install -v" ===> ncurses (installincludes) install: curses.h -> /usr/include/curses.h ===> ncursesw (installincludes) install: curses.h -> /usr/include/curses.h # make -s installincludes INSTALL="install -v" ===> ncurses (installincludes) install: curses.h -> /usr/include/curses.h ===> ncursesw (installincludes) install: curses.h -> /usr/include/curses.h The solution is to disable installing headers in non-widec version. Now you see this: # pwd /usr/src/lib/ncurses # make -s installincludes INSTALL="install -v" ===> ncurses (installincludes) ===> ncursesw (installincludes) # make -s installincludes INSTALL="install -v" ===> ncurses (installincludes) ===> ncursesw (installincludes) For form/panel/menu libraries, the headers are the same for both version. To be consistent with ncurses, I also disable the installation in non-widec version. Reported by: des Reviewed by: ru Thanks to: ru Approved by: delphij (mentor) MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=169971
Diffstat (limited to 'lib/ncurses/form')
-rw-r--r--lib/ncurses/form/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ncurses/form/Makefile b/lib/ncurses/form/Makefile
index faeb973e28d3..fe89d4546aac 100644
--- a/lib/ncurses/form/Makefile
+++ b/lib/ncurses/form/Makefile
@@ -57,7 +57,9 @@ CFLAGS+= -I${NCURSES_DIR}/menu
DPADD= ${LIBNCURSES${LIB_SUFFIX:U}}
LDADD= -lncurses${LIB_SUFFIX}
+.if defined(ENABLE_WIDEC)
INCS= form.h
+.endif
.PATH: ${NCURSES_DIR}/man
MAN= \