From owner-freebsd-apache@FreeBSD.ORG Mon Dec 10 11:06:09 2012 Return-Path: Delivered-To: apache@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40677D82 for ; Mon, 10 Dec 2012 11:06:09 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 242468FC1F for ; Mon, 10 Dec 2012 11:06:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qBAB69Ft063472 for ; Mon, 10 Dec 2012 11:06:09 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qBAB68VE063470 for apache@FreeBSD.org; Mon, 10 Dec 2012 11:06:08 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 10 Dec 2012 11:06:08 GMT Message-Id: <201212101106.qBAB68VE063470@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: apache@FreeBSD.org Subject: Current problem reports assigned to apache@FreeBSD.org X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Dec 2012 11:06:09 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- a ports/173556 apache [ patch ] no option to compile crypto support in devel o ports/165809 apache add mod_proxy patch to www/apache22 o ports/157554 apache www/apache22: Apache RLimitNPROC does not work as inte o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT o ports/124375 apache security/heimdal: www/mod_auth_kerb doesn't compile ag 5 problems total. From owner-freebsd-apache@FreeBSD.ORG Mon Dec 10 21:04:50 2012 Return-Path: Delivered-To: apache@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6551BA57; Mon, 10 Dec 2012 21:04:50 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from p578be941.dip0.t-ipconnect.de (p578be941.dip0.t-ipconnect.de [87.139.233.65]) by mx1.freebsd.org (Postfix) with ESMTP id 1AA0F8FC12; Mon, 10 Dec 2012 21:04:50 +0000 (UTC) Received: from [192.168.0.100] (cde1100.uni.vrs [192.168.0.100]) (Authenticated sender: ohauer) by p578be941.dip0.t-ipconnect.de (Postfix) with ESMTPSA id 19B412091F; Mon, 10 Dec 2012 21:57:57 +0100 (CET) Message-ID: <50C64CD5.3060103@FreeBSD.org> Date: Mon, 10 Dec 2012 21:57:57 +0100 From: Olli Hauer User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: apache@freebsd.org Subject: Re: devel/apr1 removal of python27 and perl5 dependencies References: <50C2336E.9040104@freebsd.org> In-Reply-To: <50C2336E.9040104@freebsd.org> X-Enigmail-Version: 1.4.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Andre Oppermann X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Dec 2012 21:04:50 -0000 On 2012-12-07 19:20, Andre Oppermann wrote: > The devel/apr1 port currently has dependencies on python27 and perl5. > This makes it a royal pain to build for example subversion from source. > > A closer inspection of why python and perl5 are included results in > the following: > > python27: the port patch modifies the build environment to test for > modern, that is > 480000 and > 502102, versions of FreeBSD. I think > it is safe to assume that the port is indeed running on more modern > than that. During the re-run of buildconf python would be needed. > However the buildconf is already pre-populated in the distribution > tarball and a re-run is no longer required. That removes the python27 > dependency. > > perl5: the port doesn't depend on perl5 in any way. There are some > perl scripts in the tarball to convert from unix line ending to win32 > line endings. Again, this is only needed for generating a distribution > tarball, if at all. That removes the perl5 dependency. > > I've compiled devel/apr1 just fine without python27 and perl5 on a > 10-CURRENT from this week. > > The diff is below. > Hi Andre, I agree we can remove perl, but I would keep the buildconf part (calling buildconf is the documented way to build APR). Without calling buildconf we have to do some more work which is doable but should be compared with the documented way on every update. additional changes needed: - new patch(es) for OSVERSION (cross compiling and tinderbox) - s/-lpthread/pthread/ in configure scripts - s/void main/int main/ in configure scripts Even then we will loose some FreeBSD specific adjustments. To get a handy diff run `make configure' with and without your changes then do a > sed -i '' -E 's|^configure:[0-9]+:|configure::|g' work/apr-1.4.6/config.log > sed -i '' -E 's|^configure:[0-9]+:|configure::|g' work/apr-util-1.4.1/config.log > diff -NruEb work.save/ work/ I'm planing to modify the port in near future to enable the CRYPTO part per default and make usage of the new OPTIONS_RADIO and OPTIONS_GROUP params. -- Regards, olli From owner-freebsd-apache@FreeBSD.ORG Wed Dec 12 07:22:31 2012 Return-Path: Delivered-To: apache@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C28B0E57 for ; Wed, 12 Dec 2012 07:22:31 +0000 (UTC) (envelope-from SKanduru@a10networks.com) Received: from mail.a10networks.com (mail.a10networks.com [12.207.16.167]) by mx1.freebsd.org (Postfix) with ESMTP id 89B3E8FC0C for ; Wed, 12 Dec 2012 07:22:31 +0000 (UTC) X-AuditID: c0a80b0a-b7faa6d0000014c5-e6-50c82d2b3870 Received: from webmail.a10networks.com (Unknown_Domain [192.168.1.101]) by mail.a10networks.com (Symantec Messaging Gateway) with SMTP id 49.D7.05317.B2D28C05; Tue, 11 Dec 2012 23:07:24 -0800 (PST) Received: from SJ-MB02.corp.a10networks.com ([fe80::8022:2e09:bc7a:35fa]) by SJ-CASHT01.corp.a10networks.com ([fe80::fc72:b0c5:8503:b166%13]) with mapi id 14.02.0283.003; Tue, 11 Dec 2012 23:07:23 -0800 From: Srinivasa Kanduru To: "apache@FreeBSD.org" Subject: apache installation failed Thread-Topic: apache installation failed Thread-Index: Ac3YNoja+gM54DAYRVSETMA3wDYfsQ== Date: Wed, 12 Dec 2012 07:07:23 +0000 Message-ID: <4ACB26D93525C544864D91BE088FDC0D51E260@SJ-MB02.corp.a10networks.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: yes X-MS-TNEF-Correlator: x-originating-ip: [192.168.1.122] Content-Type: multipart/mixed; boundary="_004_4ACB26D93525C544864D91BE088FDC0D51E260SJMB02corpa10netw_" MIME-Version: 1.0 X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFlrLIsWRmVeSWpSXmKPExsVyYAVjqq6O7okAg4VBFu9nTWVzYPSY8Wk+ SwBjFJdNSmpOZllqkb5dAlfGjVNTmAp6Wxkrrv77ydjAeLyqi5GDQ0LARKJzlmQXIyeQKSZx 4d56ti5GLg4hgeOMEgcXNLJAOOcYJTp+PmIDqWITMJLYf+I5O4gtIqArcXjiXFYQW1hAWaJx zmRGiLiGxK5/O1ghbD2Ja1cmgPWyCKhKtDyfxAJi8woESjQv38cMYjMCbf5+ag0TiM0sIC5x 68l8JoiLRCQeXjzNBmGLSrx8/I8VwlaUaNjznhGiPlPi1q8trBAzBSVOznzCMoFRaBaSUbOQ lM1CUjYL6H9mgXyJg9OsIUp0JBbs/sQGYWtLLFv4mhnGPnPgMROmuKlE57Vr7BC2psTDLUeB xnMB2RsZJbpvbIJqUJSY0v2QfQEjzypGkdzEzBy9REODvNSS8vyi7GK95PzcTYzgSOTm2sG4 9rTBIUYBDkYlHl7jz8cDhFgTy4orcw8xSnAwK4nwrtwKFOJNSaysSi3Kjy8qzUktPsQozcGi JM5bXH7JX0ggPbEkNTs1tSC1CCbLxMEp1cB4bVGT+Oc7l3Z8f3ru1pOZlfmXQlU/b1yZxvQ8 lJtFY+u189ypSzZwvDP1Xel6uPlKXJe354wcDz/lTxEdhq4znIX+rnHZPG2l5wGtj5L3vW47 dDAfvipcZ7Na+0/dH6XKK5y352w403kixKGUZfunhR8SWzYXhZ/do2wlYaZqKaJ167+6Tk2/ EktxRqKhFnNRcSIADpT+GMACAAA= X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 07:22:31 -0000 --_004_4ACB26D93525C544864D91BE088FDC0D51E260SJMB02corpa10netw_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hello, I was trying to setup IPv6 TAHI test-suites on FreeBSD 9.0 for IPv6 conform= ance certification . I got the following error when I was trying to install apache 20 as well as= 22 from the ports directory. The package installer suggested to attach th= e following information for your perusal. I would appreciate if you can let me know if there is anything wrong in my = setup. Thanks a lot for your help. Regards, Srinivas. =3D=3D=3D> Script "configure" failed unexpectedly. Please report the problem to apache@FreeBSD.org [maintainer] and attach the "/usr/ports/www/apache20/work/httpd-2.0.64/config.log" including the output of the failure of your make command. Also, it might be a good idea to provi= de an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). [root@tahi-ipv6 apache20]#ls /var/db/pkg apr-0.9.20.0.9.19 kbproto-1.0.5 apr-ipv6-gdbm-db42-1.4.5.1.3.12_1 libiconv-1.13.1_1 autoconf-2.68 libsigsegv-2.10 autoconf-wrapper-20101119 libtool-2.4_1 automake-1.11.1 m4-1.4.16,1 automake-wrapper-20101119 p5-Expect-1.21 bash-4.1.11 p5-IO-Tty-1.10 bison-2.4.3,1 p5-Locale-gettext-1.05_3 ct-2.1.2 pcre-8.20 db42-4.2.52_5 perl-5.12.4_3 elinks-0.11.7_2 python27-2.7.2_3 expat-2.0.1_2 screen-4.0.3_13 gdbm-1.9.1 v6eval-3.3.2 gettext-0.18.1.1 v6eval-remotes-3.0 gmake-3.82 vim-lite-7.3.121 help2man-1.40.4 --_004_4ACB26D93525C544864D91BE088FDC0D51E260SJMB02corpa10netw_ Content-Type: text/plain; name="apache_make_fail.txt" Content-Description: apache_make_fail.txt Content-Disposition: attachment; filename="apache_make_fail.txt"; size=5456; creation-date="Wed, 12 Dec 2012 07:04:03 GMT"; modification-date="Wed, 12 Dec 2012 07:04:03 GMT" Content-Transfer-Encoding: base64 PT09PiAgIGFwYWNoZS0yLjAuNjRfMiBkZXBlbmRzIG9uIGZpbGU6IC91c3IvbG9jYWwvYmluL3Bl cmw1LjEyLjQgLSBmb3VuZAo9PT0+ICAgYXBhY2hlLTIuMC42NF8yIGRlcGVuZHMgb24gZmlsZTog L3Vzci9sb2NhbC9iaW4vYXV0b2NvbmYtMi42OCAtIGZvdW5kCj09PT4gICBhcGFjaGUtMi4wLjY0 XzIgZGVwZW5kcyBvbiBwYWNrYWdlOiBsaWJ0b29sPj0yLjQgLSBmb3VuZAo9PT0+ICAgYXBhY2hl LTIuMC42NF8yIGRlcGVuZHMgb24gc2hhcmVkIGxpYnJhcnk6IGV4cGF0LjYgLSBmb3VuZAo9PT0+ ICAgYXBhY2hlLTIuMC42NF8yIGRlcGVuZHMgb24gc2hhcmVkIGxpYnJhcnk6IHBjcmUuMCAtIGZv dW5kCj09PT4gICBhcGFjaGUtMi4wLjY0XzIgZGVwZW5kcyBvbiBzaGFyZWQgbGlicmFyeTogYXBy LTAgLSBmb3VuZAo9PT0+ICAgYXBhY2hlLTIuMC42NF8yIGRlcGVuZHMgb24gc2hhcmVkIGxpYnJh cnk6IGljb252LjMgLSBmb3VuZAo9PT0+ICBDb25maWd1cmluZyBmb3IgYXBhY2hlLTIuMC42NF8y CmNvbmZpZ3VyZTogV0FSTklORzogdW5yZWNvZ25pemVkIG9wdGlvbnM6IC0td2l0aC1wZXJsLCAt LXdpdGgtZXhwYXQsIC0td2l0aC1pY29udiwgLS13aXRoLWRibQpjaGVja2luZyBmb3IgY2hvc2Vu IGxheW91dC4uLiBGcmVlQlNECmNoZWNraW5nIGZvciB3b3JraW5nIG1rZGlyIC1wLi4uIHllcwpj aGVja2luZyBidWlsZCBzeXN0ZW0gdHlwZS4uLiBpMzg2LXBvcnRibGQtZnJlZWJzZDkuMApjaGVj a2luZyBob3N0IHN5c3RlbSB0eXBlLi4uIGkzODYtcG9ydGJsZC1mcmVlYnNkOS4wCmNoZWNraW5n IHRhcmdldCBzeXN0ZW0gdHlwZS4uLiBpMzg2LXBvcnRibGQtZnJlZWJzZDkuMAoKQ29uZmlndXJp bmcgQXBhY2hlIFBvcnRhYmxlIFJ1bnRpbWUgbGlicmFyeSAuLi4KCmNoZWNraW5nIGZvciBBUFIu Li4geWVzCiAgYWRkaW5nICItZyIgdG8gQ0ZMQUdTCiAgYWRkaW5nICItcHRocmVhZCIgdG8gQ0ZM QUdTCiAgc2V0dGluZyBDUFBGTEFHUyB0byAiIC1EX1JFRU5UUkFOVCAtRF9USFJFQURfU0FGRSIK ICBzZXR0aW5nIElOQ0xVREVTIHRvICIgLUkvdXNyL2xvY2FsL2luY2x1ZGUvYXByLTAgIgoKQ29u ZmlndXJpbmcgQXBhY2hlIFBvcnRhYmxlIFJ1bnRpbWUgVXRpbGl0eSBsaWJyYXJ5Li4uCgpjaGVj a2luZyBmb3IgQVBSLXV0aWwuLi4geWVzCiAgYWRkaW5nICItTC91c3IvbG9jYWwvbGliIiB0byBM REZMQUdTCiAgYWRkaW5nICItTC91c3IvbG9jYWwvbGliL2RiNDIiIHRvIExERkxBR1MKICBhZGRp bmcgIi1JL3Vzci9sb2NhbC9pbmNsdWRlIiB0byBJTkNMVURFUwogIGFkZGluZyAiLUkvdXNyL2xv Y2FsL2luY2x1ZGUvZGI0MiIgdG8gSU5DTFVERVMKY2hlY2tpbmcgZm9yIGdjYy4uLiBjYwpjaGVj a2luZyB3aGV0aGVyIHRoZSBDIGNvbXBpbGVyIHdvcmtzLi4uIHllcwpjaGVja2luZyBmb3IgQyBj b21waWxlciBkZWZhdWx0IG91dHB1dCBmaWxlIG5hbWUuLi4gYS5vdXQKY2hlY2tpbmcgZm9yIHN1 ZmZpeCBvZiBleGVjdXRhYmxlcy4uLiAKY2hlY2tpbmcgd2hldGhlciB3ZSBhcmUgY3Jvc3MgY29t cGlsaW5nLi4uIG5vCmNoZWNraW5nIGZvciBzdWZmaXggb2Ygb2JqZWN0IGZpbGVzLi4uIG8KY2hl Y2tpbmcgd2hldGhlciB3ZSBhcmUgdXNpbmcgdGhlIEdOVSBDIGNvbXBpbGVyLi4uIHllcwpjaGVj a2luZyB3aGV0aGVyIGNjIGFjY2VwdHMgLWcuLi4geWVzCmNoZWNraW5nIGZvciBjYyBvcHRpb24g dG8gYWNjZXB0IElTTyBDODkuLi4gbm9uZSBuZWVkZWQKY2hlY2tpbmcgaG93IHRvIHJ1biB0aGUg QyBwcmVwcm9jZXNzb3IuLi4gY3BwCgpDb25maWd1cmluZyBBcGFjaGUgaHR0cGQgLi4uCgogIGFk ZGluZyAiLUkuIiB0byBJTkNMVURFUwogIGFkZGluZyAiLUkkKHRvcF9zcmNkaXIpL29zLyQoT1Nf RElSKSIgdG8gSU5DTFVERVMKICBhZGRpbmcgIi1JJCh0b3Bfc3JjZGlyKS9zZXJ2ZXIvbXBtLyQo TVBNX1NVQkRJUl9OQU1FKSIgdG8gSU5DTFVERVMKICBhZGRpbmcgIi1JJCh0b3Bfc3JjZGlyKS9t b2R1bGVzL2h0dHAiIHRvIElOQ0xVREVTCiAgYWRkaW5nICItSSQodG9wX3NyY2RpcikvbW9kdWxl cy9maWx0ZXJzIiB0byBJTkNMVURFUwogIGFkZGluZyAiLUkkKHRvcF9zcmNkaXIpL21vZHVsZXMv cHJveHkiIHRvIElOQ0xVREVTCiAgYWRkaW5nICItSSQodG9wX3NyY2RpcikvaW5jbHVkZSIgdG8g SU5DTFVERVMKICBhZGRpbmcgIi1JJCh0b3Bfc3JjZGlyKS9tb2R1bGVzL2dlbmVyYXRvcnMiIHRv IElOQ0xVREVTCgpBcHBseWluZyBPUy1zcGVjaWZpYyBoaW50cyBmb3IgaHR0cGQgLi4uCgogIGZv cmNpbmcgU0lOR0xFX0xJU1RFTl9VTlNFUklBTElaRURfQUNDRVBUIHRvICIxIgogIGZvcmNpbmcg QVBfTk9OQkxPQ0tfV0hFTl9NVUxUSV9MSVNURU4gdG8gIjEiCmNoZWNraW5nIGZvciBybS4uLiAv YmluL3JtCmNoZWNraW5nIGZvciBnYXdrLi4uIG5vCmNoZWNraW5nIGZvciBtYXdrLi4uIG5vCmNo ZWNraW5nIGZvciBuYXdrLi4uIG5hd2sKY2hlY2tpbmcgZm9yIGEgQlNELWNvbXBhdGlibGUgaW5z dGFsbC4uLiAvdXNyL2Jpbi9pbnN0YWxsIC1jIC1vIHJvb3QgLWcgd2hlZWwKY2hlY2tpbmcgd2hl dGhlciBsbiAtcyB3b3Jrcy4uLiB5ZXMKY2hlY2tpbmcgZm9yIHJhbmxpYi4uLiByYW5saWIKY2hl Y2tpbmcgZm9yIGdyZXAgdGhhdCBoYW5kbGVzIGxvbmcgbGluZXMgYW5kIC1lLi4uIC91c3IvYmlu L2dyZXAKY2hlY2tpbmcgZm9yIGVncmVwLi4uIC91c3IvYmluL2dyZXAgLUUKY2hlY2tpbmcgZm9y IEFOU0kgQyBoZWFkZXIgZmlsZXMuLi4geWVzCmNoZWNraW5nIGZvciBzeXMvdHlwZXMuaC4uLiB5 ZXMKY2hlY2tpbmcgZm9yIHN5cy9zdGF0LmguLi4geWVzCmNoZWNraW5nIGZvciBzdGRsaWIuaC4u LiB5ZXMKY2hlY2tpbmcgZm9yIHN0cmluZy5oLi4uIHllcwpjaGVja2luZyBmb3IgbWVtb3J5Lmgu Li4geWVzCmNoZWNraW5nIGZvciBzdHJpbmdzLmguLi4geWVzCmNoZWNraW5nIGZvciBpbnR0eXBl cy5oLi4uIHllcwpjaGVja2luZyBmb3Igc3RkaW50LmguLi4geWVzCmNoZWNraW5nIGZvciB1bmlz dGQuaC4uLiB5ZXMKY2hlY2tpbmcgbWluaXgvY29uZmlnLmggdXNhYmlsaXR5Li4uIG5vCmNoZWNr aW5nIG1pbml4L2NvbmZpZy5oIHByZXNlbmNlLi4uIG5vCmNoZWNraW5nIGZvciBtaW5peC9jb25m aWcuaC4uLiBubwpjaGVja2luZyB3aGV0aGVyIGl0IGlzIHNhZmUgdG8gZGVmaW5lIF9fRVhURU5T SU9OU19fLi4uIHllcwpjaGVja2luZyBmb3IgbGlicmFyeSBjb250YWluaW5nIHN0cmVycm9yLi4u IG5vbmUgcmVxdWlyZWQKY2hlY2tpbmcgZm9yIEFOU0kgQyBoZWFkZXIgZmlsZXMuLi4gKGNhY2hl ZCkgeWVzCmNoZWNraW5nIGZvciBzdHJpbmcuaC4uLiAoY2FjaGVkKSB5ZXMKY2hlY2tpbmcgbGlt aXRzLmggdXNhYmlsaXR5Li4uIHllcwpjaGVja2luZyBsaW1pdHMuaCBwcmVzZW5jZS4uLiB5ZXMK Y2hlY2tpbmcgZm9yIGxpbWl0cy5oLi4uIHllcwpjaGVja2luZyBmb3IgdW5pc3RkLmguLi4gKGNh Y2hlZCkgeWVzCmNoZWNraW5nIHN5cy9zb2NrZXQuaCB1c2FiaWxpdHkuLi4geWVzCmNoZWNraW5n IHN5cy9zb2NrZXQuaCBwcmVzZW5jZS4uLiB5ZXMKY2hlY2tpbmcgZm9yIHN5cy9zb2NrZXQuaC4u LiB5ZXMKY2hlY2tpbmcgcHdkLmggdXNhYmlsaXR5Li4uIHllcwpjaGVja2luZyBwd2QuaCBwcmVz ZW5jZS4uLiB5ZXMKY2hlY2tpbmcgZm9yIHB3ZC5oLi4uIHllcwpjaGVja2luZyBncnAuaCB1c2Fi aWxpdHkuLi4geWVzCmNoZWNraW5nIGdycC5oIHByZXNlbmNlLi4uIHllcwpjaGVja2luZyBmb3Ig Z3JwLmguLi4geWVzCmNoZWNraW5nIGZvciBzdHJpbmdzLmguLi4gKGNhY2hlZCkgeWVzCmNoZWNr aW5nIHN5cy9wcmN0bC5oIHVzYWJpbGl0eS4uLiBubwpjaGVja2luZyBzeXMvcHJjdGwuaCBwcmVz ZW5jZS4uLiBubwpjaGVja2luZyBmb3Igc3lzL3ByY3RsLmguLi4gbm8KY2hlY2tpbmcgc3lzL3By b2Nlc3Nvci5oIHVzYWJpbGl0eS4uLiBubwpjaGVja2luZyBzeXMvcHJvY2Vzc29yLmggcHJlc2Vu Y2UuLi4gbm8KY2hlY2tpbmcgZm9yIHN5cy9wcm9jZXNzb3IuaC4uLiBubwpjaGVja2luZyBzeXMv c2VtLmggdXNhYmlsaXR5Li4uIHllcwpjaGVja2luZyBzeXMvc2VtLmggcHJlc2VuY2UuLi4geWVz CmNoZWNraW5nIGZvciBzeXMvc2VtLmguLi4geWVzCmNoZWNraW5nIGZvciBzeXMvd2FpdC5oIHRo YXQgaXMgUE9TSVguMSBjb21wYXRpYmxlLi4uIHllcwpjaGVja2luZyBmb3IgYW4gQU5TSSBDLWNv bmZvcm1pbmcgY29uc3QuLi4geWVzCiAgc2V0dGluZyBOT1RFU1RfQ1BQRkxBR1MgdG8gIi1EQVBf SEFWRV9ERVNJR05BVEVEX0lOSVRJQUxJWkVSIgpjaGVja2luZyBmb3IgZ2V0cHduYW0uLi4geWVz CmNoZWNraW5nIGZvciBnZXRncm5hbS4uLiB5ZXMKY2hlY2tpbmcgZm9yIGluaXRncm91cHMuLi4g eWVzCmNoZWNraW5nIGZvciBiaW5kcHJvY2Vzc29yLi4uIG5vCmNoZWNraW5nIGZvciBwcmN0bC4u LiBubwpjaGVja2luZyBmb3IgdGltZWdtLi4uIHllcwpjaGVja2luZyBmb3IgdG1fZ210b2ZmIGlu IHN0cnVjdCB0bS4uLiB5ZXMKY2hlY2tpbmcgd2hldGhlciB0byBlbmFibGUgbW9kX2FjY2Vzcy4u LiBzaGFyZWQKY2hlY2tpbmcgd2hldGhlciB0byBlbmFibGUgbW9kX2F1dGguLi4gc2hhcmVkCmNo ZWNraW5nIHdoZXRoZXIgdG8gZW5hYmxlIG1vZF9hdXRoX2Fub24uLi4gc2hhcmVkCmNoZWNraW5n IHdoZXRoZXIgdG8gZW5hYmxlIG1vZF9hdXRoX2RibS4uLiBzaGFyZWQKY2hlY2tpbmcgd2hldGhl ciB0byBlbmFibGUgbW9kX2F1dGhfZGlnZXN0Li4uIGNoZWNraW5nIGRlcGVuZGVuY2llcwpZb3Ug bmVlZCBBUFIgcmFuZG9tIHN1cHBvcnQgdG8gdXNlIG1vZF9hdXRoX2RpZ2VzdC4KTG9vayBhdCBB UFIgY29uZmlndXJlIG9wdGlvbnMgLS13aXRoLWVnZCBhbmQgLS13aXRoLWRldnJhbmRvbS4KY2hl Y2tpbmcgd2hldGhlciB0byBlbmFibGUgbW9kX2F1dGhfZGlnZXN0Li4uIGNvbmZpZ3VyZTogZXJy b3I6IG1vZF9hdXRoX2RpZ2VzdCBoYXMgYmVlbiByZXF1ZXN0ZWQgYnV0IGNhbiBub3QgYmUgYnVp bHQgZHVlIHRvIHByZXJlcXVpc2l0ZSBmYWlsdXJlcwo9PT0+ICBTY3JpcHQgImNvbmZpZ3VyZSIg ZmFpbGVkIHVuZXhwZWN0ZWRseS4KUGxlYXNlIHJlcG9ydCB0aGUgcHJvYmxlbSB0byBhcGFjaGVA RnJlZUJTRC5vcmcgW21haW50YWluZXJdIGFuZCBhdHRhY2ggdGhlCiIvdXNyL3BvcnRzL3d3dy9h cGFjaGUyMC93b3JrL2h0dHBkLTIuMC42NC9jb25maWcubG9nIiBpbmNsdWRpbmcgdGhlIG91dHB1 dApvZiB0aGUgZmFpbHVyZSBvZiB5b3VyIG1ha2UgY29tbWFuZC4gQWxzbywgaXQgbWlnaHQgYmUg YSBnb29kIGlkZWEgdG8gcHJvdmlkZQphbiBvdmVydmlldyBvZiBhbGwgcGFja2FnZXMgaW5zdGFs bGVkIG9uIHlvdXIgc3lzdGVtIChlLmcuIGFuIGBscwovdmFyL2RiL3BrZ2ApLgoqKiogRXJyb3Ig Y29kZSAxCgpTdG9wIGluIC91c3IvcG9ydHMvd3d3L2FwYWNoZTIwLgo= --_004_4ACB26D93525C544864D91BE088FDC0D51E260SJMB02corpa10netw_-- From owner-freebsd-apache@FreeBSD.ORG Wed Dec 12 10:22:54 2012 Return-Path: Delivered-To: apache@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B5D072D7 for ; Wed, 12 Dec 2012 10:22:54 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 315238FC0A for ; Wed, 12 Dec 2012 10:22:53 +0000 (UTC) Received: (qmail invoked by alias); 12 Dec 2012 10:22:52 -0000 Received: from hu5.abaxx.de (EHLO [10.6.25.100]) [213.61.170.110] by mail.gmx.net (mp030) with SMTP; 12 Dec 2012 11:22:52 +0100 X-Authenticated: #1956535 X-Provags-ID: V01U2FsdGVkX1+J8PA+C4yJVN17bBDZNAHPtYdjkGUj+swZ28H63j Eh8doRrNLBqSM1 Message-ID: <50C85AFB.4070902@gmx.de> Date: Wed, 12 Dec 2012 11:22:51 +0100 From: olli hauer User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: "apache@FreeBSD.org" Subject: Re: apache installation failed References: <4ACB26D93525C544864D91BE088FDC0D51E260@SJ-MB02.corp.a10networks.com> In-Reply-To: <4ACB26D93525C544864D91BE088FDC0D51E260@SJ-MB02.corp.a10networks.com> X-Enigmail-Version: 1.4.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: Srinivasa Kanduru X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 10:22:54 -0000 On 2012-12-12 08:07, Srinivasa Kanduru wrote:> Hello, > > I was trying to setup IPv6 TAHI test-suites on FreeBSD 9.0 for IPv6 conformance certification . > > I got the following error when I was trying to install apache 20 as well as 22 from the ports directory. The package installer suggested to attach the following information for your perusal. > > I would appreciate if you can let me know if there is anything wrong in my setup. > > Thanks a lot for your help. > > Regards, > Srinivas. > > ===> Script "configure" failed unexpectedly. > Please report the problem to apache@FreeBSD.org [maintainer] and attach the > "/usr/ports/www/apache20/work/httpd-2.0.64/config.log" including the output > of the failure of your make command. Also, it might be a good idea to provide > an overview of all packages installed on your system (e.g. an `ls > /var/db/pkg`). > > [root@tahi-ipv6 apache20]#ls /var/db/pkg > apr-0.9.20.0.9.19 kbproto-1.0.5 > apr-ipv6-gdbm-db42-1.4.5.1.3.12_1 libiconv-1.13.1_1 > autoconf-2.68 libsigsegv-2.10 > autoconf-wrapper-20101119 libtool-2.4_1 > automake-1.11.1 m4-1.4.16,1 > automake-wrapper-20101119 p5-Expect-1.21 > bash-4.1.11 p5-IO-Tty-1.10 > bison-2.4.3,1 p5-Locale-gettext-1.05_3 > ct-2.1.2 pcre-8.20 > db42-4.2.52_5 perl-5.12.4_3 > elinks-0.11.7_2 python27-2.7.2_3 > expat-2.0.1_2 screen-4.0.3_13 > gdbm-1.9.1 v6eval-3.3.2 > gettext-0.18.1.1 v6eval-remotes-3.0 > gmake-3.82 vim-lite-7.3.121 > help2man-1.40.4 > Hi Srinivas, first your ports tree is really outdated, apache20 and apr0 was removed from the portstree in Aug. >From your pkg listing I see apr0 and apr1 are installed you have to remove apr0 first. I suspect you are using the older pkg tools so the command `pkg_delete -rx apr' should work. Next $> cd ports/devel/apr1 $> make config (select at last THREADS, IPV6 and DEVRANDOM) $> make clean install $> cd ports/www/apache22/ $> make config $> make clean install You apache build was failing because mod_auth_digest failed to build, but from the log snippet it is not clear to me why. I highly suggest to update your ports with portsnap and start over with no ports installed (I suspect you have a fast machine) To start over do the following. $> mv /usr/ports /usr/ports.old $> portsnap fetch $> portsnap extract $> mkdir ports/distfiles (so distfiles are placed here and not in the port directory) $> pkg_delete -a (removes all your installed ports) $> cd ports/lang/perl5.14 (or perl5.16) $> make install $> cd ports/lang/python27 $> make install $> cd ports/devel/apr1 $> make config (select at last THREADS, IPV6 and DEVRANDOM) $> make install $> cd ports/www/apache22 $> make config && make install -- Regards, olli From owner-freebsd-apache@FreeBSD.ORG Wed Dec 12 10:28:05 2012 Return-Path: Delivered-To: apache@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BB5F434E for ; Wed, 12 Dec 2012 10:28:05 +0000 (UTC) (envelope-from SKanduru@a10networks.com) Received: from mail.a10networks.com (mail.a10networks.com [12.207.16.167]) by mx1.freebsd.org (Postfix) with ESMTP id 8B63D8FC0C for ; Wed, 12 Dec 2012 10:28:05 +0000 (UTC) X-AuditID: c0a80b0a-b7faa6d0000014c5-72-50c85c342746 Received: from webmail.a10networks.com (Unknown_Domain [192.168.52.91]) by mail.a10networks.com (Symantec Messaging Gateway) with SMTP id BD.C8.05317.43C58C05; Wed, 12 Dec 2012 02:28:04 -0800 (PST) Received: from SJ-MB02.corp.a10networks.com ([fe80::8022:2e09:bc7a:35fa]) by SJ-CASHT02.corp.a10networks.com ([fe80::dce5:5b71:2afa:3ed8%13]) with mapi id 14.02.0283.003; Wed, 12 Dec 2012 02:28:03 -0800 From: Srinivasa Kanduru To: olli hauer , "apache@FreeBSD.org" Subject: RE: apache installation failed Thread-Topic: apache installation failed Thread-Index: Ac3YNoja+gM54DAYRVSETMA3wDYfsQAXykOAABCsYKA= Date: Wed, 12 Dec 2012 10:28:02 +0000 Message-ID: <4ACB26D93525C544864D91BE088FDC0D51E29B@SJ-MB02.corp.a10networks.com> References: <4ACB26D93525C544864D91BE088FDC0D51E260@SJ-MB02.corp.a10networks.com> <50C85AFB.4070902@gmx.de> In-Reply-To: <50C85AFB.4070902@gmx.de> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [192.168.1.122] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFvrFLMWRmVeSWpSXmKPExsVyYIVJtK5JzIkAg1MvRS3ez5rKZjHvxRcW ByaPGZ/ms3h8+BgXwBTFZZOSmpNZllqkb5fAlXHj6C22gqNyFZM2TWBsYFwq1sXIySEhYCKx asFPNghbTOLCvfVANheHkMBxRokjf25DOecYJZb/e8AEUsUmYCSx/8RzdhBbRMBTYt3xyWDd wgLqEp/nPWOCiGtI7Pq3gxXCtpJYPPUBWD2LgKrEx6YFYPW8AoEST5bOZexi5ABakCtx9bAp SJhTQE3i1qK9YCWMQAd9P7UGbCSzgLjErSfzmSAOFZBYsuc8M4QtKvHy8T9WCFtRomHPe0aI eh2JBbs/sUHY2hLLFr5mhlgrKHFy5hOWCYyis5CMnYWkZRaSlllIWhYwsqxiFMlNzMzRSzQ0 yEstKc8vyi7WS87P3cQIjhFurh2Ma08bHGIU4GBU4uE1/nw8QIg1say4MvcQowQHs5IIr6Dn iQAh3pTEyqrUovz4otKc1OJDjNIcLErivMXll/yFBNITS1KzU1MLUotgskwcnFINjMnHtd74 F+k7+/K0dLo/2mzyevOB8C9P35Z/f+Co9f/MkYjZe32rrnfZ1Rp7/u5Ye5bBTvhEnds+my+m WnODjkXmJ2bcZ/tfNWl3lXBmmDQj56YdKoVPfivZM/oXG23VkAw6LnaGPXD+0QnFCYcEQrbP s1WZX/vKPNLs879L3ycckQlWvzbtsxJLcUaioRZzUXEiAA8xb3ONAgAA X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 10:28:05 -0000 Hi Olli, Thanks for the quick response. I have added three packages under net for T= AHI testing. I did configuration for that as well. Do I have to reinstall= and re-configure them as well ?=20 I was wondering if that is not required if basic perl modules will not chan= ge with the new ports package. Please advice. Thanks again. Regards, Srinivas. > -----Original Message----- > From: olli hauer [mailto:ohauer@gmx.de] > Sent: Wednesday, December 12, 2012 2:23 AM > To: apache@FreeBSD.org > Cc: Srinivasa Kanduru > Subject: Re: apache installation failed >=20 > On 2012-12-12 08:07, Srinivasa Kanduru wrote:> Hello, > > > > I was trying to setup IPv6 TAHI test-suites on FreeBSD 9.0 for IPv6 > conformance certification . > > > > I got the following error when I was trying to install apache 20 as wel= l as 22 > from the ports directory. The package installer suggested to attach the > following information for your perusal. > > > > I would appreciate if you can let me know if there is anything wrong in= my > setup. > > > > Thanks a lot for your help. > > > > Regards, > > Srinivas. > > > > =3D=3D=3D> Script "configure" failed unexpectedly. > > Please report the problem to apache@FreeBSD.org [maintainer] and > > attach the "/usr/ports/www/apache20/work/httpd-2.0.64/config.log" > > including the output of the failure of your make command. Also, it > > might be a good idea to provide an overview of all packages installed > > on your system (e.g. an `ls /var/db/pkg`). > > > > [root@tahi-ipv6 apache20]#ls /var/db/pkg > > apr-0.9.20.0.9.19 kbproto-1.0.5 > > apr-ipv6-gdbm-db42-1.4.5.1.3.12_1 libiconv-1.13.1_1 > > autoconf-2.68 libsigsegv-2.10 > > autoconf-wrapper-20101119 libtool-2.4_1 > > automake-1.11.1 m4-1.4.16,1 > > automake-wrapper-20101119 p5-Expect-1.21 > > bash-4.1.11 p5-IO-Tty-1.10 > > bison-2.4.3,1 p5-Locale-gettext-1.05_3 > > ct-2.1.2 pcre-8.20 > > db42-4.2.52_5 perl-5.12.4_3 > > elinks-0.11.7_2 python27-2.7.2_3 > > expat-2.0.1_2 screen-4.0.3_13 > > gdbm-1.9.1 v6eval-3.3.2 > > gettext-0.18.1.1 v6eval-remotes-3.0 > > gmake-3.82 vim-lite-7.3.121 > > help2man-1.40.4 > > >=20 > Hi Srinivas, >=20 > first your ports tree is really outdated, apache20 and apr0 was removed f= rom > the portstree in Aug. >=20 > From your pkg listing I see apr0 and apr1 are installed you have to remov= e > apr0 first. I suspect you are using the older pkg tools so the command > `pkg_delete -rx apr' should work. >=20 > Next > $> cd ports/devel/apr1 > $> make config (select at last THREADS, IPV6 and DEVRANDOM) $> make > clean install >=20 > $> cd ports/www/apache22/ > $> make config > $> make clean install >=20 > You apache build was failing because mod_auth_digest failed to build, but > from the log snippet it is not clear to me why. >=20 > I highly suggest to update your ports with portsnap and start over with n= o > ports installed (I suspect you have a fast machine) >=20 > To start over do the following. > $> mv /usr/ports /usr/ports.old > $> portsnap fetch > $> portsnap extract > $> mkdir ports/distfiles (so distfiles are placed here and not in the por= t > directory) $> pkg_delete -a (removes all your installed ports) $> cd > ports/lang/perl5.14 (or perl5.16) $> make install $> cd ports/lang/python= 27 > $> make install $> cd ports/devel/apr1 $> make config (select at last > THREADS, IPV6 and DEVRANDOM) $> make install $> cd > ports/www/apache22 $> make config && make install >=20 > -- > Regards, > olli From owner-freebsd-apache@FreeBSD.ORG Wed Dec 12 12:37:11 2012 Return-Path: Delivered-To: apache@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B68E1B69 for ; Wed, 12 Dec 2012 12:37:11 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 31C4B8FC08 for ; Wed, 12 Dec 2012 12:37:10 +0000 (UTC) Received: (qmail invoked by alias); 12 Dec 2012 12:37:10 -0000 Received: from hu5.abaxx.de (EHLO [10.6.25.100]) [213.61.170.110] by mail.gmx.net (mp016) with SMTP; 12 Dec 2012 13:37:10 +0100 X-Authenticated: #1956535 X-Provags-ID: V01U2FsdGVkX19Ptgl/TWVPyiPWmBVvhJijrd35sSlVeADQMfxXUZ b1uTuOsyi0kX+T Message-ID: <50C87A75.6070207@gmx.de> Date: Wed, 12 Dec 2012 13:37:09 +0100 From: olli hauer User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: "apache@FreeBSD.org" Subject: Re: apache installation failed References: <4ACB26D93525C544864D91BE088FDC0D51E260@SJ-MB02.corp.a10networks.com> <50C85AFB.4070902@gmx.de> <4ACB26D93525C544864D91BE088FDC0D51E29B@SJ-MB02.corp.a10networks.com> In-Reply-To: <4ACB26D93525C544864D91BE088FDC0D51E29B@SJ-MB02.corp.a10networks.com> X-Enigmail-Version: 1.4.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: Srinivasa Kanduru X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 12:37:11 -0000 On 2012-12-12 11:28, Srinivasa Kanduru wrote: > Hi Olli, > > Thanks for the quick response. I have added three packages under net for TAHI testing. I did configuration for that as well. Do I have to reinstall and re-configure them as well ? > > I was wondering if that is not required if basic perl modules will not change with the new ports package. Please advice. > > Thanks again. > Regards, > Srinivas. > Hi Srinivas, hard to tell since I don't know where the the files are located (/usr/local/lib/perl5/5.12.x, /usr/local/lib/perl5/site_perl/5.12.x or somewhere else if not from the ports system) Hint: If you go with ports and do a 'make configure' inside a port, the configuration will be saved in /var/db/ports/$portname/options and reused the next time you build the port. You don't have to configure the port again except config options inside the port Makefile was changed. -- Regards, olli > >> -----Original Message----- >> From: olli hauer [mailto:ohauer@gmx.de] >> Sent: Wednesday, December 12, 2012 2:23 AM >> To: apache@FreeBSD.org >> Cc: Srinivasa Kanduru >> Subject: Re: apache installation failed >> >> On 2012-12-12 08:07, Srinivasa Kanduru wrote:> Hello, >>> >>> I was trying to setup IPv6 TAHI test-suites on FreeBSD 9.0 for IPv6 >> conformance certification . >>> >>> I got the following error when I was trying to install apache 20 as well as 22 >> from the ports directory. The package installer suggested to attach the >> following information for your perusal. >>> >>> I would appreciate if you can let me know if there is anything wrong in my >> setup. >>> >>> Thanks a lot for your help. >>> >>> Regards, >>> Srinivas. >>> >>> ===> Script "configure" failed unexpectedly. >>> Please report the problem to apache@FreeBSD.org [maintainer] and >>> attach the "/usr/ports/www/apache20/work/httpd-2.0.64/config.log" >>> including the output of the failure of your make command. Also, it >>> might be a good idea to provide an overview of all packages installed >>> on your system (e.g. an `ls /var/db/pkg`). >>> >>> [root@tahi-ipv6 apache20]#ls /var/db/pkg >>> apr-0.9.20.0.9.19 kbproto-1.0.5 >>> apr-ipv6-gdbm-db42-1.4.5.1.3.12_1 libiconv-1.13.1_1 >>> autoconf-2.68 libsigsegv-2.10 >>> autoconf-wrapper-20101119 libtool-2.4_1 >>> automake-1.11.1 m4-1.4.16,1 >>> automake-wrapper-20101119 p5-Expect-1.21 >>> bash-4.1.11 p5-IO-Tty-1.10 >>> bison-2.4.3,1 p5-Locale-gettext-1.05_3 >>> ct-2.1.2 pcre-8.20 >>> db42-4.2.52_5 perl-5.12.4_3 >>> elinks-0.11.7_2 python27-2.7.2_3 >>> expat-2.0.1_2 screen-4.0.3_13 >>> gdbm-1.9.1 v6eval-3.3.2 >>> gettext-0.18.1.1 v6eval-remotes-3.0 >>> gmake-3.82 vim-lite-7.3.121 >>> help2man-1.40.4 >>> >> >> Hi Srinivas, >> >> first your ports tree is really outdated, apache20 and apr0 was removed from >> the portstree in Aug. >> >> From your pkg listing I see apr0 and apr1 are installed you have to remove >> apr0 first. I suspect you are using the older pkg tools so the command >> `pkg_delete -rx apr' should work. >> >> Next >> $> cd ports/devel/apr1 >> $> make config (select at last THREADS, IPV6 and DEVRANDOM) $> make >> clean install >> >> $> cd ports/www/apache22/ >> $> make config >> $> make clean install >> >> You apache build was failing because mod_auth_digest failed to build, but >> from the log snippet it is not clear to me why. >> >> I highly suggest to update your ports with portsnap and start over with no >> ports installed (I suspect you have a fast machine) >> >> To start over do the following. >> $> mv /usr/ports /usr/ports.old >> $> portsnap fetch >> $> portsnap extract >> $> mkdir ports/distfiles (so distfiles are placed here and not in the port >> directory) $> pkg_delete -a (removes all your installed ports) $> cd >> ports/lang/perl5.14 (or perl5.16) $> make install $> cd ports/lang/python27 >> $> make install $> cd ports/devel/apr1 $> make config (select at last >> THREADS, IPV6 and DEVRANDOM) $> make install $> cd >> ports/www/apache22 $> make config && make install >> >> -- >> Regards, >> olli > _______________________________________________ > freebsd-apache@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-apache > To unsubscribe, send any mail to "freebsd-apache-unsubscribe@freebsd.org" > > From owner-freebsd-apache@FreeBSD.ORG Wed Dec 12 20:19:27 2012 Return-Path: Delivered-To: apache@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 230BDAFA; Wed, 12 Dec 2012 20:19:27 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id E20FC8FC0A; Wed, 12 Dec 2012 20:19:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qBCKJQAw097510; Wed, 12 Dec 2012 20:19:26 GMT (envelope-from ohauer@freefall.freebsd.org) Received: (from ohauer@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qBCKJQKT097506; Wed, 12 Dec 2012 20:19:26 GMT (envelope-from ohauer) Date: Wed, 12 Dec 2012 20:19:26 GMT Message-Id: <201212122019.qBCKJQKT097506@freefall.freebsd.org> To: dan@obluda.cz, ohauer@FreeBSD.org, apache@FreeBSD.org From: ohauer@FreeBSD.org Subject: Re: ports/173556: [ patch ] no option to compile crypto support in devel/apr1 X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2012 20:19:27 -0000 Synopsis: [ patch ] no option to compile crypto support in devel/apr1 State-Changed-From-To: analyzed->closed State-Changed-By: ohauer State-Changed-When: Wed Dec 12 20:16:42 UTC 2012 State-Changed-Why: I just added the crypto framework to apr. http://www.freebsd.org/cgi/query-pr.cgi?pr=173556 From owner-freebsd-apache@FreeBSD.ORG Fri Dec 14 22:03:17 2012 Return-Path: Delivered-To: apache@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BECD41CAB for ; Fri, 14 Dec 2012 22:03:17 +0000 (UTC) (envelope-from SKanduru@a10networks.com) Received: from mail.a10networks.com (mail.a10networks.com [12.207.16.167]) by mx1.freebsd.org (Postfix) with ESMTP id 8BF388FC20 for ; Fri, 14 Dec 2012 22:03:17 +0000 (UTC) X-AuditID: c0a80b0a-b7faa6d0000014c5-62-50cba21d20de Received: from webmail.a10networks.com (Unknown_Domain [192.168.52.91]) by mail.a10networks.com (Symantec Messaging Gateway) with SMTP id 2B.3A.05317.E12ABC05; Fri, 14 Dec 2012 14:03:10 -0800 (PST) Received: from SJ-MB02.corp.a10networks.com ([fe80::8022:2e09:bc7a:35fa]) by SJ-CASHT02.corp.a10networks.com ([fe80::dce5:5b71:2afa:3ed8%13]) with mapi id 14.02.0283.003; Fri, 14 Dec 2012 14:03:09 -0800 From: Srinivasa Kanduru To: olli hauer , "apache@FreeBSD.org" Subject: RE: apache installation failed Thread-Topic: apache installation failed Thread-Index: Ac3YNoja+gM54DAYRVSETMA3wDYfsQAXykOAABCsYKD//6AigP/8w3lg Date: Fri, 14 Dec 2012 22:03:09 +0000 Message-ID: <4ACB26D93525C544864D91BE088FDC0D51E721@SJ-MB02.corp.a10networks.com> References: <4ACB26D93525C544864D91BE088FDC0D51E260@SJ-MB02.corp.a10networks.com> <50C85AFB.4070902@gmx.de> <4ACB26D93525C544864D91BE088FDC0D51E29B@SJ-MB02.corp.a10networks.com> <50C87A75.6070207@gmx.de> In-Reply-To: <50C87A75.6070207@gmx.de> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [192.168.1.122] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFvrFLMWRmVeSWpSXmKPExsVyYIVJtK7cotMBBquu81i8nzWVzWLeiy8s DkweMz7NZ/H48DEugCmKyyYlNSezLLVI3y6BK2PztQ7GgqlaFatvTmFpYNwv38XIySEhYCLx tOM3C4QtJnHh3nq2LkYuDiGB44wSW16/ZoJwzjFKrHsynRWkik3ASGL/iefsILaIgKfEuuOT 2UBsYQF1ic/znjFBxDUkdv3bAVTPAWS7SUyZVwcSZhFQldi65wpYK69AoMS8z5fBRgoJXGSU OH04GcTmFFCTWH5iKyOIzQh00PdTa8BGMguIS9x6Mp8J4lABiSV7zjND2KISLx//Y4WwFSUa 9rxnhKjXkViw+xMbhK0tsWzha2aIvYISJ2c+YZnAKDoLydhZSFpmIWmZhaRlASPLKkaR3MTM HL1EQ4O81JLy/KLsYr3k/NxNjOAY4ebawbj2tMEhRgEORiUeXuHo0wFCrIllxZW5hxglOJiV RHhL4oBCvCmJlVWpRfnxRaU5qcWHGKU5WJTEeYvLL/kLCaQnlqRmp6YWpBbBZJk4OKUaGE9t KH81Vb219qfZ53V2U4+t3RIftGfdjeBYvuNM6q2nJoeu2VxZqDIv/nzB0ssNBrp/mwQ6b9YK 8F1xYmTIPxxS6Cnxd1JSz3OJrV3H2Oe9Vd75/8P818daDJJu/VqtzaSzYcr8rQ8E/zIt7bv4 uiBdbmXsjlX3M7d0fSiYlNdkZvEnh2367DolluKMREMt5qLiRAB2lDcmjQIAAA== X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Dec 2012 22:03:17 -0000 Hi Olli, Finally I got this to work. The instructions you gave was very useful. Thanks again ! Regards, Srinivas. > -----Original Message----- > From: olli hauer [mailto:ohauer@gmx.de] > Sent: Wednesday, December 12, 2012 4:37 AM > To: apache@FreeBSD.org > Cc: Srinivasa Kanduru > Subject: Re: apache installation failed >=20 > On 2012-12-12 11:28, Srinivasa Kanduru wrote: > > Hi Olli, > > > > Thanks for the quick response. I have added three packages under net f= or > TAHI testing. I did configuration for that as well. Do I have to reinst= all and re- > configure them as well ? > > > > I was wondering if that is not required if basic perl modules will not = change > with the new ports package. Please advice. > > > > Thanks again. > > Regards, > > Srinivas. > > >=20 > Hi Srinivas, >=20 > hard to tell since I don't know where the the files are located > (/usr/local/lib/perl5/5.12.x, /usr/local/lib/perl5/site_perl/5.12.x > or somewhere else if not from the ports system) >=20 > Hint: > If you go with ports and do a 'make configure' inside a port, the configu= ration > will be saved in /var/db/ports/$portname/options and reused the next time > you build the port. You don't have to configure the port again except con= fig > options inside the port Makefile was changed. >=20 > -- > Regards, > olli >=20 >=20 >=20 >=20 > > > >> -----Original Message----- > >> From: olli hauer [mailto:ohauer@gmx.de] > >> Sent: Wednesday, December 12, 2012 2:23 AM > >> To: apache@FreeBSD.org > >> Cc: Srinivasa Kanduru > >> Subject: Re: apache installation failed > >> > >> On 2012-12-12 08:07, Srinivasa Kanduru wrote:> Hello, > >>> > >>> I was trying to setup IPv6 TAHI test-suites on FreeBSD 9.0 for IPv6 > >> conformance certification . > >>> > >>> I got the following error when I was trying to install apache 20 as > >>> well as 22 > >> from the ports directory. The package installer suggested to attach > >> the following information for your perusal. > >>> > >>> I would appreciate if you can let me know if there is anything wrong > >>> in my > >> setup. > >>> > >>> Thanks a lot for your help. > >>> > >>> Regards, > >>> Srinivas. > >>> > >>> =3D=3D=3D> Script "configure" failed unexpectedly. > >>> Please report the problem to apache@FreeBSD.org [maintainer] and > >>> attach the "/usr/ports/www/apache20/work/httpd-2.0.64/config.log" > >>> including the output of the failure of your make command. Also, it > >>> might be a good idea to provide an overview of all packages > >>> installed on your system (e.g. an `ls /var/db/pkg`). > >>> > >>> [root@tahi-ipv6 apache20]#ls /var/db/pkg > >>> apr-0.9.20.0.9.19 kbproto-1.0.5 > >>> apr-ipv6-gdbm-db42-1.4.5.1.3.12_1 libiconv-1.13.1_1 > >>> autoconf-2.68 libsigsegv-2.10 > >>> autoconf-wrapper-20101119 libtool-2.4_1 > >>> automake-1.11.1 m4-1.4.16,1 > >>> automake-wrapper-20101119 p5-Expect-1.21 > >>> bash-4.1.11 p5-IO-Tty-1.10 > >>> bison-2.4.3,1 p5-Locale-gettext-1.05_3 > >>> ct-2.1.2 pcre-8.20 > >>> db42-4.2.52_5 perl-5.12.4_3 > >>> elinks-0.11.7_2 python27-2.7.2_3 > >>> expat-2.0.1_2 screen-4.0.3_13 > >>> gdbm-1.9.1 v6eval-3.3.2 > >>> gettext-0.18.1.1 v6eval-remotes-3.0 > >>> gmake-3.82 vim-lite-7.3.121 > >>> help2man-1.40.4 > >>> > >> > >> Hi Srinivas, > >> > >> first your ports tree is really outdated, apache20 and apr0 was > >> removed from the portstree in Aug. > >> > >> From your pkg listing I see apr0 and apr1 are installed you have to > >> remove > >> apr0 first. I suspect you are using the older pkg tools so the > >> command `pkg_delete -rx apr' should work. > >> > >> Next > >> $> cd ports/devel/apr1 > >> $> make config (select at last THREADS, IPV6 and DEVRANDOM) $> make > >> clean install > >> > >> $> cd ports/www/apache22/ > >> $> make config > >> $> make clean install > >> > >> You apache build was failing because mod_auth_digest failed to build, > >> but from the log snippet it is not clear to me why. > >> > >> I highly suggest to update your ports with portsnap and start over > >> with no ports installed (I suspect you have a fast machine) > >> > >> To start over do the following. > >> $> mv /usr/ports /usr/ports.old > >> $> portsnap fetch > >> $> portsnap extract > >> $> mkdir ports/distfiles (so distfiles are placed here and not in the > >> port > >> directory) $> pkg_delete -a (removes all your installed ports) $> cd > >> ports/lang/perl5.14 (or perl5.16) $> make install $> cd > >> ports/lang/python27 $> make install $> cd ports/devel/apr1 $> make > >> config (select at last THREADS, IPV6 and DEVRANDOM) $> make install > >> $> cd > >> ports/www/apache22 $> make config && make install > >> > >> -- > >> Regards, > >> olli > > _______________________________________________ > > freebsd-apache@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-apache > > To unsubscribe, send any mail to "freebsd-apache- > unsubscribe@freebsd.org" > > > >