X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.tetrasec.net (mx1.tetrasec.net [74.117.190.25]) by lists.alpinelinux.org (Postfix) with ESMTP id 9E4725C5122 for ; Thu, 3 Aug 2017 13:21:26 +0000 (GMT) Received: from mx1.tetrasec.net (mail.local [127.0.0.1]) by mx1.tetrasec.net (Postfix) with ESMTP id 6DD9D9E26C5; Thu, 3 Aug 2017 13:21:26 +0000 (GMT) Received: from ncopa-desktop.copa.dup.pw (15.63.200.37.customer.cdi.no [37.200.63.15]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: n@tanael.org) by mx1.tetrasec.net (Postfix) with ESMTPSA id 8898E9E0357; Thu, 3 Aug 2017 13:21:25 +0000 (GMT) Date: Thu, 3 Aug 2017 15:21:20 +0200 From: Natanael Copa To: Nathan Angelacos Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] community/lua-hiredis Message-ID: <20170803152120.227f7e18@ncopa-desktop.copa.dup.pw> In-Reply-To: <20170731235439.9492-1-nangel@alpinelinux.org> References: <20170731235439.9492-1-nangel@alpinelinux.org> X-Mailer: Claws Mail 3.15.0-dirty (GTK+ 2.24.31; x86_64-alpine-linux-musl) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Mon, 31 Jul 2017 19:54:39 -0400 Nathan Angelacos wrote: > APKBUILD: hiredis.so now loads correctly > 0003-: spell compatibility correctly > 0004-: add backward compatibility define for luaL_checkint for Lua 5.3+ > --- ... > @@ -53,21 +57,16 @@ _split() { > cd "$srcdir"/$pkgname-$_ver || return 1 > pkgdesc="$pkgdesc (Lua $_ver)" > install_if="lua$_ver $pkgname=$pkgver-r$pkgrel" > - ${CC:-gcc} ${CFLAGS} $(pkg-config --cflags hiredis) \ > - $(pkg-config --cflags lua$_ver) -shared -fPIC \ > + ${CC:-gcc} src/lua-hiredis.c ${CFLAGS} -shared -fPIC \ > + $(pkg-config --cflags hiredis lua$_ver) \ > + $(pkg-config --libs hiredis lua$_ver) \ > -I/usr/include/lua$_ver -I/usr/include/hiredis \ > - -lhiredis -o hiredis.so src/lua-hiredis.c \ > - || return 1 > + -o hiredis.so || return 1 I fixed a whitespace damage (space before EOL) and pushed. Thanks! --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---