Return-Path: X-Original-To: apmail-httpd-dev-archive@www.apache.org Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 77D2F9116 for ; Tue, 7 Feb 2012 15:29:02 +0000 (UTC) Received: (qmail 75026 invoked by uid 500); 7 Feb 2012 15:29:01 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 74814 invoked by uid 500); 7 Feb 2012 15:29:00 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 74806 invoked by uid 99); 7 Feb 2012 15:29:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Feb 2012 15:29:00 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of covener@gmail.com designates 209.85.161.173 as permitted sender) Received: from [209.85.161.173] (HELO mail-gx0-f173.google.com) (209.85.161.173) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Feb 2012 15:28:55 +0000 Received: by ggnp2 with SMTP id p2so4420249ggn.18 for ; Tue, 07 Feb 2012 07:28:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=E1tbCq3GPLfM+MTYobi0o3FDYlVt6IfkP60j802mbeU=; b=aSf22CQmdoBWCgkl+uHtqKyNWUSk1nlWdsdrvdE+sctXsHcx5hfdORriaPP25z81h6 tRY5ffDFD5CkhADdnY8OHjm2LY11/5VzLA2dIxMFRJ5WIGp5cVwYGIa5PNQs1/3RbvTS uPZGxxihL5MFDISmsypaOwDTGrymRT93IS0Oc= MIME-Version: 1.0 Received: by 10.50.85.199 with SMTP id j7mr7290685igz.9.1328628514750; Tue, 07 Feb 2012 07:28:34 -0800 (PST) Received: by 10.50.170.3 with HTTP; Tue, 7 Feb 2012 07:28:34 -0800 (PST) In-Reply-To: <0B032DFF-B2A4-403E-92E8-1094B7BB660B@sharp.fm> References: <0B032DFF-B2A4-403E-92E8-1094B7BB660B@sharp.fm> Date: Tue, 7 Feb 2012 10:28:34 -0500 Message-ID: Subject: Re: httpd-2.3.16-beta "make install" fails... From: Eric Covener To: dev@httpd.apache.org Content-Type: text/plain; charset=ISO-8859-1 FWIW, I have a hack between make/make install w/ DESTDIR in my 22x AIX builds for this. I think it's probably better as Graham says to not build w/ bundled deps as DESTDIR (if I could go back, I'd make install DESTDIR= the prereqs one at a time). # AIX/HPUX-parisc: When libtool is relinking libaprutil for install, # it tries to pass $libdir/foo.la for expat and apr, because the .la files think they've been installed # without the DESTDIR prepended to them. The change below changes the linkage to look like non-libtool for expat # and excludes the linkage for apr perl -p -i.orig -e \"s#[^ ]+libexpat.la#-L$curdir/srclib/apr-util/xml/expat/lib/ -lexpat#" . " ; s#[^ ]+libapr-1.la##;\" " . "$curdir/srclib/apr-util/Makefile (caution: comment writer / kludger doesn't understand autoconf/libtool)