diff options
author | hubertf <hubertf@pkgsrc.org> | 1999-09-04 00:57:48 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1999-09-04 00:57:48 +0000 |
commit | 792bf39acd3712ada9a1cd6e0d40bd6688141938 (patch) | |
tree | 8c038c797113ba64b2bb32cde6f13478b234ac1f /devel/ncurses/Makefile | |
parent | 43a6f31bbe8800778b2d9301244128f1b6ff8d84 (diff) | |
download | pkgsrc-792bf39acd3712ada9a1cd6e0d40bd6688141938.tar.gz |
Remove --without-cxx configure option, as noted on tech-pkg a few weeks
ago. With this switch on, configure DTRT WRT the "bool" data type, resulting
in bizarre compile errors when using ncurses with c++ later:
/usr/pkg/include/ncurses.h:96: abstract declarator used as declaration
(caused by a "typedef bool;")
Diffstat (limited to 'devel/ncurses/Makefile')
-rw-r--r-- | devel/ncurses/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/ncurses/Makefile b/devel/ncurses/Makefile index 7e23528f286..6ac1e617f3e 100644 --- a/devel/ncurses/Makefile +++ b/devel/ncurses/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 1999/07/16 21:11:02 jlam Exp $ +# $NetBSD: Makefile,v 1.24 1999/09/04 00:57:48 hubertf Exp $ DISTNAME= ncurses-4.2 CATEGORIES= devel @@ -10,7 +10,7 @@ HOMEPAGE= http://www.gnu.org/software/ncurses/ncurses.html GNU_CONFIGURE= yes USE_LIBTOOL= yes -CONFIGURE_ARGS+= --with-normal --without-debug --enable-bsdpad --without-cxx +CONFIGURE_ARGS+= --with-normal --without-debug --enable-bsdpad MAKE_ENV+= NCURSES_MAJOR="${NCURSES_MAJOR}" \ NCURSES_MINOR="${NCURSES_MINOR}" |