summaryrefslogtreecommitdiffstats
path: root/lib/ncurses/panel
diff options
context:
space:
mode:
authorrafan <rafan@FreeBSD.org>2007-05-25 02:27:46 +0000
committerrafan <rafan@FreeBSD.org>2007-05-25 02:27:46 +0000
commit7aa668468b36e99ca00ccaaf06a56067b4d4cc10 (patch)
tree143a56ecfc4605eb0e38e844ac854eb50212ed7e /lib/ncurses/panel
parent6ed23d60743b4281411077eaade3508ac22b6df4 (diff)
downloadFreeBSD-src-7aa668468b36e99ca00ccaaf06a56067b4d4cc10.zip
FreeBSD-src-7aa668468b36e99ca00ccaaf06a56067b4d4cc10.tar.gz
- 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
Diffstat (limited to 'lib/ncurses/panel')
-rw-r--r--lib/ncurses/panel/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ncurses/panel/Makefile b/lib/ncurses/panel/Makefile
index 1f73491..12b8b06 100644
--- a/lib/ncurses/panel/Makefile
+++ b/lib/ncurses/panel/Makefile
@@ -32,7 +32,9 @@ CFLAGS+= -I${SRCDIR}
DPADD= ${LIBNCURSES${LIB_SUFFIX:U}}
LDADD= -lncurses${LIB_SUFFIX}
+.if defined(ENABLE_WIDEC)
INCS= panel.h
+.endif
# generate MAN
.PATH: ${NCURSES_DIR}/man
OpenPOWER on IntegriCloud