Date: Fri, 17 Aug 2001 13:21:59 +0300 (EEST) From: Maxim Sobolev <sobomax@freebsd.org> To: ru@freebsd.org Cc: current@freebsd.org Subject: 4-STABLE-->5-CURRENT upgrade path is b0rken in libform [patch] Message-ID: <200108171021.f7HALxG16809@vega.vega.com>
next in thread | raw e-mail | index | archive | help
--%--multipart-mixed-boundary-1.16774.998043719--% Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, Currently 4-STABLE --> 5-CURRENT upgrade path is broken in libform because it uses older curses.h header from the host system, which misses some macros necessary. Attached patch is expected to fix the problem, please review it and let me know if it is OK to commit it. -Maxim --%--multipart-mixed-boundary-1.16774.998043719--% Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Description: ASCII text Content-Disposition: attachment; filename="diff" Index: Makefile =================================================================== RCS file: /home/ncvs/src/lib/libform/Makefile,v retrieving revision 1.6 diff -d -u -r1.6 Makefile --- Makefile 2001/03/27 17:27:01 1.6 +++ Makefile 2001/08/17 10:16:24 @@ -21,8 +21,9 @@ INCS= ${NCURSES}/form/form.h CLEANFILES+= ncurses_def.h -CFLAGS+= -I. -I${.CURDIR}/../libncurses -I${NCURSES}/form -I${NCURSES}/menu \ - -I${NCURSES}/include -Wall -DNDEBUG -DHAVE_CONFIG_H +CFLAGS+= -I. -I${.CURDIR}/../libncurses -I${.OBJDIR}/../libncurses \ + -I${NCURSES}/form -I${NCURSES}/menu -I${NCURSES}/include \ + -Wall -DNDEBUG -DHAVE_CONFIG_H ncurses_def.h: MKncurses_def.sh ncurses_defs AWK=${AWK} sh ${NCURSES}/include/MKncurses_def.sh \ --%--multipart-mixed-boundary-1.16774.998043719--%-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200108171021.f7HALxG16809>