X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.156]) by lists.alpinelinux.org (Postfix) with ESMTP id 2FC94170000BA for ; Tue, 3 Mar 2009 14:56:30 +0000 (UTC) Received: by fg-out-1718.google.com with SMTP id 16so83217fgg.25 for ; Tue, 03 Mar 2009 06:56:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:content-type :date:message-id:mime-version:x-mailer:content-transfer-encoding; bh=KuyEFsuYau912cycwQxPu4tMPO7U0iO898FBZVV3AOg=; b=oDBZRHRgqlb8Lq8X3Ll/cWZSi64eWGZppmP9P7MrLe8/1gdfehQgyCjjU8YWZrg6pI CJYpbvm8YAEeyh3hwprJ+/mxCtdL3HIkdCmVeu7EFmawmWbLhwFipUjmUlCroeY6vjwd kAePsXcQT1cKx4OQ8TIsZoiKYnc+pwyUKhWww= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; b=LU9+qB0kU7U+QfwLPqgGsqhVif2dAdkjGKX+Vg273Sl2MwJwqmngVF8lsOYyh79/Lv EdOx78kHux5ALB63OBK0dx7RHhJxRmUx5Y35kIcP5vL2Rs01Pvb0Y/JjI4+FPb8w/lrq EzcLmlLQJ2rO+oVHPsb7LEH2sfDkogBLYMcx8= Received: by 10.86.65.9 with SMTP id n9mr2720222fga.55.1236092188743; Tue, 03 Mar 2009 06:56:28 -0800 (PST) Received: from ?10.65.65.1? (149-182-13.oke2-bras2.adsl.tele2.no [90.149.182.13]) by mx.google.com with ESMTPS id 4sm714968fgg.19.2009.03.03.06.56.27 (version=SSLv3 cipher=RC4-MD5); Tue, 03 Mar 2009 06:56:28 -0800 (PST) Subject: [alpine-devel] suggestion to fcgi From: Natanael Copa To: Alpine Developers Content-Type: text/plain Date: Tue, 03 Mar 2009 15:56:26 +0100 Message-Id: <1236092186.32434.21.camel@nc> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Mime-Version: 1.0 X-Mailer: Evolution 2.24.4 Content-Transfer-Encoding: 7bit Carlo, does the patch below look ok to you? If its ok for you I'll commit it. Thanks! diff --git a/extra/fcgi/APKBUILD b/extra/fcgi/APKBUILD index ff619df..fc20800 100644 --- a/extra/fcgi/APKBUILD +++ b/extra/fcgi/APKBUILD @@ -21,22 +21,17 @@ build() { patch -p1 < $i || return 1 done - # not sure how to use autotools for this apk - # Removed makefile patch and added libs -lm - #aclocal || return 1 - #autoconf || return 1 - # add missing files so automake doesnt error - #touch NEWS AUTHORS ChangeLog || return 1 - #automake --add-missing || return 1 - #libtoolize || return 1 export LIBS="$LIBS -lm" + # seems like there is no way to disable c++ from configure script + # the row below helps us to build even if g++ is installed on system + export CXX=false + ./configure --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ - --enable-shared \ - --enable-static + --enable-shared make || return 1 make DESTDIR="$pkgdir" install --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---