X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id C6AACDCD9E3 for ; Mon, 29 Feb 2016 22:17:32 +0000 (UTC) Received: from lithium.8pit.net (lithium.8pit.net [81.4.121.103]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 7EE9EDC9E99; Mon, 29 Feb 2016 22:17:29 +0000 (UTC) Received: from localhost (p5DC7E38B.dip0.t-ipconnect.de [93.199.227.139]) by lithium.8pit.net (OpenSMTPD) with ESMTPSA id 107e54f6 TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Mon, 29 Feb 2016 23:17:27 +0100 (CET) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] main/gdb: use system zlib Date: Mon, 29 Feb 2016 23:17:20 +0100 Message-Id: <1456784240-11854-1-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.7.2 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/gdb/APKBUILD | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/main/gdb/APKBUILD b/main/gdb/APKBUILD index 2d90fe2..3b7b80a 100644 --- a/main/gdb/APKBUILD +++ b/main/gdb/APKBUILD @@ -1,14 +1,14 @@ # Maintainer: Natanael Copa pkgname=gdb pkgver=7.11 -pkgrel=0 +pkgrel=1 pkgdesc="The GNU Debugger" url="http://sources.redhat.com/gdb/" arch="all" license="GPL3" depends= makedepends="ncurses-dev expat-dev texinfo readline-dev python-dev - autoconf automake libtool linux-headers" + zlib-dev autoconf automake libtool linux-headers" subpackages="$pkgname-doc" source="http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz " @@ -41,6 +41,9 @@ build () { # use system readline if not cross compiling [ "$CBUILD" = "$CHOST" ] && _config="$_config --with-system-readline" + # use system zlib if not cross compiling + [ "$CBUILD" = "$CHOST" ] && _config="$_config --with-system-zlib" + # gdb server does not compile with musl [ "$CTARGET_LIBC" = musl ] && _config="$_config --disable-gdbserver" -- 2.7.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---