Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 47252 invoked from network); 9 Nov 2009 18:03:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 9 Nov 2009 18:03:06 -0000 Received: (qmail 92429 invoked by uid 500); 9 Nov 2009 18:03:05 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 92342 invoked by uid 500); 9 Nov 2009 18:03:05 -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 92333 invoked by uid 99); 9 Nov 2009 18:03:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Nov 2009 18:03:05 +0000 X-ASF-Spam-Status: No, hits=-3.7 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of minfrin@sharp.fm designates 72.32.122.47 as permitted sender) Received: from [72.32.122.47] (HELO chandler.sharp.fm) (72.32.122.47) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Nov 2009 18:03:03 +0000 Received: from chandler.sharp.fm (localhost [127.0.0.1]) by chandler.sharp.fm (Postfix) with ESMTP id 929FBDC0F2 for ; Mon, 9 Nov 2009 12:02:42 -0600 (CST) Received: from graham-leggetts-macbook-pro-3.local (unknown [212.58.232.179]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: minfrin@sharp.fm) by chandler.sharp.fm (Postfix) with ESMTP id 29940DC0B5 for ; Mon, 9 Nov 2009 12:02:42 -0600 (CST) Message-ID: <4AF85941.1060106@sharp.fm> Date: Mon, 09 Nov 2009 20:02:41 +0200 From: Graham Leggett User-Agent: Thunderbird 2.0.0.23 (Macintosh/20090812) MIME-Version: 1.0 To: dev@httpd.apache.org Subject: Re: Making a binary distribution of apache 2.2.14 on Aix 6.1 References: <26092524.post@talk.nabble.com> <4AE82B51.7000100@apache.org> <26098035.post@talk.nabble.com> <4AE879A7.8040204@sharp.fm> <9ade2d510911090845n3de4f9f8s32bafab38b44fded@mail.gmail.com> In-Reply-To: <9ade2d510911090845n3de4f9f8s32bafab38b44fded@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Michael Felt wrote: > Actually, the reason I started this thread is because I wanted to start > making builds that used IBM's installp format for distribution rather > than RPM - which is the format chosen for most of the AIX toolbox. Imho > much of the difficulity the libtool devs have with the AIX platform (as > generally the solution is playing with libtool, or loading a newer > version) is this mixed install environment. > > I have been trying to develop and package without using any of the AIX > toolbox as I do not want any dependencies on it. Instead, I shall, as > suggested towards the beginning of this thread, make my own packages to > fulfill dependancies and/or specify IBM installp packages (i.e. > libraries installed into /usr/lib and maybe /opt/lib). > > There are a couple of other respositories out there - my site - when I > finally get it assembled - will be yet another, but with forums behind > it so that people can share experiences. One of the things that may be tripping you up is apr - for legacy reasons, apr is shipped included with httpd v2.2.x. However, for a long time now, binary distributions have been packaging apr and apr-util as completely separate packages, and httpd has been typically configured during these binary builds to use these external apr and apr-util packages. The apr and apr-util trees in httpd are therefore ignored. What I suggest you do is to try get AIX packaging to work on apr and apr-util first, and when that works, attempt to get httpd to work, depending on apr and apr-util as just-another-external-package. Completely ignore anything in the srclib directory, and assume those are system provided. You'll see similar scripts for producing rpms and solaris pkg files in the apr and apr-util trees. Regards, Graham --