Return-Path: Delivered-To: apmail-httpd-apreq-dev-archive@www.apache.org Received: (qmail 60408 invoked from network); 4 Nov 2010 02:49:55 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 4 Nov 2010 02:49:55 -0000 Received: (qmail 18804 invoked by uid 500); 4 Nov 2010 02:50:26 -0000 Delivered-To: apmail-httpd-apreq-dev-archive@httpd.apache.org Received: (qmail 18675 invoked by uid 500); 4 Nov 2010 02:50:25 -0000 Mailing-List: contact apreq-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list apreq-dev@httpd.apache.org Received: (qmail 18668 invoked by uid 99); 4 Nov 2010 02:50:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Nov 2010 02:50:24 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [67.207.132.134] (HELO vulcan.lockaby.org) (67.207.132.134) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Nov 2010 02:50:18 +0000 Received: from [192.168.137.10] (ip68-105-189-172.dc.dc.cox.net [68.105.189.172]) (authenticated bits=0) by vulcan.lockaby.org (8.14.4/8.14.4) with ESMTP id oA42nt9m028071 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Thu, 4 Nov 2010 02:49:57 GMT Subject: Re: compiling on fedora core 14 Mime-Version: 1.0 (Apple Message framework v1081) Content-Type: text/plain; charset=us-ascii From: Paul Lockaby In-Reply-To: <1288754780.23459.7.camel@shrek.rexursive.com> Date: Wed, 3 Nov 2010 22:49:55 -0400 Cc: apreq-dev@httpd.apache.org Content-Transfer-Encoding: quoted-printable Message-Id: <4A466781-D981-460F-A672-18A924D52ACD@paullockaby.com> References: <1288754780.23459.7.camel@shrek.rexursive.com> To: Bojan Smojver X-Mailer: Apple Mail (2.1081) On Nov 2, 2010, at 11:26 PM, Bojan Smojver wrote: > On Tue, 2010-11-02 at 23:16 -0400, Paul Lockaby wrote: >> However, I do not know how to fix it. Has anyone else determined how >> to solve this problem? Are there plans to update libapreq2 to address >> this change in Fedora? >=20 > You may to try look at these: >=20 > http://pkgs.fedoraproject.org/gitweb/?p=3Dlibapreq2.git >=20 > Obviously, Fedora packages build, so there must be a solution there. >=20 > --=20 > Bojan >=20 Alright I think I got it to work if anyone wants to test this out or add = this to the source. Here is my diff. Index: module/Makefile.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- module/Makefile.in (revision 315) +++ module/Makefile.in (working copy) @@ -122,7 +122,7 @@ EXTRA_DIST =3D t =20 noinst_PROGRAMS =3D test_cgi -test_cgi_LDFLAGS =3D `@APREQ_CONFIG@ --link-libtool` +test_cgi_LDFLAGS =3D `@APREQ_CONFIG@ --link-libtool` @APR_LDFLAGS@ subdir =3D module mkinstalldirs =3D $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER =3D $(top_builddir)/include/apreq_config.h Index: module/Makefile.am =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- module/Makefile.am (revision 315) +++ module/Makefile.am (working copy) @@ -4,7 +4,7 @@ EXTRA_DIST =3D t =20 noinst_PROGRAMS =3D test_cgi -test_cgi_LDFLAGS =3D `@APREQ_CONFIG@ --link-libtool` +test_cgi_LDFLAGS =3D `@APREQ_CONFIG@ --link-libtool` @APR_LDFLAGS@ =20 run_tests : t/TEST if [ ! -d t/cgi-bin ]; then mkdir t/cgi-bin; fi