diff options
author | reed <reed@pkgsrc.org> | 2003-12-03 02:14:00 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2003-12-03 02:14:00 +0000 |
commit | 2bde3ef1d3b5dcb7f3d04e9e82820a23408a93a0 (patch) | |
tree | a9366dc15324d7b6b135514e8888d715f23ba5f3 | |
parent | ace3815fc778c9ab0e33d4f761a592073204cfc4 (diff) | |
download | pkgsrc-2bde3ef1d3b5dcb7f3d04e9e82820a23408a93a0.tar.gz |
Since ncurses is not buildlinked, then make sure that
curses is not used. This is so for pkgsrc-users who have a curses
and they use LOCALBASE=/usr, it won't be detected, configured,
and built with it. (Because then could break devel/SDL build later
due to missing libncurses.la.)
The real fix is to improve the buildlink system to work
with LOCALBASE=/usr too. But this will work until that is done.
-rw-r--r-- | graphics/aalib/Makefile.common | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/graphics/aalib/Makefile.common b/graphics/aalib/Makefile.common index e04e3306b64..1a1ab4e745a 100644 --- a/graphics/aalib/Makefile.common +++ b/graphics/aalib/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.10 2003/10/26 06:50:10 grant Exp $ +# $NetBSD: Makefile.common,v 1.11 2003/12/03 02:14:00 reed Exp $ DISTNAME= aalib-${DIST_VERS} WRKSRC= ${WRKDIR}/aalib-1.4.0 @@ -18,6 +18,8 @@ GNU_CONFIGURE= YES USE_LIBTOOL= YES LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig +CONFIGURE_ARGS+= --with-curses-driver=no + .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32" USE_PKGSRC_GCC= # defined .endif |