X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 43735DC128D for ; Thu, 27 Jun 2013 06:12:44 +0000 (UTC) Received: from compute4.internal (compute4.nyi.mail.srv.osa [10.202.2.44]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 823D520C39 for ; Thu, 27 Jun 2013 02:12:41 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute4.internal (MEProxy); Thu, 27 Jun 2013 02:12:41 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id; s= smtpout; bh=207WtY3YtDZATefRxzUX1GCxeCU=; b=A8H6RG6btqcvDGKEU92j A4lquM7ypQUVZaALZLz45gplLL/U7q9hXueKEiWWg1QxnhEEawrKlVy/Nfy7oT3+ zHb0Udl6Elj8Z6LdTAKRtDApuw2m4XTvDxI4wzDukbhi1tdeGiQl89dTkB3fcy9G xPlI9u2CL/ey+TdyqLWQPrA= X-Sasl-enc: gRErGB9ANaXWtMDdTmp5Z0KAHveuSwxY3eSXFNQfnUWT 1372313561 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id 5116368024E for ; Thu, 27 Jun 2013 02:12:41 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH] main/ncurses: fix config option Date: Thu, 27 Jun 2013 02:12:41 -0400 Message-Id: <99de4d9cb61bc13f920f173a4d6fc1d48994fa67.1372313560.git.dubiousjim@gmail.com> X-Mailer: git-send-email 1.8.3.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: We had --disable-ada, which is in fact ignored (check the config.status). The correct option here is --without-ada. --- main/ncurses/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/ncurses/APKBUILD b/main/ncurses/APKBUILD index 1e3d419..c73d841 100644 --- a/main/ncurses/APKBUILD +++ b/main/ncurses/APKBUILD @@ -13,7 +13,7 @@ subpackages="$pkgname-dev $pkgname-doc $pkgname-base $pkgname-terminfo build() { local _confopts="--mandir=/usr/share/man - --disable-ada + --without-ada --disable-termcap --without-cxx-binding --with-terminfo-dirs="/etc/terminfo:/usr/share/terminfo" -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---