Brian Callahan <[email protected]> wrote: > Here's a fix for ee after the Libcompat fallout. What this patch does is > use our curses instead of ee's included subset of curses.
FreeBSD, which has ee in base, also builds it against the system curses. > +@@ -180,8 +185,8 @@ then > + TARGET="curses" > + curses="" > + else > +- curses="-DNCURSE" > +- TARGET="ee" > ++ curses="-DHAS_NCURSES" > ++ TARGET="curses" > + fi Hmm, that else branch isn't taken: cc ee.c -o ee -DSYSCONFDIR="\"/etc\"" -DCAP -DBSD_SELECT -DHAS_UNISTD -DHAS_STDARG -DHAS_STDLIB -DHAS_CTYPE -DHAS_SYS_IOCTL -DHAS_SYS_WAIT -DSLCT_HDR -O2 -pipe -s -DTERMCAP="\"/usr/share/misc/termcap\"" -lcurses That doesn't make a difference in our case, but I assume it wasn't your intention. -- Christian "naddy" Weisgerber [email protected]
