Return-Path: Delivered-To: apmail-httpd-modules-dev-archive@minotaur.apache.org Received: (qmail 87132 invoked from network); 5 Mar 2010 22:22:00 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 5 Mar 2010 22:22:00 -0000 Received: (qmail 16274 invoked by uid 500); 5 Mar 2010 22:21:44 -0000 Delivered-To: apmail-httpd-modules-dev-archive@httpd.apache.org Received: (qmail 15989 invoked by uid 500); 5 Mar 2010 22:21:44 -0000 Mailing-List: contact modules-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: modules-dev@httpd.apache.org Delivered-To: mailing list modules-dev@httpd.apache.org Received: (qmail 15973 invoked by uid 99); 5 Mar 2010 22:21:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Mar 2010 22:21:44 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [209.211.171.230] (HELO mail01.HPTI.COM) (209.211.171.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Mar 2010 22:21:37 +0000 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: Fighting with build process 2.2.x on Sparc Solaris 10 Date: Fri, 5 Mar 2010 17:21:11 -0500 Message-ID: <5045A4D718CAB644BA24979206486B6006656BA9@hptimail03.HPTI.COM> In-Reply-To: <1404e5911003050431p2a4cefep195d1821e587d31d@mail.gmail.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Fighting with build process 2.2.x on Sparc Solaris 10 Thread-Index: Acq8X8JY9o4g9h52SG6rVsRtTcAykAAUYREg References: <1a20111c1003040431w1a2a356dxfe41b23b91272217@mail.gmail.com> <964267231003040536x2d89a6f0q4a4e270b70b3c344@mail.gmail.com> <964267231003040553h34cb705aic836a49f8e9f7abc@mail.gmail.com> <1a20111c1003041035y365bf55ei79f3400a0b2f1418@mail.gmail.com> <964267231003050242l26dc0f7byfb5ea970fe0c3ea7@mail.gmail.com> <1a20111c1003050328g7a28e1a1ka85a5545de0b3503@mail.gmail.com> <1404e5911003050431p2a4cefep195d1821e587d31d@mail.gmail.com> From: "Thomas, Peter" To: Cc: X-Virus-Checked: Checked by ClamAV on apache.org In order to test my certificate authentication provider code, I need to be able to build with LDAP & SSL support. I've tried pulling .../branches/2.2.x and .../tags/2.2.14 and working from buildconf up to a working Makefile to no avail. I've installed every dependency I can find, added every appropriate lib directory to LD_LIBRARY_PATH, and added -I directives to the include files to CFLAGS and CPPFLAGS. Nothing I do seems to work. My problems started when the buildconf file tells me that I have to check out .../apr/apr-util/trunk--and that no longer exists! I think I've managed to get apr built, but I am dying in apr-util. $ uname -a SunOS app1-t2-dev 5.10 Generic_127111-09 sun4v sparc SUNW,Sun-Fire-T200 $ pkginfo | grep SMC application SMCapr apr application SMCaprutil aprutil application SMCautoc autoconf application SMCexpat expat application SMClgcc346 libgcc application SMClibt libtool application SMCliconv libiconv application SMClintl libintl application SMCm4 m4 application SMCncurs ncurses application SMColdap openldap application SMCossl openssl application SMCsasl sasl application SMCsed sed /bin/bash /.../httpd-2.2.x/srclib/apr/libtool --silent --mode=3Dlink /bin/cc -L/usr/local/lib -I/usr/local/include -L/usw/sfw/lib -I/usr/sfw/include -xO4 -xchip=3Dgeneric -release 1 -module -rpath /usr/local/apr/lib/apr-util-1 -o ldap/apr_ldap.la ldap/apr_ldap_init.lo ldap/apr_ldap_option.lo ldap/apr_ldap_rebind.lo -lldap -llber -llber ld: fatal: library -lnet: not found ld: fatal: File processing errors. No output written to ldap/.libs/apr_ldap-1.so *** Error code 1 make: Fatal error: Command failed for target `ldap/apr_ldap.la' Current working directory /.../httpd-2.2.x/srclib/apr-util *** Error code 1 The following command caused the error: otarget=3D`echo all-recursive | sed s/-recursive//`; \ list=3D'xml dbd dbm encoding hooks buckets misc crypto uri strmatch memcache dbm/sdbm ldap xlate '; \ for i in $list; do \ if test -f "$i/Makefile"; then \ target=3D"$otarget"; \ echo "Making $target in $i"; \ if test "$i" =3D "."; then \ made_local=3Dyes; \ target=3D"local-$target"; \ fi; \ (cd $i && make $target) || exit 1; \ fi; \ done; \ if test "$otarget" =3D "all" && test -z "libaprutil-1.la aprutil.exp apu-config.out dbd/apr_dbd_pgsql.la ldap/apr_ldap.la"; then \ made_local=3Dyes; \ fi; \ if test "$made_local" !=3D "yes"; then \ make "local-$otarget" || exit 1; \ fi make: Fatal error: Command failed for target `all-recursive' Thoughts?