From bugmaster at FreeBSD.org Mon Jun 1 11:06:15 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Jun 1 11:06:42 2009 Subject: Current problem reports assigned to apache@FreeBSD.org Message-ID: <200906011106.n51B6Esm020338@freefall.freebsd.org> 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/134577 apache www/apache22: build faild with mod_auth_digest o ports/134456 apache www/apache22: file permissions are wrong a ports/133773 apache net/keepalived port update request o ports/132528 apache [patch] www/apache22 no-accf fix o ports/130479 apache www/apache20 and www/apache22 configure_args busted o ports/128952 apache [NEW PORT] java/javadb: Sun's supported distribution o o ports/128078 apache www/apache20 -- LDAP support is broken o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT o ports/124375 apache www/mod_auth_kerb doesn't compile against heimdal o ports/121134 apache www/mod_log_sql2-dtc scoreboard problem o ports/120229 apache www/apache20 does not pick up usernames from NIS [regr o ports/118003 apache www/apache22: with PgSQL option require only libpq.so. p ports/116984 apache [patch] www/apache13-modssl missing perl5.8 as RUN_DEP o ports/110651 apache www/apache22 Use USE_BDB infrastructure to select appr o ports/108169 apache www/apache20 wrong AP_SAFE_PATH for suEXEC a ports/101566 apache www/apache20 All .svn subdirectories in $(htdocsdir) g f ports/100350 apache www/apache20 profiles not working at system startup/sh a ports/96953 apache www/apache22 port uses its own directories a ports/83644 apache www/apache20 add support for ndbm 19 problems total. From rea-fbsd at codelabs.ru Sat Jun 6 10:00:14 2009 From: rea-fbsd at codelabs.ru (Eygene Ryabinkin) Date: Sat Jun 6 10:00:22 2009 Subject: ports/135310: [patch][vuxml] devel/apr, www/apache22: fix recent vulnerabilities in APR-util Message-ID: <20090606095151.0E55217156@amnesiac.at.no.dns> >Number: 135310 >Category: ports >Synopsis: [patch][vuxml] devel/apr, www/apache22: fix recent vulnerabilities in APR-util >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jun 06 10:00:13 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Eygene Ryabinkin >Release: FreeBSD 8.0-CURRENT amd64 >Organization: Code Labs >Environment: System: FreeBSD 8.0-CURRENT amd64 >Description: Multiple vulnerabilities were discovered in APR-util since 1.3.4: [1]. There are reports from various security teams about this: [2], [3]. There is a PoC at http://securityvulns.ru/files/apache-ied.pl It works for me on Apache 2.2.11_4 with Subversion DAV -- all httpd children are in the RUN state and MaxChild limit is easily reached. >How-To-Repeat: [1] http://www.apache.org/dist/apr/CHANGES-APR-UTIL-1.3 [2] http://www.securityfocus.com/archive/1/504107 [3] https://bugzilla.redhat.com/show_bug.cgi?id=504390 >Fix: This is the patch for Apache 2.2 port with all fixes backported. It works on my servers for a couple of hours without any visible regressions. --- apache22-backport-apr-util-fixed.diff begins here --- >From 60b761ec3dfe066e0f2aae4a0aa69b96ec76d995 Mon Sep 17 00:00:00 2001 From: Eygene Ryabinkin Date: Sat, 6 Jun 2009 12:54:20 +0400 Signed-off-by: Eygene Ryabinkin --- www/apache22/Makefile | 2 +- .../files/patch-apr-fix-apr_xml-expat-attack | 51 ++++++++++++++++++++ .../files/patch-apr-fix-brigade_vprintf_overflow | 18 +++++++ .../files/patch-apr-fix-strmatch-underflow | 21 ++++++++ 4 files changed, 91 insertions(+), 1 deletions(-) create mode 100644 www/apache22/files/patch-apr-fix-apr_xml-expat-attack create mode 100644 www/apache22/files/patch-apr-fix-brigade_vprintf_overflow create mode 100644 www/apache22/files/patch-apr-fix-strmatch-underflow diff --git a/www/apache22/Makefile b/www/apache22/Makefile index 97cd44a..e470408 100644 --- a/www/apache22/Makefile +++ b/www/apache22/Makefile @@ -9,7 +9,7 @@ PORTNAME= apache PORTVERSION= 2.2.11 -PORTREVISION?= 4 +PORTREVISION?= 5 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} DISTNAME= httpd-${PORTVERSION} diff --git a/www/apache22/files/patch-apr-fix-apr_xml-expat-attack b/www/apache22/files/patch-apr-fix-apr_xml-expat-attack new file mode 100644 index 0000000..2040f08 --- /dev/null +++ b/www/apache22/files/patch-apr-fix-apr_xml-expat-attack @@ -0,0 +1,51 @@ +Taken from + http://svn.apache.org/viewvc/apr/apr/trunk/xml/apr_xml.c?r1=757729&r2=781403&view=patch + +--- srclib/apr-util/xml/apr_xml.c 2009/03/24 11:12:27 757729 ++++ srclib/apr-util/xml/apr_xml.c 2009/06/03 14:26:19 781403 +@@ -347,6 +347,25 @@ + return APR_SUCCESS; + } + ++#if XML_MAJOR_VERSION > 1 ++/* Stop the parser if an entity declaration is hit. */ ++static void entity_declaration(void *userData, const XML_Char *entityName, ++ int is_parameter_entity, const XML_Char *value, ++ int value_length, const XML_Char *base, ++ const XML_Char *systemId, const XML_Char *publicId, ++ const XML_Char *notationName) ++{ ++ apr_xml_parser *parser = userData; ++ ++ XML_StopParser(parser->xp, XML_FALSE); ++} ++#else ++/* A noop default_handler. */ ++static void default_handler(void *userData, const XML_Char *s, int len) ++{ ++} ++#endif ++ + APU_DECLARE(apr_xml_parser *) apr_xml_parser_create(apr_pool_t *pool) + { + apr_xml_parser *parser = apr_pcalloc(pool, sizeof(*parser)); +@@ -372,6 +391,19 @@ + XML_SetElementHandler(parser->xp, start_handler, end_handler); + XML_SetCharacterDataHandler(parser->xp, cdata_handler); + ++ /* Prevent the "billion laughs" attack against expat by disabling ++ * internal entity expansion. With 2.x, forcibly stop the parser ++ * if an entity is declared - this is safer and a more obvious ++ * failure mode. With older versions, installing a noop ++ * DefaultHandler means that internal entities will be expanded as ++ * the empty string, which is also sufficient to prevent the ++ * attack. */ ++#if XML_MAJOR_VERSION > 1 ++ XML_SetEntityDeclHandler(parser->xp, entity_declaration); ++#else ++ XML_SetDefaultHandler(parser->xp, default_handler); ++#endif ++ + return parser; + } + diff --git a/www/apache22/files/patch-apr-fix-brigade_vprintf_overflow b/www/apache22/files/patch-apr-fix-brigade_vprintf_overflow new file mode 100644 index 0000000..7ac9767 --- /dev/null +++ b/www/apache22/files/patch-apr-fix-brigade_vprintf_overflow @@ -0,0 +1,18 @@ +Equal to the fix in the apr-util itself: + http://svn.apache.org/viewvc/apr/apr/trunk/buckets/apr_brigade.c?r1=768417&r2=768416&pathrev=768417&view=patch + +See discuission about original vulnerability at + http://www.mail-archive.com/dev@apr.apache.org/msg21592.html + +--- srclib/apr-util/buckets/apr_brigade.c.orig 2009-06-06 12:32:12.000000000 +0400 ++++ srclib/apr-util/buckets/apr_brigade.c 2009-06-06 12:35:30.000000000 +0400 +@@ -689,9 +689,6 @@ + return -1; + } + +- /* tack on null terminator to remaining string */ +- *(vd.vbuff.curpos) = '\0'; +- + /* write out what remains in the buffer */ + return apr_brigade_write(b, flush, ctx, buf, vd.vbuff.curpos - buf); + } diff --git a/www/apache22/files/patch-apr-fix-strmatch-underflow b/www/apache22/files/patch-apr-fix-strmatch-underflow new file mode 100644 index 0000000..c1e2523 --- /dev/null +++ b/www/apache22/files/patch-apr-fix-strmatch-underflow @@ -0,0 +1,21 @@ +Fix underflow in apr_strmatch_precompile, + http://svn.apache.org/viewvc/apr/apr/trunk/strmatch/apr_strmatch.c?r1=757729&r2=779878&view=patch + +--- srclib/apr-util/strmatch/apr_strmatch.c 2009/03/24 11:12:27 757729 ++++ srclib/apr-util/strmatch/apr_strmatch.c 2009/05/29 07:47:52 779878 +@@ -103,13 +103,13 @@ + if (case_sensitive) { + pattern->compare = match_boyer_moore_horspool; + for (i = 0; i < pattern->length - 1; i++) { +- shift[(int)s[i]] = pattern->length - i - 1; ++ shift[(unsigned char)s[i]] = pattern->length - i - 1; + } + } + else { + pattern->compare = match_boyer_moore_horspool_nocase; + for (i = 0; i < pattern->length - 1; i++) { +- shift[apr_tolower(s[i])] = pattern->length - i - 1; ++ shift[(unsigned char)apr_tolower(s[i])] = pattern->length - i - 1; + } + } + pattern->context = shift; -- 1.6.3.1 --- apache22-backport-apr-util-fixed.diff ends here --- This is the patch that updates the devel/apr to the latest stable version, thus fixing all 3 issues. I had also made portlint happy by using after MAKE_JOBS_SAFE. And since there are additional libraries now installed, APU extras logics was a bit changed, because there are two tests for inclusion of BDB/GDBM, not just WITH_, but also library existence check. --- update-to-1.3.5-and-1.3.7.diff begins here --- >From 8d36501ac0c6c797a6b1ae59bd71e54b511abeae Mon Sep 17 00:00:00 2001 From: Eygene Ryabinkin Date: Sat, 6 Jun 2009 12:21:27 +0400 Subject: [PATCH] devel/apr: update to 1.3.5 and apr-util to 1.3.7 There were 3 security vulnerabilities in apr-util since 1.3.4: http://www.apache.org/dist/apr/CHANGES-APR-UTIL-1.3 Signed-off-by: Eygene Ryabinkin --- devel/apr/Makefile | 31 +++++++++++++++++++++---------- devel/apr/distinfo | 12 ++++++------ devel/apr/files/patch-apr_hints.m4 | 4 ++-- devel/apr/pkg-plist | 12 ++++++++++++ 4 files changed, 41 insertions(+), 18 deletions(-) diff --git a/devel/apr/Makefile b/devel/apr/Makefile index 0771859..9bfa146 100644 --- a/devel/apr/Makefile +++ b/devel/apr/Makefile @@ -6,7 +6,6 @@ PORTNAME= apr PORTVERSION= ${APR_VERSION}.${APU_VERSION} -PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_APACHE} MASTER_SITE_SUBDIR= apr @@ -17,7 +16,7 @@ COMMENT= Apache Portability Library LIB_DEPENDS+= expat.6:${PORTSDIR}/textproc/expat2 -MAKE_JOBS_SAFE= yes +MAKE_JOBS_SAFE= yes OPTIONS= THREADS "Enable Threads in apr" on \ IPV6 "Enable IPV6 Support in apr" off \ @@ -28,8 +27,8 @@ OPTIONS= THREADS "Enable Threads in apr" on \ MYSQL "Enable MySQL suport in apr-util" off \ PGSQL "Enable Postgresql suport in apr-util" off -APR_VERSION= 1.3.3 -APU_VERSION= 1.3.4 +APR_VERSION= 1.3.5 +APU_VERSION= 1.3.7 USE_ICONV= yes USE_AUTOTOOLS= automake:19 autoconf:262 libtool:15:env @@ -52,12 +51,6 @@ APU_CONF_ARGS= --with-apr=${APR_WRKDIR} \ .include -.if defined(WITH_MYSQL) || defined(WITH_PGSQL) || defined (WITH_LDAP) -PLIST_SUB+= APU_EXTRAS="" -.else -PLIST_SUB+= APU_EXTRAS="@comment " -.endif - ########## APR Options .if defined(WITHOUT_THREADS) APR_CONF_ARGS+= --disable-threads @@ -83,8 +76,10 @@ PKGNAMESUFFIX= -ipv6 ######### APR-Util Options .if defined(WITHOUT_GDBM) +PLIST_SUB+= GDBM="@comment " APU_CONF_ARGS+= --without-gdbm .elif defined(WITH_GDBM) || exists(${LOCALBASE}/lib/libgdbm.so.3) +PLIST_SUB+= GDBM="" LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm APU_CONF_ARGS+= --with-gdbm=${LOCALBASE} .if defined(PKGNAMESUFFIX) @@ -93,12 +88,16 @@ PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-gdbm PKGNAMESUFFIX= -gdbm .endif .else +PLIST_SUB+= GDBM="@comment " APR_UTIL_CONF_ARGS+= --without-gdbm .endif .if defined(WITHOUT_BDB) +PLIST_SUB+= BDB="@comment " APU_CONF_ARGS+= --without-berkeley-db .elif defined(WITH_BDB) || exists(${LOCALBASE}/lib/libdb-4.2.so.2) +APU_EXTRAS= yes +PLIST_SUB+= BDB="" USE_BDB= 42+ APU_CONF_ARGS+= --with-berkeley-db=${BDB_INCLUDE_DIR}:${BDB_LIB_DIR} .if defined(PKGNAMESUFFIX) @@ -109,8 +108,11 @@ PKGNAMESUFFIX= -${BDB_INCLUDE_DIR:S,^${LOCALBASE}/include/,,} .endif .if defined(WITHOUT_NDBM) +PLIST_SUB+= NDBM="@comment " APU_CONF_ARGS+= --without-ndbm .elif defined(WITH_NDBM) +APU_EXTRAS= yes +PLIST_SUB+= NDBM="" APU_CONF_ARGS+= --with-ndbm=/usr .if defined(PKGNAMESUFFIX) PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-ndbm @@ -120,6 +122,7 @@ PKGNAMESUFFIX= -ndbm .endif .if defined(WITH_LDAP) +APU_EXTRAS= yes PLIST_SUB+= LDAP="" USE_OPENLDAP= yes APU_CONF_ARGS+= --with-ldap-include=${LOCALBASE}/include \ @@ -134,6 +137,7 @@ PLIST_SUB+= LDAP="@comment " .endif .if defined(WITH_MYSQL) +APU_EXTRAS= yes PLIST_SUB+= MYSQL="" USE_MYSQL= YES APU_CONF_ARGS+= --with-mysql=${LOCALBASE} @@ -150,6 +154,7 @@ PLIST_SUB+= MYSQL="@comment " .endif .if defined(WITH_PGSQL) +APU_EXTRAS= yes PLIST_SUB+= PGSQL="" USE_PGSQL= YES APU_CONF_ARGS+= --with-pgsql=${LOCALBASE} @@ -163,6 +168,12 @@ PKGNAMESUFFIX= -pgsql PLIST_SUB+= PGSQL="@comment " .endif +.if defined(APU_EXTRAS) +PLIST_SUB+= APU_EXTRAS="" +.else +PLIST_SUB+= APU_EXTRAS="@comment " +.endif + post-patch: ${REINPLACE_CMD} -e 's/OSVERSION/'${OSVERSION}'/g' \ ${APR_WRKDIR}/build/apr_hints.m4 diff --git a/devel/apr/distinfo b/devel/apr/distinfo index 52713d4..7e787e6 100644 --- a/devel/apr/distinfo +++ b/devel/apr/distinfo @@ -1,6 +1,6 @@ -MD5 (apr-1.3.3.tar.gz) = b254a9abecaedb05efde71daa7517480 -SHA256 (apr-1.3.3.tar.gz) = 390af2f94c38d9fa03cd6caac3549058bb3e2c4d9f7408b7b829ad75bd5cc273 -SIZE (apr-1.3.3.tar.gz) = 1160542 -MD5 (apr-util-1.3.4.tar.gz) = a10e2ca150ff07f484c724c36142211f -SHA256 (apr-util-1.3.4.tar.gz) = 3f07ffdb18fb853290c9b83e82cd5cae66b8fbc357bd391e846c0afdd24fed7e -SIZE (apr-util-1.3.4.tar.gz) = 778902 +MD5 (apr-1.3.5.tar.gz) = 2a3f33c2186f456fd60a34a7c2989580 +SHA256 (apr-1.3.5.tar.gz) = f047422b39a5e5d933d598bd9fca2a1184e1506e4cd66364a990c7f2cd76960d +SIZE (apr-1.3.5.tar.gz) = 1162875 +MD5 (apr-util-1.3.7.tar.gz) = 0a6802ef6d874db645150ae4a75f41fa +SHA256 (apr-util-1.3.7.tar.gz) = fadd6a0c55596b2c21375942e3acefc33715e647ed4770dc398d08d8783a39e0 +SIZE (apr-util-1.3.7.tar.gz) = 788206 diff --git a/devel/apr/files/patch-apr_hints.m4 b/devel/apr/files/patch-apr_hints.m4 index 5549809..a360c89 100644 --- a/devel/apr/files/patch-apr_hints.m4 +++ b/devel/apr/files/patch-apr_hints.m4 @@ -1,5 +1,5 @@ ---- apr-1.3.3/build/apr_hints.m4.orig Wed Oct 27 11:12:28 2004 -+++ apr-1.3.3/build/apr_hints.m4 Wed Oct 27 11:25:32 2004 +--- apr-1.3.5/build/apr_hints.m4.orig Wed Oct 27 11:12:28 2004 ++++ apr-1.3.5/build/apr_hints.m4 Wed Oct 27 11:25:32 2004 @@ -137,11 +137,7 @@ ;; *-freebsd*) diff --git a/devel/apr/pkg-plist b/devel/apr/pkg-plist index 18e965e..a091c1c 100644 --- a/devel/apr/pkg-plist +++ b/devel/apr/pkg-plist @@ -84,6 +84,18 @@ lib/libaprutil-1.a lib/libaprutil-1.la lib/libaprutil-1.so lib/libaprutil-1.so.%%SHLIB_MAJOR%% +%%BDB%%lib/apr-util-1/apr_dbm_db-1.so +%%BDB%%lib/apr-util-1/apr_dbm_db.so +%%BDB%%lib/apr-util-1/apr_dbm_db.la +%%BDB%%lib/apr-util-1/apr_dbm_db.a +%%GDBM%%lib/apr-util-1/apr_dbm_gdbm-1.so +%%GDBM%%lib/apr-util-1/apr_dbm_gdbm.so +%%GDBM%%lib/apr-util-1/apr_dbm_gdbm.la +%%GDBM%%lib/apr-util-1/apr_dbm_gdbm.a +%%NDBM%%lib/apr-util-1/apr_dbm_ndbm-1.so +%%NDBM%%lib/apr-util-1/apr_dbm_ndbm.so +%%NDBM%%lib/apr-util-1/apr_dbm_ndbm.la +%%NDBM%%lib/apr-util-1/apr_dbm_ndbm.a %%LDAP%%lib/apr-util-1/apr_ldap-1.so %%LDAP%%lib/apr-util-1/apr_ldap.so %%LDAP%%lib/apr-util-1/apr_ldap.la -- 1.6.3.1 --- update-to-1.3.5-and-1.3.7.diff ends here --- The following VuXML entry should be evaluated and added. --- vuln.xml begins here --- apr -- multiple vulnerabilities apr 1.3.5.1.3.7 apache 2.2.02.2.11_5

Secunia reports:

Some vulnerabilities have been reported in APR-util, which can be exploited by malicious users and malicious people to cause a DoS (Denial of Service).

A vulnerability is caused due to an error in the processing of XML files and can be exploited to exhaust all available memory via a specially crafted XML file containing a predefined entity inside an entity definition.

A vulnerability is caused due to an error within the "apr_strmatch_precompile()" function in strmatch/apr_strmatch.c, which can be exploited to crash an application using the library.

RedHat reports:

A single NULL byte buffer overflow flaw was found in apr-util's apr_brigade_vprintf() function.

CVE-2009-0023 35221 http://www.apache.org/dist/apr/CHANGES-APR-UTIL-1.3 http://secunia.com/advisories/35284/ https://bugzilla.redhat.com/show_bug.cgi?id=504390 2009-06-05 TODAY
--- vuln.xml ends here --- I have no time yet to look at Apache < 2.2, but may be there are also these bugs in there. >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat Jun 6 10:00:32 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jun 6 10:00:44 2009 Subject: ports/135310: [patch][vuxml] devel/apr, www/apache22: fix recent vulnerabilities in APR-util Message-ID: <200906061000.n56A0Vnj004946@freefall.freebsd.org> Synopsis: [patch][vuxml] devel/apr, www/apache22: fix recent vulnerabilities in APR-util Responsible-Changed-From-To: freebsd-ports-bugs->pgollucci Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jun 6 10:00:31 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=135310 From linimon at FreeBSD.org Sun Jun 7 06:28:52 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Jun 7 06:28:58 2009 Subject: FreeBSD ports that you maintain which are currently scheduled for deletion Message-ID: <20090607062851.16F981CCC1@mail.droso.net> Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems (such as via a PR), the ports will be deleted. portname: www/apache-jserv description: Loadable servlet module for apache maintainer: apache@FreeBSD.org deprecated because: superceeded by tomcat expiration date: 2009-06-09 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=apache-jserv If this problem is one that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Thanks for your efforts to help improve FreeBSD. From pgollucci at FreeBSD.org Mon Jun 8 03:14:05 2009 From: pgollucci at FreeBSD.org (pgollucci@FreeBSD.org) Date: Mon Jun 8 03:14:11 2009 Subject: ports/135310: [patch][vuxml] devel/apr, www/apache22: fix recent vulnerabilities in APR-util Message-ID: <200906080314.n583E4Iq018567@freefall.freebsd.org> Synopsis: [patch][vuxml] devel/apr, www/apache22: fix recent vulnerabilities in APR-util State-Changed-From-To: open->feedback State-Changed-By: pgollucci State-Changed-When: Mon Jun 8 03:14:03 UTC 2009 State-Changed-Why: Ask for submitter fix. http://www.freebsd.org/cgi/query-pr.cgi?pr=135310 From pgollucci at FreeBSD.org Mon Jun 8 05:11:31 2009 From: pgollucci at FreeBSD.org (pgollucci@FreeBSD.org) Date: Mon Jun 8 05:11:37 2009 Subject: ports/135310: [patch][vuxml] devel/apr, www/apache22: fix recent vulnerabilities in APR-util Message-ID: <200906080511.n585BUF8016726@freefall.freebsd.org> Synopsis: [patch][vuxml] devel/apr, www/apache22: fix recent vulnerabilities in APR-util State-Changed-From-To: feedback->closed State-Changed-By: pgollucci State-Changed-When: Mon Jun 8 05:11:30 UTC 2009 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=135310 From bugmaster at FreeBSD.org Mon Jun 8 11:06:15 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Jun 8 11:06:45 2009 Subject: Current problem reports assigned to apache@FreeBSD.org Message-ID: <200906081106.n58B6EpY019877@freefall.freebsd.org> 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/134577 apache www/apache22: build faild with mod_auth_digest o ports/134456 apache www/apache22: file permissions are wrong a ports/133773 apache net/keepalived port update request o ports/132528 apache [patch] www/apache22 no-accf fix o ports/130479 apache www/apache20 and www/apache22 configure_args busted o ports/128952 apache [NEW PORT] java/javadb: Sun's supported distribution o o ports/128078 apache www/apache20 -- LDAP support is broken o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT o ports/124375 apache www/mod_auth_kerb doesn't compile against heimdal o ports/121134 apache www/mod_log_sql2-dtc scoreboard problem o ports/120229 apache www/apache20 does not pick up usernames from NIS [regr o ports/118003 apache www/apache22: with PgSQL option require only libpq.so. p ports/116984 apache [patch] www/apache13-modssl missing perl5.8 as RUN_DEP o ports/110651 apache www/apache22 Use USE_BDB infrastructure to select appr o ports/108169 apache www/apache20 wrong AP_SAFE_PATH for suEXEC a ports/101566 apache www/apache20 All .svn subdirectories in $(htdocsdir) g f ports/100350 apache www/apache20 profiles not working at system startup/sh a ports/96953 apache www/apache22 port uses its own directories a ports/83644 apache www/apache20 add support for ndbm 19 problems total. From coco at executive-computing.de Tue Jun 9 23:15:53 2009 From: coco at executive-computing.de (Marco Steinbach) Date: Tue Jun 9 23:16:00 2009 Subject: Thank you Message-ID: <4A2EE98F.3020000@executive-computing.de> You're sparing me a good deal of work with what you're providing. I so often tend to forget the work you're doing, just because things just work. So, here's a sincere "Thank you" for bringing Apache to FreeBSD, keeping it up to date and enabling me to painlessly upgrade it transparently. If any of you (supposing apache@ refers to multiple people) happens to be around in Frankfurt am Main in Germany anytime, I'd be glad to pick you up for some introduction to some of the local beverages. MfG CoCo From pgollucci at FreeBSD.org Wed Jun 10 06:18:03 2009 From: pgollucci at FreeBSD.org (pgollucci@FreeBSD.org) Date: Wed Jun 10 06:18:09 2009 Subject: ports/100350: www/apache20 profiles not working at system startup/shutdown time due to unexpected $0 value Message-ID: <200906100618.n5A6I22T081592@freefall.freebsd.org> Synopsis: www/apache20 profiles not working at system startup/shutdown time due to unexpected $0 value State-Changed-From-To: feedback->closed State-Changed-By: pgollucci State-Changed-When: Wed Jun 10 06:18:02 UTC 2009 State-Changed-Why: feed back timeout (1.5 months from committers) http://www.freebsd.org/cgi/query-pr.cgi?pr=100350 From pgollucci at FreeBSD.org Wed Jun 10 06:18:38 2009 From: pgollucci at FreeBSD.org (pgollucci@FreeBSD.org) Date: Wed Jun 10 06:18:44 2009 Subject: ports/132528: [patch] www/apache22 no-accf fix Message-ID: <200906100618.n5A6Ibej081683@freefall.freebsd.org> Synopsis: [patch] www/apache22 no-accf fix Responsible-Changed-From-To: apache->pgollucci Responsible-Changed-By: pgollucci Responsible-Changed-When: Wed Jun 10 06:18:37 UTC 2009 Responsible-Changed-Why: this can go in the next round http://www.freebsd.org/cgi/query-pr.cgi?pr=132528 From pgollucci at FreeBSD.org Wed Jun 10 06:18:54 2009 From: pgollucci at FreeBSD.org (pgollucci@FreeBSD.org) Date: Wed Jun 10 06:19:01 2009 Subject: ports/134456: www/apache22: file permissions are wrong Message-ID: <200906100618.n5A6IrJE081776@freefall.freebsd.org> Synopsis: www/apache22: file permissions are wrong Responsible-Changed-From-To: apache->pgollucci Responsible-Changed-By: pgollucci Responsible-Changed-When: Wed Jun 10 06:18:53 UTC 2009 Responsible-Changed-Why: this can go in the next round http://www.freebsd.org/cgi/query-pr.cgi?pr=134456 From pgollucci at FreeBSD.org Wed Jun 10 06:27:49 2009 From: pgollucci at FreeBSD.org (pgollucci@FreeBSD.org) Date: Wed Jun 10 06:27:55 2009 Subject: ports/110651: www/apache22 Use USE_BDB infrastructure to select appropriate db[2-4] Message-ID: <200906100627.n5A6Rmhl088784@freefall.freebsd.org> Synopsis: www/apache22 Use USE_BDB infrastructure to select appropriate db[2-4] Responsible-Changed-From-To: apache->pgollucci Responsible-Changed-By: pgollucci Responsible-Changed-When: Wed Jun 10 06:27:48 UTC 2009 Responsible-Changed-Why: this one can go in the next round too http://www.freebsd.org/cgi/query-pr.cgi?pr=110651 From pgollucci at FreeBSD.org Fri Jun 12 06:34:48 2009 From: pgollucci at FreeBSD.org (Philip M. Gollucci) Date: Fri Jun 12 06:34:59 2009 Subject: apr Message-ID: <4A31F4AB.5040504@FreeBSD.org> All, I'd like to propose the following: devel/apr0 0.9.x devel/apr1 1.x devel/apr2 2.x (un-released, but soon) Then, I'd propose that any port that bundles apr have it 'removed' and those ports depend on the apr ports. I.E www/apache22 www/apache20 devel/subversion We get to eliminate WITH_APR_FROM_PORTS knob and WITH_APACHE2_APR. This will be come a larger issue once apr2 is relased and the imminent www/apache23, www/apache24. From 000.fbsd at quip.cz Fri Jun 12 08:04:53 2009 From: 000.fbsd at quip.cz (Miroslav Lachman) Date: Fri Jun 12 08:05:01 2009 Subject: upgrade to apache-2.2.11_6 failed Message-ID: <4A320794.6040605@quip.cz> uname: FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC 2009 root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 upgrade command: portmaster apache-2.2.11_4 [..snip..] checking for stdint.h... yes checking for unistd.h... yes checking for ldap support... checking for Berkeley DB 4.1 in /usr/local/include/db41 and /usr/local/lib... checking db41/db.h usability... no checking db41/db.h presence... no checking for db41/db.h... no configure: error: Berkeley db4 not found configure failed for srclib/apr-util ===> Script "configure" failed unexpectedly. Please report the problem to apache@FreeBSD.org [maintainer] and attach the "/usr/ports/www/apache22/work/httpd-2.2.11/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`). *** Error code 1 Stop in /usr/ports/www/apache22. *** Error code 1 Stop in /usr/ports/www/apache22. ===>>> make failed for www/apache22 ===>>> Aborting update But there is db41 installed for a long time! (db41-4.1.25_4) ~/# ls -al /usr/local/include/db41/db* -r--r--r-- 1 root wheel 74K Feb 9 2008 /usr/local/include/db41/db.h -r--r--r-- 1 root wheel 5.8K Feb 9 2008 /usr/local/include/db41/db_185.h -r--r--r-- 1 root wheel 25K Feb 9 2008 /usr/local/include/db41/db_cxx.h ~/# ls -al /usr/local/lib/libdb41* -rw-r--r-- 1 root wheel 915K Feb 9 2008 /usr/local/lib/libdb41.a lrwxr-xr-x 1 root wheel 12B Feb 9 2008 /usr/local/lib/libdb41.so@ -> libdb41.so.1 -rwxr-xr-x 1 root wheel 753K Feb 9 2008 /usr/local/lib/libdb41.so.1* -rw-r--r-- 1 root wheel 1.0M Feb 9 2008 /usr/local/lib/libdb41_cxx.a lrwxr-xr-x 1 root wheel 16B Feb 9 2008 /usr/local/lib/libdb41_cxx.so@ -> libdb41_cxx.so.1 -rwxr-xr-x 1 root wheel 838K Feb 9 2008 /usr/local/lib/libdb41_cxx.so.1* --------------------------------------------------- content of an apache22/work/httpd-2.2.11/config.log --------------------------------------------------- This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.62. Invocation command line was $ ./configure --prefix=/usr/local --enable-layout=FreeBSD --with-perl=/usr/local/bin/perl5.8.9 --with-port=80 --with-expat=/usr/local --with-iconv=/usr/local --enable-http --with-pcre=/usr/local --disable-authn-file --disable-authn-default --disable-authz-host --disable-authz-groupfile --disable-authz-user --disable-authz-default --disable-auth-basic --disable-charset-lite --disable-include --disable-log-config --disable-env --disable-setenvif --disable-mime --disable-status --disable-autoindex --disable-asis --disable-cgid --disable-cgi --disable-negotiation --disable-dir --disable-imagemap --disable-actions --disable-userdir --disable-alias --disable-filter --disable-proxy --disable-proxy-connect --disable-proxy-ftp --disable-proxy-http --disable-proxy-ajp --disable-proxy-balancer --enable-so --enable-mods-shared=auth_basic auth_digest authn_file authn_default authz_host authz_user authz_dbm authz_default dav dav_fs alias autoindex cgi deflate dir env expires include log_config mime negotiation rewrite setenvif status ssl --with-dbm=db41 --with-berkeley-db=/usr/local/include/db41:/usr/local/lib --without-mysql --without-pgsql --without-sqlite3 --with-ssl=/usr --disable-ipv6 --with-mpm=prefork --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info/ --build=i386-portbld-freebsd7.2 ## --------- ## ## Platform. ## ## --------- ## hostname = track.comoga.cz uname -m = i386 uname -r = 7.2-RELEASE uname -s = FreeBSD uname -v = FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC 2009 root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC /usr/bin/uname -p = i386 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /bin PATH: /usr/bin PATH: /sbin PATH: /usr/sbin PATH: /usr/local/bin PATH: /usr/local/sbin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2498: checking for chosen layout configure:2500: result: FreeBSD configure:3305: checking for working mkdir -p configure:3321: result: yes configure:3338: checking build system type configure:3356: result: i386-portbld-freebsd7.2 configure:3378: checking host system type configure:3393: result: i386-portbld-freebsd7.2 configure:3415: checking target system type configure:3430: result: i386-portbld-freebsd7.2 configure:3502: checking for APR configure:3587: result: yes configure:3867: checking for APR-util configure:3952: result: yes ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i386-portbld-freebsd7.2 ac_cv_env_CC_set=set ac_cv_env_CC_value=cc ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value='-O2 -fno-strict-aliasing -pipe -I/usr/include' ac_cv_env_CPPFLAGS_set=set ac_cv_env_CPPFLAGS_value='' ac_cv_env_CPP_set='' ac_cv_env_CPP_value='' ac_cv_env_LDFLAGS_set=set ac_cv_env_LDFLAGS_value=' -rpath=/usr/lib:/usr/local/lib -L/usr/lib' ac_cv_env_LIBS_set='' ac_cv_env_LIBS_value='' ac_cv_env_build_alias_set=set ac_cv_env_build_alias_value=i386-portbld-freebsd7.2 ac_cv_env_host_alias_set='' ac_cv_env_host_alias_value='' ac_cv_env_target_alias_set='' ac_cv_env_target_alias_value='' ac_cv_host=i386-portbld-freebsd7.2 ac_cv_mkdir_p=yes ac_cv_target=i386-portbld-freebsd7.2 lt_cv_sys_max_cmd_len=262144 ## ----------------- ## ## Output variables. ## ## ----------------- ## APACHECTL_ULIMIT='' APR_BINDIR='/usr/local/bin' APR_CONFIG='/usr/local/bin/apr-1-config' APR_INCLUDEDIR='/usr/ports/www/apache22/work/httpd-2.2.11/srclib/apr/include' APR_VERSION='1.3.3' APU_BINDIR='' APU_CONFIG='' APU_INCLUDEDIR='' APU_VERSION='' AP_BUILD_SRCLIB_DIRS='apr ' AP_CLEAN_SRCLIB_DIRS=' apr' AP_LIBS='' AWK='' BUILTIN_LIBS='' CC='cc' CFLAGS='-O2 -fno-strict-aliasing -pipe -I/usr/include' CORE_IMPLIB='' CORE_IMPLIB_FILE='' CPP='cc -E' CPPFLAGS=' ' CXX='c++' CXXFLAGS='-O2 -fno-strict-aliasing -pipe -I/usr/include' DEFS='' DSO_MODULES='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='' EXEEXT='' EXTRA_CFLAGS='' EXTRA_CPPFLAGS='' EXTRA_CXXFLAGS='' EXTRA_INCLUDES='' EXTRA_LDFLAGS='' EXTRA_LIBS='' GREP='' HTTPD_LDFLAGS='' HTTPD_VERSION='' INCLUDES='' INSTALL='/usr/bin/install -c -o root -g wheel' INSTALL_DSO='' INSTALL_PROG_FLAGS='' LDFLAGS=' -rpath=/usr/lib:/usr/local/lib -L/usr/lib' LIBOBJS='' LIBS='' LIBTOOL='/usr/local/bin/libtool' LN_S='' LTCFLAGS='' LTFLAGS='' LTLIBOBJS='' LT_LDFLAGS='' LYNX_PATH='' MKDEP='' MKINSTALLDIRS='' MK_IMPLIB='' MODULE_CLEANDIRS='' MODULE_DIRS='' MOD_ACTIONS_LDADD='' MOD_ALIAS_LDADD='' MOD_ASIS_LDADD='' MOD_AUTHNZ_LDAP_LDADD='' MOD_AUTHN_ALIAS_LDADD='' MOD_AUTHN_ANON_LDADD='' MOD_AUTHN_DBD_LDADD='' MOD_AUTHN_DBM_LDADD='' MOD_AUTHN_DEFAULT_LDADD='' MOD_AUTHN_FILE_LDADD='' MOD_AUTHZ_DBM_LDADD='' MOD_AUTHZ_DEFAULT_LDADD='' MOD_AUTHZ_GROUPFILE_LDADD='' MOD_AUTHZ_HOST_LDADD='' MOD_AUTHZ_OWNER_LDADD='' MOD_AUTHZ_USER_LDADD='' MOD_AUTH_BASIC_LDADD='' MOD_AUTH_DIGEST_LDADD='' MOD_AUTOINDEX_LDADD='' MOD_BUCKETEER_LDADD='' MOD_CACHE_LDADD='' MOD_CASE_FILTER_IN_LDADD='' MOD_CASE_FILTER_LDADD='' MOD_CERN_META_LDADD='' MOD_CGID_LDADD='' MOD_CGI_LDADD='' MOD_CHARSET_LITE_LDADD='' MOD_DAV_FS_LDADD='' MOD_DAV_LDADD='' MOD_DAV_LOCK_LDADD='' MOD_DBD_LDADD='' MOD_DEFLATE_LDADD='' MOD_DIR_LDADD='' MOD_DISK_CACHE_LDADD='' MOD_DUMPIO_LDADD='' MOD_ECHO_LDADD='' MOD_ENV_LDADD='' MOD_EXAMPLE_LDADD='' MOD_EXPIRES_LDADD='' MOD_EXT_FILTER_LDADD='' MOD_FILE_CACHE_LDADD='' MOD_FILTER_LDADD='' MOD_HEADERS_LDADD='' MOD_HTTP_LDADD='' MOD_IDENT_LDADD='' MOD_IMAGEMAP_LDADD='' MOD_INCLUDE_LDADD='' MOD_INFO_LDADD='' MOD_ISAPI_LDADD='' MOD_LDAP_LDADD='' MOD_LOGIO_LDADD='' MOD_LOG_CONFIG_LDADD='' MOD_LOG_FORENSIC_LDADD='' MOD_MEM_CACHE_LDADD='' MOD_MIME_LDADD='' MOD_MIME_MAGIC_LDADD='' MOD_NEGOTIATION_LDADD='' MOD_OPTIONAL_FN_EXPORT_LDADD='' MOD_OPTIONAL_FN_IMPORT_LDADD='' MOD_OPTIONAL_HOOK_EXPORT_LDADD='' MOD_OPTIONAL_HOOK_IMPORT_LDADD='' MOD_PROXY_AJP_LDADD='' MOD_PROXY_BALANCER_LDADD='' MOD_PROXY_CONNECT_LDADD='' MOD_PROXY_FTP_LDADD='' MOD_PROXY_HTTP_LDADD='' MOD_PROXY_LDADD='' MOD_REWRITE_LDADD='' MOD_SETENVIF_LDADD='' MOD_SO_LDADD='' MOD_SPELING_LDADD='' MOD_SSL_LDADD='' MOD_STATUS_LDADD='' MOD_SUBSTITUTE_LDADD='' MOD_SUEXEC_LDADD='' MOD_UNIQUE_ID_LDADD='' MOD_USERDIR_LDADD='' MOD_USERTRACK_LDADD='' MOD_VERSION_LDADD='' MOD_VHOST_ALIAS_LDADD='' MPM_LIB='' MPM_NAME='' MPM_SUBDIR_NAME='' NOTEST_CFLAGS='' NOTEST_CPPFLAGS='' NOTEST_CXXFLAGS='' NOTEST_LDFLAGS='' NOTEST_LIBS='' OBJEXT='' OS='' OS_DIR='' OS_SPECIFIC_VARS='' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_VERSION='' PATH_SEPARATOR=':' PCRE_CONFIG='' PICFLAGS='' PILDFLAGS='' PKGCONFIG='' PORT='' POST_SHARED_CMDS='' PRE_SHARED_CMDS='' RANLIB='' RM='' RSYNC='' SHELL='/bin/sh' SHLIBPATH_VAR='LD_LIBRARY_PATH' SHLTCFLAGS='' SH_LDFLAGS='' SH_LIBS='' SH_LIBTOOL='' SSLPORT='' SSL_LIBS='' UTIL_LDFLAGS='' ab_LTFLAGS='' abs_srcdir='' ac_ct_CC='' ap_make_delimiter='' ap_make_include='' bindir='${exec_prefix}/bin' build='i386-portbld-freebsd7.2' build_alias='i386-portbld-freebsd7.2' build_cpu='i386' build_os='freebsd7.2' build_vendor='portbld' cgidir='${datadir}/cgi-bin' checkgid_LTFLAGS='' datadir='${prefix}/www/apache22' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE}' dvidir='${docdir}' errordir='${datadir}/error' exec_prefix='${prefix}' exp_bindir='/usr/local/bin' exp_cgidir='/usr/local/www/apache22/cgi-bin' exp_datadir='/usr/local/www/apache22' exp_errordir='/usr/local/www/apache22/error' exp_exec_prefix='/usr/local' exp_htdocsdir='/usr/local/www/apache22/data' exp_iconsdir='/usr/local/www/apache22/icons' exp_includedir='/usr/local/include/apache22' exp_installbuilddir='/usr/local/share/apache22/build' exp_libdir='/usr/local/lib' exp_libexecdir='/usr/local/libexec/apache22' exp_localstatedir='/var' exp_logfiledir='/var/log' exp_mandir='/usr/local/man' exp_manualdir='/usr/local/share/doc/apache22' exp_proxycachedir='/usr/local/www/apache22/proxy' exp_runtimedir='/var/run' exp_sbindir='/usr/local/sbin' exp_sysconfdir='/usr/local/etc/apache22' host='i386-portbld-freebsd7.2' host_alias='' host_cpu='i386' host_os='freebsd7.2' host_vendor='portbld' htcacheclean_LTFLAGS='' htdbm_LTFLAGS='' htdigest_LTFLAGS='' htdocsdir='${datadir}/data' htmldir='${docdir}' htpasswd_LTFLAGS='' httxt2dbm_LTFLAGS='' iconsdir='${datadir}/icons' includedir='${prefix}/include/apache22' infodir='/usr/local/info/' installbuilddir='${prefix}/share/apache22/build' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec/apache22' localedir='${datarootdir}/locale' localstatedir='/var' logfiledir='${localstatedir}/log' logresolve_LTFLAGS='' mandir='/usr/local/man' manualdir='${prefix}/share/doc/apache22' nonssl_listen_stmt_1='' nonssl_listen_stmt_2='' oldincludedir='/usr/include' other_targets='' pdfdir='${docdir}' perlbin='' prefix='/usr/local' progname='' program_transform_name='s,x,x,' proxycachedir='${datadir}/proxy' psdir='${docdir}' rel_bindir='bin' rel_cgidir='www/apache22/cgi-bin' rel_datadir='www/apache22' rel_errordir='www/apache22/error' rel_exec_prefix='' rel_htdocsdir='www/apache22/data' rel_iconsdir='www/apache22/icons' rel_includedir='include/apache22' rel_installbuilddir='share/apache22/build' rel_libdir='lib' rel_libexecdir='libexec/apache22' rel_localstatedir='/var' rel_logfiledir='/var/log' rel_mandir='man' rel_manualdir='share/doc/apache22' rel_proxycachedir='www/apache22/proxy' rel_runtimedir='/var/run' rel_sbindir='sbin' rel_sysconfdir='etc/apache22' rotatelogs_LTFLAGS='' runtimedir='${localstatedir}/run' sbindir='${exec_prefix}/sbin' shared_build='' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc/apache22' target='i386-portbld-freebsd7.2' target_alias='' target_cpu='i386' target_os='freebsd7.2' target_vendor='portbld' configure: exit 1 ----------------------- list of installed ports ----------------------- ~/# ls -1 /var/db/pkg ImageMagick-nox11-6.4.4.1 adns-1.4_1 amavisd-new-2.5.4,1 apache-2.2.11_4 apachetop-0.12.6_1 arj-3.10.22_1 autoconf-2.13.000227_6 autoconf-2.62 autoconf-wrapper-20071109 automake-1.4.6_5 automake-1.9.6_3 automake-wrapper-20071109 awstats-6.9,1 bsdstats-5.4_2 ca_root_nss-3.11.9_2 cabextract-1.2 cclient-2007e,1 ccze-0.2.1_2 clearsilver-python-0.10.5 courier-authlib-base-0.62.2 courier-authlib-mysql-0.62.2 courier-imap-4.4.1,2 curl-7.19.4 cyrus-sasl-2.1.23 daemontools-0.76_12 db41-4.1.25_4 expat-2.0.1 expiretable-0.6 fastresolve-2.10_4 fcgi-devkit-2.4.0 fontconfig-2.5.0,1 freetype2-2.3.9_1 gd-2.0.35,1 gettext-0.17_1 ghostscript8-nox11-8.62_5 gmake-3.81_3 gnupg-1.4.9_2 gsfonts-8.11_4 help2man-1.36.4_2 ifstat-1.1_3 iftop-0.17 jasper-1.900.1_6 jbigkit-1.6 jpeg-6b_7 lcms-1.17,1 libfpx-1.2.0.12_1 libiconv-1.11_1 libltdl-1.5.26 libmcrypt-2.5.8 libtool-1.5.26 libxml2-2.7.3 libxslt-1.1.24_2 lighttpd-1.4.20 lsof-4.82,4 m4-1.4.11,1 mod_python-3.3.1_2 mrtg-2.16.2,1 mysql-client-5.0.77_1 mysql-server-5.0.67_1 mytop-1.6_4 neon28-0.28.4 p0f-2.0.8 p5-Archive-Tar-1.48 p5-Archive-Zip-1.26 p5-Authen-SASL-2.12 p5-BerkeleyDB-0.38 p5-Compress-Raw-Bzip2-2.017 p5-Compress-Raw-Zlib-2.017 p5-Compress-Zlib-2.015 p5-Convert-BinHex-1.119 p5-Convert-TNEF-0.17 p5-Convert-UUlib-1.12,1 p5-DBD-mysql-4.010 p5-DBI-1.60.7 p5-Digest-1.15_1 p5-Digest-HMAC-1.01 p5-Digest-MD5-2.38 p5-Digest-SHA1-2.11 p5-Encode-Detect-1.01 p5-Error-0.17015 p5-ExtUtils-CBuilder-0.24 p5-ExtUtils-ParseXS-2.19_1 p5-File-Temp-0.21 p5-File-Which-0.05 p5-GSSAPI-0.26 p5-Geography-Countries-1.4 p5-HTML-Parser-3.60 p5-HTML-Tagset-3.20 p5-IO-Compress-Base-2.015 p5-IO-Compress-Bzip2-2.015 p5-IO-Compress-Zlib-2.015 p5-IO-Multiplex-1.10 p5-IO-Socket-INET6-2.56 p5-IO-Socket-SSL-1.24 p5-IO-String-1.08 p5-IO-Zlib-1.09 p5-IO-stringy-2.110 p5-IP-Country-2.26 p5-MIME-Base64-3.07 p5-MIME-Tools-5.427,2 p5-Mail-SPF-2.006 p5-Mail-SpamAssassin-3.2.5_2 p5-Mail-Tools-2.04 p5-Math-BigInt-1.89 p5-Module-Build-0.32 p5-Net-1.22_1,1 p5-Net-DNS-0.65 p5-Net-DNS-Resolver-Programmable-0.003 p5-Net-IP-1.25 p5-Net-SSLeay-1.35_1 p5-Net-Server-0.97 p5-Net-XWhois-0.90_4 p5-NetAddr-IP-4.02.6 p5-Package-Constants-0.02 p5-PathTools-3.2900 p5-Pod-Parser-1.38 p5-SNMP_Session-1.12 p5-Scalar-List-Utils-1.19,1 p5-Socket6-0.23 p5-Spiffy-0.30 p5-Storable-2.18 p5-Term-ANSIColor-1.12 p5-Term-ReadKey-2.30 p5-Test-Base-0.58 p5-Test-Deep-0.104 p5-Test-Harness-3.16 p5-Test-NoWarnings-0.084 p5-Test-Simple-0.86 p5-Test-Tester-0.10.7 p5-Time-HiRes-1.9719,1 p5-TimeDate-1.16,1 p5-URI-1.37 p5-Unix-Syslog-1.1 p5-YAML-0.68 p5-gettext-1.05_2 p5-libwww-5.826 p5-version-0.76 p7zip-4.65 pcre-7.9 perl-5.8.9_3 pfqueue-0.5.6 pftop-0.7_1 php5-5.2.9 php5-bz2-5.2.9 php5-ctype-5.2.9 php5-curl-5.2.9 php5-dom-5.2.9 php5-exif-5.2.9 php5-extensions-1.3 php5-gd-5.2.9 php5-iconv-5.2.9 php5-imap-5.2.9 php5-mbstring-5.2.9 php5-mcrypt-5.2.9 php5-mysql-5.2.9 php5-mysqli-5.2.9 php5-openssl-5.2.9 php5-pcre-5.2.9 php5-posix-5.2.9 php5-session-5.2.9 php5-simplexml-5.2.9 php5-sockets-5.2.9 php5-spl-5.2.9 php5-sqlite-5.2.9 php5-tokenizer-5.2.9 php5-xml-5.2.9 php5-xmlreader-5.2.9 php5-xmlwriter-5.2.9 php5-xsl-5.2.9 php5-zip-5.2.9 php5-zlib-5.2.9 phpMyAdmin-3.1.4 pkg-config-0.23_1 pkgdb.db png-1.2.35 portaudit-0.5.12 portconf-1.4 portmaster-2.7 portupgrade-2.4.6,2 postfix-2.5.6,1 proftpd-mysql-1.3.2 pstree-2.32 py-subversion-1.5.5_1 py25-Genshi-0.5.1_2 py25-docutils-0.5 py25-pygments-1.0 py25-pysqlite-2.3.5 py25-pytz-2009d py25-setuptools-0.6c9 py25-sqlite3-2.5.4_1 python-2.5,2 python25-2.5.4_1 razor-agents-2.84 rsync-3.0.6 ruby-1.8.6.287,1 ruby18-bdb-0.6.4 ruby18-gems-1.2.0_1 ruby18-iconv-1.8.6.287,1 ruby18-rmagick-2.7.0 rubygem-actionmailer-1.3.6 rubygem-actionpack-1.13.6 rubygem-actionwebservice-1.2.6 rubygem-activerecord-1.15.6 rubygem-activesupport-1.4.4 rubygem-daemons-1.0.10 rubygem-fastthread-1.0.1 rubygem-gem_plugin-0.2.3 rubygem-mongrel-1.1.5 rubygem-rails-1.2.6 rubygem-rake-0.8.1 screen-4.0.3_6 silvercity-0.9.7 smartmontools-5.38_3 sqlite3-3.6.13 subversion-1.6.1 sysconftool-0.15_2 t1lib-5.1.2_1,1 tableutil-0.6 tiff-3.8.2_3 trac-0.11.3 trac-accountmanager-0.2.1.3857,1 trac-addcomment-0.3 trac-iniadmin-0.2.3915 trac-macropost-0.2 trac-navadd-0.1 trac-tocmacro-11.0.0.3 trac-webadmin-0.1.2.4429_2 unrar-3.80,5 unzip-5.52_5 vim-lite-7.2.166_1 --------------------- options in ports.conf --------------------- ~/# grep apache22 /usr/local/etc/ports.conf www/apache22: WITH_SSL_MODULES=yes | WITH_DAV_MODULES=yes | WITH_BERKELEYDB=db41 | WITHOUT_IPV6=yes ------------ port options ------------ ~/# cat /var/db/ports/apache22/options # This file is auto-generated by 'make config'. # No user-servicable parts inside! # Options for apache-2.2.11_6 _OPTIONS_READ=apache-2.2.11_6 WITHOUT_APR_FROM_PORTS=true WITHOUT_THREADS=true WITHOUT_MYSQL=true WITHOUT_PGSQL=true WITHOUT_SQLITE=true WITHOUT_IPV6=true WITHOUT_BDB=true WITH_AUTH_BASIC=true WITH_AUTH_DIGEST=true WITH_AUTHN_FILE=true WITHOUT_AUTHN_DBD=true WITHOUT_AUTHN_DBM=true WITHOUT_AUTHN_ANON=true WITH_AUTHN_DEFAULT=true WITHOUT_AUTHN_ALIAS=true WITH_AUTHZ_HOST=true WITHOUT_AUTHZ_GROUPFILE=true WITH_AUTHZ_USER=true WITH_AUTHZ_DBM=true WITHOUT_AUTHZ_OWNER=true WITH_AUTHZ_DEFAULT=true WITHOUT_CACHE=true WITHOUT_DISK_CACHE=true WITHOUT_FILE_CACHE=true WITHOUT_MEM_CACHE=true WITH_DAV=true WITH_DAV_FS=true WITHOUT_BUCKETEER=true WITHOUT_CASE_FILTER=true WITHOUT_CASE_FILTER_IN=true WITHOUT_EXT_FILTER=true WITHOUT_LOG_FORENSIC=true WITHOUT_OPTIONAL_HOOK_EXPORT=true WITHOUT_OPTIONAL_HOOK_IMPORT=true WITHOUT_OPTIONAL_FN_IMPORT=true WITHOUT_OPTIONAL_FN_EXPORT=true WITHOUT_LDAP=true WITHOUT_AUTHNZ_LDAP=true WITHOUT_ACTIONS=true WITH_ALIAS=true WITHOUT_ASIS=true WITH_AUTOINDEX=true WITHOUT_CERN_META=true WITH_CGI=true WITHOUT_CHARSET_LITE=true WITHOUT_DBD=true WITH_DEFLATE=true WITH_DIR=true WITHOUT_DUMPIO=true WITH_ENV=true WITH_EXPIRES=true WITHOUT_HEADERS=true WITHOUT_IMAGEMAP=true WITH_INCLUDE=true WITHOUT_INFO=true WITH_LOG_CONFIG=true WITHOUT_LOGIO=true WITH_MIME=true WITHOUT_MIME_MAGIC=true WITH_NEGOTIATION=true WITH_REWRITE=true WITH_SETENVIF=true WITHOUT_SPELING=true WITH_STATUS=true WITHOUT_UNIQUE_ID=true WITHOUT_USERDIR=true WITHOUT_USERTRACK=true WITHOUT_VHOST_ALIAS=true WITHOUT_FILTER=true WITHOUT_VERSION=true WITHOUT_PROXY=true WITHOUT_PROXY_CONNECT=true WITH_PATCH_PROXY_CONNECT=true WITHOUT_PROXY_FTP=true WITHOUT_PROXY_HTTP=true WITHOUT_PROXY_AJP=true WITHOUT_PROXY_BALANCER=true WITH_SSL=true WITHOUT_SUEXEC=true WITHOUT_CGID=true Miroslav Lachman From edwin at FreeBSD.org Fri Jun 12 13:00:23 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Jun 12 13:00:34 2009 Subject: ports/135505: www/apache22 fails to install from package when compiled with ldap support Message-ID: <200906121300.n5CD0MBZ013917@freefall.freebsd.org> Synopsis: www/apache22 fails to install from package when compiled with ldap support Responsible-Changed-From-To: freebsd-ports-bugs->apache Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jun 12 13:00:22 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=135505 From mel.flynn+fbsd.ports at mailing.thruhere.net Fri Jun 12 15:22:56 2009 From: mel.flynn+fbsd.ports at mailing.thruhere.net (Mel Flynn) Date: Fri Jun 12 15:23:06 2009 Subject: apr In-Reply-To: <4A31F4AB.5040504@FreeBSD.org> References: <4A31F4AB.5040504@FreeBSD.org> Message-ID: <200906120705.49985.mel.flynn+fbsd.ports@mailing.thruhere.net> On Thursday 11 June 2009 22:24:43 Philip M. Gollucci wrote: > All, > > I'd like to propose the following: > > devel/apr0 0.9.x > devel/apr1 1.x > devel/apr2 2.x (un-released, but soon) > > Then, I'd propose that any port that bundles apr have it 'removed' > and those ports depend on the apr ports. > > I.E > www/apache22 > www/apache20 > devel/subversion > > We get to eliminate WITH_APR_FROM_PORTS knob and WITH_APACHE2_APR. I certainly welcome this change as 99% of my installs already have WITH_APR_FROM_PORTS, however 2 things: - Instead of "(beware!)" one would probably want "(preferred!)" for the APR_FROM_PORTS knob real soon now, while these changes are in the queue. - It would help to have some documentation somewhere that lists what of the apr modules are required for what software, so that one can make the right decision for the apr port. For example, subversion wants threads and bdb, if you need DBD/postgresql support in apache, you need apr with postgresql (? I think) etc. -- Mel From pgollucci at p6m7g8.com Fri Jun 12 16:17:15 2009 From: pgollucci at p6m7g8.com (Philip M. Gollucci) Date: Fri Jun 12 16:17:21 2009 Subject: upgrade to apache-2.2.11_6 failed In-Reply-To: <4A320794.6040605@quip.cz> References: <4A320794.6040605@quip.cz> Message-ID: <4A327D30.6020309@p6m7g8.com> > checking for Berkeley DB 4.1 in /usr/local/include/db41 and > /usr/local/lib... > checking db41/db.h usability... no > checking db41/db.h presence... no > checking for db41/db.h... no > configure: error: Berkeley db4 not found > configure failed for srclib/apr-util > ===> Script "configure" failed unexpectedly. > Please report the problem to apache@FreeBSD.org [maintainer] and attach the > "/usr/ports/www/apache22/work/httpd-2.2.11/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`). > But there is db41 installed for a long time! (db41-4.1.25_4) Lame.... In www/apache22/Makefile.modules undo this change from last night and see if that helps + --with-berkeley-db=${LOCALBASE} - --with-berkeley-db=${BDB_INCLUDE_DIR}:${BDB_LIB_DIR} -- ------------------------------------------------------------------------ 1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354 Consultant - P6M7G8 Inc. http://p6m7g8.net Senior Sys Admin - RideCharge, Inc. http://ridecharge.com Contractor - PositiveEnergyUSA http://positiveenergyusa.com ASF Member - Apache Software Foundation http://apache.org FreeBSD Committer - FreeBSD Foundation http://freebsd.org Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. From valerian_ro at yahoo.com Fri Jun 12 16:38:19 2009 From: valerian_ro at yahoo.com (Valerian Galeru) Date: Fri Jun 12 16:38:25 2009 Subject: Error in compiling (make configure) apache22, Message-ID: <902905.89957.qm@web30701.mail.mud.yahoo.com> configure: error: Berkeley db4 not found configure failed for srclib/apr-util ===>? Script "configure" failed unexpectedly. Please report the problem to apache@FreeBSD.org [maintainer] and attach the "/usr/ports/www/apache22/work/httpd-2.2.11/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`). *** Error code 1 Stop in /usr/ports/www/apache22. *** Error code 1 Stop in /usr/ports/www/apache22. Packages installed: ImageMagick-nox11-6.5.2.10? libstatgrab-0.16 apr-gdbm-db42-1.3.5.1.3.7_3 libtool-1.5.26 autoconf-2.13.000227_6????? libxcb-1.2_1 autoconf-2.62?????????????? libxml2-2.7.3 autoconf-wrapper-20071109?? libxslt-1.1.24_2 automake-1.10.1???????????? linux_base-fc-4_14 automake-1.4.6_5??????????? lynx-2.8.6.5_5,1 automake-1.9.6_3??????????? lzmautils-4.32.7 automake-wrapper-20071109?? lzo2-2.03_2 awstats-6.9,1?????????????? lzop-1.02.r1 bash-4.0.24???????????????? m4-1.4.13,1 bigreqsproto-1.0.2????????? makedepend-1.0.1,1 bison-2.4.1,1?????????????? mc-4.6.2 cairo-1.8.6_1,1???????????? mm-1.4.2 ctorrent-3.3.2????????????? mysql-client-5.0.83 cups-client-1.3.10_2??????? mysql-server-5.0.83 cups-image-1.3.10_2???????? neon28-0.28.4 cvsup-without-gui-16.1h_4?? p5-Net-XWhois-0.90_4 db41-4.1.25_4?????????????? p5-gettext-1.05_2 db42-4.2.52_5?????????????? p7zip-4.65 djvulibre-nox11-3.5.21_1??? pcre-7.9 docbook-1.4???????????????? pear-1.8.1 docbook-4.1_3?????????????? pecl-rar-1.0.0 docbook-4.2???????????????? perl-5.8.9_3 docbook-4.3???????????????? php5-5.2.9 docbook-4.4_2?????????????? php5-bz2-5.2.9 docbook-4.5_2?????????????? php5-ctype-5.2.9 docbook-5.0_1?????????????? php5-dom-5.2.9 docbook-sk-4.1.2_4????????? php5-gd-5.2.9 docbook-xml-4.2_1?????????? php5-iconv-5.2.9 docbook-xml-4.3???????????? php5-mbstring-5.2.9 docbook-xml-4.4_1?????????? php5-mcrypt-5.2.9 docbook-xml-4.5???????????? php5-mysql-5.2.9 docbook-xsl-1.74.0_1??????? php5-openssl-5.2.9 e2fsprogs-libuuid-1.41.5_1? php5-pcre-5.2.9 expat-2.0.1???????????????? php5-session-5.2.9 ezm3-1.2_1????????????????? php5-simplexml-5.2.9 fontconfig-2.6.0,1????????? php5-spl-5.2.9 freetype2-2.3.9_1?????????? php5-xml-5.2.9 gamin-0.1.10_3????????????? php5-zip-5.2.9 gccmakedep-1.0.2??????????? pixman-0.15.4 gdbm-1.8.3_3??????????????? pkg-config-0.23_1 gettext-0.17_1????????????? pkgdb.db ghostscript8-nox11-8.64_5?? png-1.2.35 gio-fam-backend-2.20.3????? poppler-0.10.6 glib-2.20.3???????????????? poppler-data-0.2.1 gmake-3.81_3??????????????? poppler-utils-0.10.6 gnutls-2.6.5??????????????? popt-1.14 gperf-3.0.3???????????????? portaudit-0.5.12 gsfonts-8.11_5????????????? portupgrade-2.4.6_2,2 gtar-1.22?????????????????? printproto-1.0.4 help2man-1.36.4_3?????????? python25-2.5.4_1 icu-3.8.1_2???????????????? qpopper-4.0.9_2 inputproto-1.5.0??????????? renderproto-0.9.3 iso8879-1986_2????????????? rpm-3.0.6_14 jpeg-6b_7?????????????????? ruby-1.8.7.160,1 kbproto-1.0.3?????????????? ruby18-bdb-0.6.5_1 libICE-1.0.4_1,1??????????? screen-4.0.3_6 libSM-1.1.0_1,1???????????? smarty-2.6.24 libX11-1.2.1,1????????????? sqlite3-3.6.14.2 libXau-1.0.4??????????????? squid-3.0.15 libXaw-1.0.5_1,1??????????? subversion-1.6.2 libXdmcp-1.0.2_1??????????? t1lib-5.1.2_1,1 libXext-1.0.5,1???????????? tiff-3.8.2_3 libXmu-1.0.4,1????????????? unrar-3.80,5 libXp-1.0.0,1?????????????? unzip-5.52_5 libXpm-3.5.7??????????????? wget-1.11.4 libXrender-0.9.4_1????????? xcb-proto-1.4 libXt-1.0.5_1?????????????? xcb-util-0.3.4 libcheck-0.9.6????????????? xcmiscproto-1.1.2 libgcrypt-1.4.4???????????? xextproto-7.0.5 libgpg-error-1.7??????????? xf86bigfontproto-1.1.2 libiconv-1.11_1???????????? xmlcatmgr-2.2 liblqr-1-0.4.1????????????? xmlcharent-0.3_2 libltdl-1.5.26????????????? xorg-macros-1.2.1 libmcrypt-2.5.8???????????? xproto-7.0.15 libpthread-stubs-0.1??????? xtrans-1.2.3 libslang2-2.1.4_1?????????? zip-3.0 From hans at flyingpoodle.com Fri Jun 12 17:03:17 2009 From: hans at flyingpoodle.com (Hans Kuhn) Date: Fri Jun 12 17:03:24 2009 Subject: (no subject) Message-ID: Hello, I'm trying to build 2.2.11_6 and the make fails when the configure fails to find db41/db.h. Here's the "missing" file. # ls -l /usr/local/include/db41/db.h -r--r--r-- 1 root wheel 75839 May 5 23:03 /usr/local/include/db41/db.h Is this a known problem? Hans ++++++++++++++++++++++ The relevant output from the make command is below. ... checking for Berkeley DB 4.1 in /usr/local/include/db41 and /usr/local/lib... checking db41/db.h usability... no checking db41/db.h presence... no checking for db41/db.h... no configure: error: Berkeley db4 not found configure failed for srclib/apr-util ===> Script "configure" failed unexpectedly. Please report the problem to apache@FreeBSD.org [maintainer] and attach the "/usr/ports/www/apache22/work/httpd-2.2.11/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`). *** Error code 1 Stop in /usr/ports/www/apache22. *** Error code 1 Stop in /usr/ports/www/apache22. -------------- next part -------------- A non-text attachment was scrubbed... Name: config.log Type: application/octet-stream Size: 10322 bytes Desc: config.log Url : http://lists.freebsd.org/pipermail/freebsd-apache/attachments/20090612/57ee4749/config.obj -------------- next part -------------- DarwinStreamingServer-6.0.3 ImageMagick-6.5.2.10 ORBit2-2.14.17 adns-1.4_1 alpine-2.00_1 antiword-0.37_1 apache-2.2.11_4 appres-1.0.1 apr-ipv6-gdbm-db42-mysql-1.3.5.1.3.7_3 arc-5.21o_1 arj-3.10.22_1 aspell-0.60.6_2 atk-1.26.0 autoconf-2.13.000227_6 autoconf-2.62 autoconf-wrapper-20071109 automake-1.10.1 automake-1.5_5,1 automake-1.9.6_3 automake-wrapper-20071109 awstats-6.9,1 bash-4.0.24 bdftopcf-1.0.1 beforelight-1.0.3_1 bigreqsproto-1.0.2 bison-2.4.1,1 bitmap-1.0.3_1 bitstream-vera-1.10_4 ca_root_nss-3.11.9_2 cairo-1.8.6_1,1 clamav-0.95.2 clearsilver-python-0.10.5 compositeproto-0.4 conky-1.7.0_1 cpuid-3.3_4 cups-client-1.3.10_2 curl-7.19.5 cvsup-without-gui-16.1h_4 dailystrips-1.0.28_2 damageproto-1.1.0_2 db41-4.1.25_4 db42-4.2.52_5 dbus-1.2.4.6 dbus-glib-0.80 dcraw-8.93 dejavu-2.29 denyhosts-2.6_2 desktop-file-utils-0.15_1 dirmngr-1.0.2_1 djbfft-0.76_2 dmxproto-2.2.2 docbook-1.4 docbook-4.1_3 docbook-4.2 docbook-4.3 docbook-4.4_2 docbook-4.5_2 docbook-5.0_1 docbook-sk-4.1.2_4 docbook-xml-4.2_1 docbook-xml-4.3 docbook-xml-4.4_1 docbook-xml-4.5 docbook-xsl-1.74.0_1 dri-7.4.2_1,2 dri2proto-2.0 e2fsprogs-libuuid-1.41.5_1 editres-1.0.3_1 emacs-22.3 encodings-1.0.2,1 evieext-1.0.2 expat-2.0.1 ezm3-1.2_1 faad2-2.7_1,1 fastest_cvsup-0.2.9_6 fetchmail-6.3.9 fetchyahoo-2.13.4 ffmpeg-2008.07.27_10 fixesproto-4.0 font-adobe-100dpi-1.0.0_1 font-adobe-75dpi-1.0.0 font-adobe-utopia-100dpi-1.0.1 font-adobe-utopia-75dpi-1.0.1 font-adobe-utopia-type1-1.0.1 font-arabic-misc-1.0.0 font-bh-100dpi-1.0.0 font-bh-75dpi-1.0.0 font-bh-lucidatypewriter-100dpi-1.0.0 font-bh-lucidatypewriter-75dpi-1.0.0 font-bh-ttf-1.0.0 font-bh-type1-1.0.0 font-bitstream-100dpi-1.0.0 font-bitstream-75dpi-1.0.0 font-bitstream-type1-1.0.0 font-cronyx-cyrillic-1.0.0 font-cursor-misc-1.0.0 font-daewoo-misc-1.0.0 font-dec-misc-1.0.0 font-ibm-type1-1.0.0 font-isas-misc-1.0.0 font-jis-misc-1.0.0 font-micro-misc-1.0.0 font-misc-cyrillic-1.0.0 font-misc-ethiopic-1.0.0 font-misc-meltho-1.0.0_1 font-misc-misc-1.0.0 font-mutt-misc-1.0.0 font-schumacher-misc-1.0.0_1 font-screen-cyrillic-1.0.1 font-sony-misc-1.0.0 font-sun-misc-1.0.0 font-util-1.0.1 font-winitzki-cyrillic-1.0.0 font-xfree86-type1-1.0.1 fontcacheproto-0.1.2 fontconfig-2.6.0,1 fontsproto-2.0.2 fonttosfnt-1.0.3 freetype2-2.3.9_1 fslsfonts-1.0.2 fstobdf-1.0.3 gamin-0.1.10_3 gccmakedep-1.0.2 gconf2-2.26.2 gd-2.0.35,1 gdbm-1.8.3_3 gettext-0.17_1 ghostscript7-7.07_20 gio-fam-backend-2.20.3 glib-1.2.10_12 glib-2.20.3 glproto-1.4.10 gmake-3.81_3 gnome_subr-1.0 gnomehier-2.3_12 gnupg-2.0.11 gnutls-2.6.5 gpac-libgpac-0.4.5_2,1 gperf-3.0.3 gsfonts-8.11_5 gtk-1.2.10_20 gtk-2.16.2 gtk-engines2-2.18.2 help2man-1.36.4_3 hicolor-icon-theme-0.10_2 iceauth-1.0.2 ico-1.0.2 imake-1.0.2_4,1 inputproto-1.5.0 integrit-4.0 intltool-0.40.6 iso8879-1986_2 ispell-3.3.02_4 jasper-1.900.1_7 jbigkit-1.6 jhead-2.87 jpeg-6b_7 kbproto-1.0.3 lambda-0.1.4 lame-3.98.2_1 lcms-1.18a,1 lha-1.14i_6 libFS-1.0.1 libGL-7.4.2_1 libGLU-7.4.2_1 libICE-1.0.4_1,1 libIDL-0.8.13 libSM-1.1.0_1,1 libX11-1.2.1,1 libXScrnSaver-1.1.3 libXTrap-1.0.0 libXau-1.0.4 libXaw-1.0.5_1,1 libXcomposite-0.4.0,1 libXcursor-1.1.9_1 libXdamage-1.1.1 libXdmcp-1.0.2_1 libXevie-1.0.2 libXext-1.0.5,1 libXfixes-4.0.3_1 libXfont-1.3.4,1 libXfontcache-1.0.4 libXft-2.1.13 libXi-1.2.1,1 libXinerama-1.0.3,1 libXmu-1.0.4,1 libXp-1.0.0,1 libXpm-3.5.7 libXprintAppUtil-1.0.1 libXprintUtil-1.0.1 libXrandr-1.3.0 libXrender-0.9.4_1 libXres-1.0.3_3 libXt-1.0.5_1 libXtst-1.0.3_1 libXv-1.0.4,1 libXvMC-1.0.4_1 libXxf86dga-1.0.2 libXxf86misc-1.0.1 libXxf86vm-1.0.2 liba52-0.7.4_2 libart_lgpl-2.3.20,1 libassuan-1.0.5 libcheck-0.9.6 libcroco-0.6.2 libdmx-1.0.2_1 libdrm-2.4.11 libffi-3.0.8 libfontenc-1.0.4 libfpx-1.2.0.12_1 libgcrypt-1.4.4 libgmp-4.3.1 libgpg-error-1.7 libgsf-1.14.14 libiconv-1.11_1 libksba-1.0.6 liblqr-1-0.4.1 libltdl-1.5.26 libmng-1.0.10 libogg-1.1.3,4 liboldX-1.0.1 libpcap-1.0.0 libpciaccess-0.10.6 libpthread-stubs-0.1 librsvg2-2.26.0 libsmi-0.4.7 libssh2-1.1,2 libtheora-1.0 libtool-1.5.26 libungif-4.1.4_5 libunrar-3.8.5,1 libutempter-1.1.5_1 libvorbis-1.2.0_3,3 libxcb-1.2_1 libxkbfile-1.0.5 libxkbui-1.0.2_1 libxml2-2.7.3 libxslt-1.1.24_2 links-2.2,1 listres-1.0.1_1 lsof-4.82,4 luit-1.0.3_1 lynx-2.8.6.5_5,1 lzma-4.65 lzo-1.08_2,1 m4-1.4.13,1 makedepend-1.0.1,1 mhonarc-2.6.16_1 ming-0.3.0_3 mkcomposecache-1.2_1 mkfontdir-1.0.4 mkfontscale-1.0.6 mod_python-3.3.1_2 mpeg2codec-1.2_3 multitail-5.2.2 munin-main-1.2.6 munin-node-1.2.6_1 mysql-client-4.1.25 mysql-server-4.1.25 namazu2-2.0.19 nas-1.9.1_3 nasm-2.05.01,1 ncftp1-1.9.5 neon28-0.28.4 netpbm-10.26.62 nmh-1.2_2 nspr-4.7 nss-3.11.9_2 oclock-1.0.1_1 open-motif-2.2.3_6 openldap-client-2.3.43 openvpn-2.0.6_9 p5-Archive-Tar-1.48 p5-Authen-SASL-2.12 p5-Compress-Bzip2-2.09 p5-Compress-Raw-Bzip2-2.020 p5-Compress-Raw-Zlib-2.020 p5-Compress-Zlib-2.015 p5-Convert-BinHex-1.119 p5-Crypt-SSLeay-0.57 p5-Curses-1.27 p5-Curses-UI-0.9607 p5-DBD-SQLite2-0.33 p5-DBI-1.60.7 p5-Date-Manip-5.54 p5-Digest-1.16 p5-Digest-HMAC-1.01 p5-Digest-MD5-2.39 p5-Digest-SHA1-2.12 p5-Encode-Detect-1.01 p5-Error-0.17015 p5-ExtUtils-CBuilder-0.24 p5-ExtUtils-ParseXS-2.19_1 p5-File-MMagic-1.27 p5-File-Temp-0.21 p5-GSSAPI-0.26 p5-HTML-Parser-3.60 p5-HTML-Tagset-3.20 p5-HTML-Template-2.9_1 p5-IO-Compress-Base-2.015 p5-IO-Compress-Bzip2-2.015 p5-IO-Compress-Zlib-2.015 p5-IO-Multiplex-1.10 p5-IO-Socket-INET6-2.56 p5-IO-Socket-SSL-1.24 p5-IO-String-1.08 p5-IO-Zlib-1.09 p5-IO-stringy-2.110 p5-Locale-libintl-1.16_1 p5-MIME-Base64-3.08 p5-MIME-Tools-5.427_1,2 p5-Mail-SPF-2.006 p5-Mail-SPF-Query-1.999.1 p5-Mail-SpamAssassin-3.2.5_4 p5-Mail-Tools-2.04 p5-Math-BigInt-1.89 p5-Module-Build-0.33 p5-Net-1.22_1,1 p5-Net-CIDR-Lite-0.20 p5-Net-DNS-0.65 p5-Net-DNS-Resolver-Programmable-0.003 p5-Net-IP-1.25 p5-Net-SSLeay-1.35_1 p5-Net-Server-0.97 p5-Net-XWhois-0.90_4 p5-NetAddr-IP-4.02.6 p5-Package-Constants-0.02 p5-Parse-Syslog-1.10 p5-PathTools-3.2900 p5-Pod-Escapes-1.04 p5-Pod-Simple-3.07_1 p5-Scalar-List-Utils-1.21,1 p5-Socket6-0.23 p5-Spiffy-0.30 p5-Storable-2.20 p5-Sys-Hostname-Long-1.4 p5-Term-ReadKey-2.30 p5-Test-Base-0.58 p5-Test-Deep-0.104 p5-Test-Harness-3.17 p5-Test-NoWarnings-0.084 p5-Test-Pod-1.26 p5-Test-Simple-0.88 p5-Test-Tester-0.10.7 p5-Text-Tabs+Wrap-2009.0305 p5-Time-modules-2006.0814 p5-TimeDate-1.16,1 p5-URI-1.38 p5-XML-Parser-2.36 p5-YAML-0.68 p5-gettext-1.05_2 p5-libwww-5.826 p5-version-0.76 p7zip-4.65 pango-1.24.2 pciids-20090224 pcre-7.9 perl-5.8.9_3 php5-5.2.9 php5-ctype-5.2.9 php5-dom-5.2.9 php5-extensions-1.3 php5-filter-5.2.9 php5-gd-5.2.9 php5-hash-5.2.9 php5-iconv-5.2.9 php5-json-5.2.9 php5-mysql-5.2.9 php5-pcre-5.2.9 php5-pdo-5.2.9 php5-pdo_sqlite-5.2.9 php5-posix-5.2.9 php5-session-5.2.9 php5-simplexml-5.2.9 php5-spl-5.2.9 php5-sqlite-5.2.9 php5-tokenizer-5.2.9 php5-xml-5.2.9 php5-xmlreader-5.2.9 php5-xmlwriter-5.2.9 pico-alpine-2.00_1 pine-pgp-filters-1.6_1 pinentry-0.7.5_1 pixman-0.15.4 pkg-config-0.23_1 pkgdb.db ploticus-nox11-2.40 pmap-20060622_1 png-1.2.35 policykit-0.9_4 popt-1.14 portaudit-0.5.12 portdowngrade-0.6_1 portupgrade-2.4.6_2,2 printproto-1.0.4 privoxy-3.0.12 procmail-3.22_6 pth-2.0.7 py25-Genshi-0.5.1_2 py25-chardet-1.0.1 py25-docutils-0.5 py25-feedparser-4.1_2 py25-html2text-2.35 py25-pygments-1.0 py25-pysqlite-2.3.5 py25-pytz-2009g py25-setuptools-0.6c9 py25-sqlite3-2.5.4_1 python-2.5,2 python24-2.4.5_3 python25-2.5.4_1 qmake-3.3.8_1 qt-3.3.8_9 randrproto-1.3.0 rawdog-2.12 razor-agents-2.84 recordproto-1.13.2 renderproto-0.9.3 resourceproto-1.0.2 rgb-1.0.1 rrdtool-1.3.7 rss2email-2.61 rstart-1.0.2 rsync-3.0.6 ruby-1.8.7.160,1 ruby18-bdb-0.6.5_1 screen-4.0.3_6 scripts-1.0.1 scrnsaverproto-1.1.0 sessreg-1.0.4 setxkbmap-1.0.4 shared-mime-info-0.60_1 showfont-1.0.2 silvercity-0.9.7 smproxy-1.0.2 spamstats-0.6c sqlite3-3.6.14.2 squeak-3.9 subversion-python-1.6.2 t1lib-5.1.2_1,1 tcl-8.4.19_2,1 tcpdump-4.0.0 texi2html-1.76_1,1 tidy-20000804_2 tiff-3.8.2_3 tinc-1.0.9 trac-0.11.4 trac-accountmanager-0.2.1.3857,1 traceroute-991603 trapproto-3.4.3 twm-1.0.4 unix2dos-1.3 unzip-5.52_5 unzoo-4.4_2 uudeview-0.5.20 uulib-0.5.20_1 videoproto-2.2.2 viewres-1.0.1_1 w3mir-1.0.10_1 wget-1.11.4 wireshark-1.0.8 x11perf-1.5 x264-0.0.20081218 xauth-1.0.3 xbacklight-1.1 xbiff-1.0.1_1 xbitmaps-1.0.1 xcalc-1.0.2_1 xcb-proto-1.4 xcb-util-0.3.4 xclipboard-1.0.1_1 xclock-1.0.3_1 xcmiscproto-1.1.2 xcmsdb-1.0.1 xconsole-1.0.3_1 xcursorgen-1.0.2 xdbedizzy-1.0.2 xditview-1.0.1_1 xdm-1.1.8_1 xdpyinfo-1.0.3 xdriinfo-1.0.2 xedit-1.1.2 xev-1.0.3 xextproto-7.0.5 xeyes-1.0.1 xf86bigfontproto-1.1.2 xf86dga-1.0.2_1 xf86dgaproto-2.0.3 xf86driproto-2.0.4 xf86miscproto-0.9.2 xf86vidmodeproto-2.2.2 xfd-1.0.1_1 xfindproxy-1.0.1 xfontsel-1.0.2_1 xfs-1.0.8_1,1 xfsinfo-1.0.2 xfwp-1.0.1 xgamma-1.0.2 xgc-1.0.1_1 xhost-1.0.2 xineramaproto-1.1.2 xinit-1.1.1_1 xkbcomp-1.0.5 xkbevd-1.0.2 xkbprint-1.0.1 xkbutils-1.0.1_2 xkeyboard-config-1.6_1 xkill-1.0.1 xload-1.0.2_1 xlogo-1.0.1_1 xlreader-0.9.0 xlsatoms-1.0.1 xlsclients-1.0.1 xlsfonts-1.0.2 xmag-1.0.2_1 xman-1.0.3_1 xmessage-1.0.2_1 xmh-1.0.1_1 xmlcatmgr-2.2 xmlcharent-0.3_2 xmodmap-1.0.3 xmore-1.0.1_1 xorg-cf-files-1.0.2_3 xorg-docs-1.4,1 xorg-fonts-100dpi-7.4 xorg-fonts-75dpi-7.4 xorg-fonts-cyrillic-7.4 xorg-fonts-miscbitmaps-7.4 xorg-fonts-truetype-7.4 xorg-fonts-type1-7.4 xorg-libraries-7.4 xorg-macros-1.2.1 xorg-nestserver-1.6.1,1 xorg-vfbserver-1.6.1,1 xosview-1.8.3_3 xpdf-3.02_11 xplsprinters-1.0.1 xpr-1.0.2 xprehashprinterlist-1.0.1 xprop-1.0.4 xproto-7.0.15 xproxymanagementprotocol-1.0.2 xrandr-1.3.0 xrdb-1.0.5 xrefresh-1.0.2 xrx-1.0.1_2 xset-1.0.4 xsetmode-1.0.0 xsetpointer-1.0.1 xsetroot-1.0.2 xsm-1.0.1_1 xstdcmap-1.0.1 xterm-243 xtrans-1.2.3 xtrap-1.0.2 xvid-1.2.1,1 xvidtune-1.0.1_1 xvinfo-1.0.2 xwd-1.0.2 xwininfo-1.0.4 xwud-1.0.1 yasm-0.8.0 zip-3.0 From pgollucci at p6m7g8.com Fri Jun 12 17:35:21 2009 From: pgollucci at p6m7g8.com (Philip M. Gollucci) Date: Fri Jun 12 17:35:28 2009 Subject: upgrade to apache-2.2.11_6 failed In-Reply-To: <4A327D30.6020309@p6m7g8.com> References: <4A320794.6040605@quip.cz> <4A327D30.6020309@p6m7g8.com> Message-ID: <4A3291D7.9050403@p6m7g8.com> Philip M. Gollucci wrote: > In www/apache22/Makefile.modules undo this change from last night and > see if that helps > > + --with-berkeley-db=${LOCALBASE} > - --with-berkeley-db=${BDB_INCLUDE_DIR}:${BDB_LIB_DIR} Reverted in CVS. Please update. -- ------------------------------------------------------------------------ 1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354 Consultant - P6M7G8 Inc. http://p6m7g8.net Senior Sys Admin - RideCharge, Inc. http://ridecharge.com Contractor - PositiveEnergyUSA http://positiveenergyusa.com ASF Member - Apache Software Foundation http://apache.org FreeBSD Committer - FreeBSD Foundation http://freebsd.org Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. From pgollucci at p6m7g8.com Fri Jun 12 17:35:43 2009 From: pgollucci at p6m7g8.com (Philip M. Gollucci) Date: Fri Jun 12 17:35:49 2009 Subject: Error in compiling (make configure) apache22, In-Reply-To: <902905.89957.qm@web30701.mail.mud.yahoo.com> References: <902905.89957.qm@web30701.mail.mud.yahoo.com> Message-ID: <4A3291ED.6010609@p6m7g8.com> Valerian Galeru wrote: > configure: error: Berkeley db4 not found > configure failed for srclib/apr-util > ===> Script "configure" failed unexpectedly. > Please report the problem to apache@FreeBSD.org [maintainer] and attach the > "/usr/ports/www/apache22/work/httpd-2.2.11/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`). > *** Error code 1 Reverted / Fixed in CVS, please update. -- ------------------------------------------------------------------------ 1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354 Consultant - P6M7G8 Inc. http://p6m7g8.net Senior Sys Admin - RideCharge, Inc. http://ridecharge.com Contractor - PositiveEnergyUSA http://positiveenergyusa.com ASF Member - Apache Software Foundation http://apache.org FreeBSD Committer - FreeBSD Foundation http://freebsd.org Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. From pgollucci at p6m7g8.com Fri Jun 12 17:36:13 2009 From: pgollucci at p6m7g8.com (Philip M. Gollucci) Date: Fri Jun 12 17:36:19 2009 Subject: (no subject) In-Reply-To: References: Message-ID: <4A32920B.8010105@p6m7g8.com> Hans Kuhn wrote: > Hello, > > I'm trying to build 2.2.11_6 and the make fails when the configure fails > to find db41/db.h. Here's the "missing" file. > > # ls -l /usr/local/include/db41/db.h > -r--r--r-- 1 root wheel 75839 May 5 23:03 /usr/local/include/db41/db.h Fixed in CVS, please update. -- ------------------------------------------------------------------------ 1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354 Consultant - P6M7G8 Inc. http://p6m7g8.net Senior Sys Admin - RideCharge, Inc. http://ridecharge.com Contractor - PositiveEnergyUSA http://positiveenergyusa.com ASF Member - Apache Software Foundation http://apache.org FreeBSD Committer - FreeBSD Foundation http://freebsd.org Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. From pgollucci at freebsd.org Fri Jun 12 20:29:41 2009 From: pgollucci at freebsd.org (Philip M. Gollucci) Date: Fri Jun 12 20:29:47 2009 Subject: apr In-Reply-To: <200906120705.49985.mel.flynn+fbsd.ports@mailing.thruhere.net> References: <4A31F4AB.5040504@FreeBSD.org> <200906120705.49985.mel.flynn+fbsd.ports@mailing.thruhere.net> Message-ID: <4A32BAB3.4090500@freebsd.org> Mel Flynn wrote: > I certainly welcome this change as 99% of my installs already have > WITH_APR_FROM_PORTS, however 2 things: > - Instead of "(beware!)" one would probably want "(preferred!)" for the > APR_FROM_PORTS knob real soon now, while these changes are in the queue. Thats an easy change I'll make it on or before monday. It might be better to make that the new default too. > - It would help to have some documentation somewhere that lists what of the > apr modules are required for what software, so that one can make the right > decision for the apr port. Well thats kind of involved..... suggestions welcome. > > For example, subversion wants threads and bdb, if you need DBD/postgresql > support in apache, you need apr with postgresql (? I think) etc. That part of the beauty. Now that devel/apr honors ports KNOBS (since january) the WITH_BDB etc will cary over when you build ports. None of this DEPENDS_ARGS crap so the default www/apache2x and www/apr would match by default. If you build your own custom packages it still works. So in /etc/make.conf WITH_POSTGRESQL=yes will DWIM. Without the change, www/apache20 has to support an large number of combinations of how to do stuff relating to apr et al. I forgot got mention it, so I'll mention it now I feel similarly for pcre and WITH_PCRE_FROM_PORTS Another benefit is security. We had to change devel/apr, www/apache2* for the recent apr-util CVE. Had we already converted, only devel/apr would have needed to change and since nearly everything using apr uses shared not static libs you wouldn't have even needed to rebuid www/apache2* From pgollucci at FreeBSD.org Fri Jun 12 21:23:45 2009 From: pgollucci at FreeBSD.org (pgollucci@FreeBSD.org) Date: Fri Jun 12 21:23:51 2009 Subject: ports/135505: www/apache22 fails to install from package when compiled with ldap support Message-ID: <200906122123.n5CLNiMC013820@freefall.freebsd.org> Synopsis: www/apache22 fails to install from package when compiled with ldap support State-Changed-From-To: open->closed State-Changed-By: pgollucci State-Changed-When: Fri Jun 12 21:23:44 UTC 2009 State-Changed-Why: devel/apr is the culprit, do you have WITH_APR_FROM_PORTS set in /etc/make.conf or on the CLI? At any rate, you should uninstall /var/dbb/pkg/apr* and then try this again from the start. http://www.freebsd.org/cgi/query-pr.cgi?pr=135505 From mi+thun at aldan.algebra.com Sat Jun 13 19:57:38 2009 From: mi+thun at aldan.algebra.com (Mikhail T.) Date: Sat Jun 13 19:57:44 2009 Subject: [Fwd: mod_dtcl-0.12.0_1 failed on amd64 8] In-Reply-To: <1244922341.1261.20.camel@hood.oook.cz> References: <1244916221.1261.10.camel@hood.oook.cz> <4A33FB7F.7040401@aldan.algebra.com> <1244922033.1261.19.camel@hood.oook.cz> <4A3401AA.40409@aldan.algebra.com> <1244922341.1261.20.camel@hood.oook.cz> Message-ID: <4A3404B0.6080205@aldan.algebra.com> Pav Lucistnik ???????(??): > After closer look, it seems > - this failure is present on both 6.x and 8.x runs > - this failure was reported to you two months ago > On May 27th (not two months ago) Erwin sent me a report about failure on i386: mod_dtcl.c -o mod_dtcl.So mod_dtcl.c: In function `get_parse_exec_file': mod_dtcl.c:383: warning: long unsigned int format, time_t arg (arg 4) mod_dtcl.c:383: warning: long unsigned int format, time_t arg (arg 5) That's a completely different error. I'm not aware of any other outstanding problems with the port. -mi From pav at FreeBSD.org Sat Jun 13 20:02:44 2009 From: pav at FreeBSD.org (Pav Lucistnik) Date: Sat Jun 13 20:03:18 2009 Subject: [Fwd: mod_dtcl-0.12.0_1 failed on amd64 8] In-Reply-To: <4A3404B0.6080205@aldan.algebra.com> References: <1244916221.1261.10.camel@hood.oook.cz> <4A33FB7F.7040401@aldan.algebra.com> <1244922033.1261.19.camel@hood.oook.cz> <4A3401AA.40409@aldan.algebra.com> <1244922341.1261.20.camel@hood.oook.cz> <4A3404B0.6080205@aldan.algebra.com> Message-ID: <1244923357.1261.22.camel@hood.oook.cz> Mikhail T. p??e v so 13. 06. 2009 v 15:57 -0400: > Pav Lucistnik ???????(??): > > After closer look, it seems > > - this failure is present on both 6.x and 8.x runs > > - this failure was reported to you two months ago > > > On May 27th (not two months ago) Erwin sent me a report about failure on > i386: > > mod_dtcl.c -o mod_dtcl.So > mod_dtcl.c: In function `get_parse_exec_file': > mod_dtcl.c:383: warning: long unsigned int format, time_t arg (arg 4) > mod_dtcl.c:383: warning: long unsigned int format, time_t arg (arg 5) > > > That's a completely different error. I'm not aware of any other > outstanding problems with the port. That was from old 6.x log, meanwhile mod_dtcl.c: In function 'get_parse_exec_file': mod_dtcl.c:383: warning: format '%lx' expects type 'long unsigned int', but argument 4 has type 'time_t' mod_dtcl.c:383: warning: format '%lx' expects type 'long unsigned int', but argument 5 has type 'time_t' *** Error code 1 is an old log from 8.x which is the same thing, basically. The log I had forwarded is not related to this and is a new, second problem, that only recently appeared. -- Pav Lucistnik KDE is for the techies who feel they can't be productive without being able to control the exact amount of bevel in their window frames in 2% increments. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= Url : http://lists.freebsd.org/pipermail/freebsd-apache/attachments/20090613/99ea0c1f/attachment.pgp From mi+thun at aldan.algebra.com Sat Jun 13 20:05:26 2009 From: mi+thun at aldan.algebra.com (Mikhail T.) Date: Sat Jun 13 20:05:33 2009 Subject: [Fwd: mod_dtcl-0.12.0_1 failed on amd64 8] In-Reply-To: <1244923357.1261.22.camel@hood.oook.cz> References: <1244916221.1261.10.camel@hood.oook.cz> <4A33FB7F.7040401@aldan.algebra.com> <1244922033.1261.19.camel@hood.oook.cz> <4A3401AA.40409@aldan.algebra.com> <1244922341.1261.20.camel@hood.oook.cz> <4A3404B0.6080205@aldan.algebra.com> <1244923357.1261.22.camel@hood.oook.cz> Message-ID: <4A340682.4030705@aldan.algebra.com> Pav Lucistnik ???????(??): > Mikhail T. p??e v so 13. 06. 2009 v 15:57 -0400: > >> Pav Lucistnik ???????(??): >> >>> After closer look, it seems >>> - this failure is present on both 6.x and 8.x runs >>> - this failure was reported to you two months ago >>> >>> >> On May 27th (not two months ago) Erwin sent me a report about failure on >> i386: >> >> mod_dtcl.c -o mod_dtcl.So >> mod_dtcl.c: In function `get_parse_exec_file': >> mod_dtcl.c:383: warning: long unsigned int format, time_t arg (arg 4) >> mod_dtcl.c:383: warning: long unsigned int format, time_t arg (arg 5) >> >> >> That's a completely different error. I'm not aware of any other >> outstanding problems with the port. >> > > That was from old 6.x log, meanwhile > > mod_dtcl.c: In function 'get_parse_exec_file': > mod_dtcl.c:383: warning: format '%lx' expects type 'long unsigned int', but argument 4 has type 'time_t' > mod_dtcl.c:383: warning: format '%lx' expects type 'long unsigned int', but argument 5 has type 'time_t' > *** Error code 1 > > is an old log from 8.x which is the same thing, basically. > Agreed, I'll fix this i386-specific problem -- which is only two /weeks/ old -- and unbreak the port. > The log I had forwarded is not related to this and is a new, second > problem, that only recently appeared. > Whatever is wrong with linking will have to await response from apache@... Yours, -mi From pav at FreeBSD.org Sat Jun 13 20:12:48 2009 From: pav at FreeBSD.org (Pav Lucistnik) Date: Sat Jun 13 20:12:55 2009 Subject: [Fwd: mod_dtcl-0.12.0_1 failed on amd64 8] In-Reply-To: <4A3401AA.40409@aldan.algebra.com> References: <1244916221.1261.10.camel@hood.oook.cz> <4A33FB7F.7040401@aldan.algebra.com> <1244922033.1261.19.camel@hood.oook.cz> <4A3401AA.40409@aldan.algebra.com> Message-ID: <1244922341.1261.20.camel@hood.oook.cz> Mikhail T. p??e v so 13. 06. 2009 v 15:44 -0400: > Pav Lucistnik ???????(??): > > Mikhail T. p??e v so 13. 06. 2009 v 15:18 -0400: > > > > > >>>> [...] > >>>> building shared library libmod_dtcl.so.1 > >>>> apache_cookie.So(.text+0x0): In function `ap_os_is_path_absolute': > >>>> : multiple definition of `ap_os_is_path_absolute' > >>>> tcl_commands.So(.text+0x0): first defined here > >>>> channel.So(.text+0x0): In function `ap_os_is_path_absolute': > >>>> : multiple definition of `ap_os_is_path_absolute' > >>>> tcl_commands.So(.text+0x0): first defined here > >>>> mod_dtcl.So(.text+0x0): In function `ap_os_is_path_absolute': > >>>> : multiple definition of `ap_os_is_path_absolute' > >>>> tcl_commands.So(.text+0x0): first defined here > >>>> apache_request.So(.text+0x0): In function `ap_os_is_path_absolute': > >>>> : multiple definition of `ap_os_is_path_absolute' > >>>> tcl_commands.So(.text+0x0): first defined here > >>>> apache_multipart_buffer.So(.text+0x0): In function `ap_os_is_path_absolute': > >>>> : multiple definition of `ap_os_is_path_absolute' > >>>> tcl_commands.So(.text+0x0): first defined here > >>>> *** Error code 1 > >>>> > >>>> Stop in /work/a/ports/www/mod_dtcl/work/mod_dtcl. > >>>> *** Error code 1 > >>>> > >>>> Stop in /a/ports/www/mod_dtcl. > >>>> ================================================================ > >>>> build of /usr/ports/www/mod_dtcl ended at Sat Jun 13 17:43:56 UTC 2009 > >>>> > >>>> > >> I can not reproduce this problem here -- it builds perfectly on my > >> 7.x/amd64 system (which means, Erwin overreacted marking the port > >> "broken" today). > >> > >> The multiply-defined functions aren't defined by mod_dtcl -- they are > >> from Apache's API. Either the API has changed somehow, or the linker has > >> a problem (perhaps, it is stricter?) on the 8.x... > >> > > > > I don't know, it might be -CURRENT specific. OTOH there was a batch of > > dubious commits to apache and apr ports recently. > > > Ok, let's wait for the Apache people (CC-ed) to comment then. Erwin, > please, undo the "BROKEN" part in the mean time. Thanks, After closer look, it seems - this failure is present on both 6.x and 8.x runs - this failure was reported to you two months ago So the blanket BROKEN stands. -- Pav Lucistnik Why does the Earth have colors? -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= Url : http://lists.freebsd.org/pipermail/freebsd-apache/attachments/20090613/8259b8e3/attachment.pgp From mi+thun at aldan.algebra.com Sat Jun 13 20:17:53 2009 From: mi+thun at aldan.algebra.com (Mikhail T.) Date: Sat Jun 13 20:17:59 2009 Subject: [Fwd: mod_dtcl-0.12.0_1 failed on amd64 8] In-Reply-To: <1244922033.1261.19.camel@hood.oook.cz> References: <1244916221.1261.10.camel@hood.oook.cz> <4A33FB7F.7040401@aldan.algebra.com> <1244922033.1261.19.camel@hood.oook.cz> Message-ID: <4A3401AA.40409@aldan.algebra.com> Pav Lucistnik ???????(??): > Mikhail T. p??e v so 13. 06. 2009 v 15:18 -0400: > > >>>> [...] >>>> building shared library libmod_dtcl.so.1 >>>> apache_cookie.So(.text+0x0): In function `ap_os_is_path_absolute': >>>> : multiple definition of `ap_os_is_path_absolute' >>>> tcl_commands.So(.text+0x0): first defined here >>>> channel.So(.text+0x0): In function `ap_os_is_path_absolute': >>>> : multiple definition of `ap_os_is_path_absolute' >>>> tcl_commands.So(.text+0x0): first defined here >>>> mod_dtcl.So(.text+0x0): In function `ap_os_is_path_absolute': >>>> : multiple definition of `ap_os_is_path_absolute' >>>> tcl_commands.So(.text+0x0): first defined here >>>> apache_request.So(.text+0x0): In function `ap_os_is_path_absolute': >>>> : multiple definition of `ap_os_is_path_absolute' >>>> tcl_commands.So(.text+0x0): first defined here >>>> apache_multipart_buffer.So(.text+0x0): In function `ap_os_is_path_absolute': >>>> : multiple definition of `ap_os_is_path_absolute' >>>> tcl_commands.So(.text+0x0): first defined here >>>> *** Error code 1 >>>> >>>> Stop in /work/a/ports/www/mod_dtcl/work/mod_dtcl. >>>> *** Error code 1 >>>> >>>> Stop in /a/ports/www/mod_dtcl. >>>> ================================================================ >>>> build of /usr/ports/www/mod_dtcl ended at Sat Jun 13 17:43:56 UTC 2009 >>>> >>>> >> I can not reproduce this problem here -- it builds perfectly on my >> 7.x/amd64 system (which means, Erwin overreacted marking the port >> "broken" today). >> >> The multiply-defined functions aren't defined by mod_dtcl -- they are >> from Apache's API. Either the API has changed somehow, or the linker has >> a problem (perhaps, it is stricter?) on the 8.x... >> > > I don't know, it might be -CURRENT specific. OTOH there was a batch of > dubious commits to apache and apr ports recently. > Ok, let's wait for the Apache people (CC-ed) to comment then. Erwin, please, undo the "BROKEN" part in the mean time. Thanks, -mi From pgollucci at p6m7g8.com Sat Jun 13 23:14:42 2009 From: pgollucci at p6m7g8.com (Philip M. Gollucci) Date: Sat Jun 13 23:14:49 2009 Subject: [Fwd: mod_dtcl-0.12.0_1 failed on amd64 8] In-Reply-To: <4A340682.4030705@aldan.algebra.com> References: <1244916221.1261.10.camel@hood.oook.cz> <4A33FB7F.7040401@aldan.algebra.com> <1244922033.1261.19.camel@hood.oook.cz> <4A3401AA.40409@aldan.algebra.com> <1244922341.1261.20.camel@hood.oook.cz> <4A3404B0.6080205@aldan.algebra.com> <1244923357.1261.22.camel@hood.oook.cz> <4A340682.4030705@aldan.algebra.com> Message-ID: <4A3432E1.20602@p6m7g8.com> Mikhail T. wrote: > Pav Lucistnik ???????(??): >> Mikhail T. p??e v so 13. 06. 2009 v 15:57 -0400: >> >>> Pav Lucistnik ???????(??): >>> >>>> After closer look, it seems >>>> - this failure is present on both 6.x and 8.x runs >>>> - this failure was reported to you two months ago >>>> >>>> >>> On May 27th (not two months ago) Erwin sent me a report about failure on >>> i386: >>> >>> mod_dtcl.c -o mod_dtcl.So >>> mod_dtcl.c: In function `get_parse_exec_file': >>> mod_dtcl.c:383: warning: long unsigned int format, time_t arg (arg 4) >>> mod_dtcl.c:383: warning: long unsigned int format, time_t arg (arg 5) >>> >>> >>> That's a completely different error. I'm not aware of any other >>> outstanding problems with the port. >>> >> That was from old 6.x log, meanwhile >> >> mod_dtcl.c: In function 'get_parse_exec_file': >> mod_dtcl.c:383: warning: format '%lx' expects type 'long unsigned int', but argument 4 has type 'time_t' >> mod_dtcl.c:383: warning: format '%lx' expects type 'long unsigned int', but argument 5 has type 'time_t' >> *** Error code 1 >> >> is an old log from 8.x which is the same thing, basically. >> > Agreed, I'll fix this i386-specific problem -- which is only two /weeks/ > old -- and unbreak the port. >> The log I had forwarded is not related to this and is a new, second >> problem, that only recently appeared. >> > Whatever is wrong with linking will have to await response from > apache@... Yours, I've been getting the linking error since ~March and Channing's USE_APACHE=yes to USE_APACHE=13 is a no-op. Thats on 8-CURRENT-amd64. http://tb.p6m7g8.net/index.php?action=failed_buildports&build=8-CURRENT-amd64-apache more specificially -- http://tb.p6m7g8.net/errors/8-CURRENT-amd64-apache/mod_dtcl-0.12.0_1.log Unsurprisingly, we didn't get from QAT b/c its on 7-STABLE. From pgollucci at p6m7g8.com Sat Jun 13 23:54:48 2009 From: pgollucci at p6m7g8.com (Philip M. Gollucci) Date: Sat Jun 13 23:54:58 2009 Subject: [Fwd: mod_dtcl-0.12.0_1 failed on amd64 8] In-Reply-To: <4A3432E1.20602@p6m7g8.com> References: <1244916221.1261.10.camel@hood.oook.cz> <4A33FB7F.7040401@aldan.algebra.com> <1244922033.1261.19.camel@hood.oook.cz> <4A3401AA.40409@aldan.algebra.com> <1244922341.1261.20.camel@hood.oook.cz> <4A3404B0.6080205@aldan.algebra.com> <1244923357.1261.22.camel@hood.oook.cz> <4A340682.4030705@aldan.algebra.com> <4A3432E1.20602@p6m7g8.com> Message-ID: <4A343C46.3040902@p6m7g8.com> Philip M. Gollucci wrote: > Mikhail T. wrote: >> Pav Lucistnik ???????(??): >>> Mikhail T. p??e v so 13. 06. 2009 v 15:57 -0400: >>> >>>> Pav Lucistnik ???????(??): >>>> >>>>> After closer look, it seems >>>>> - this failure is present on both 6.x and 8.x runs >>>>> - this failure was reported to you two months ago >>>>> >>>>> >>>> On May 27th (not two months ago) Erwin sent me a report about failure on >>>> i386: >>>> >>>> mod_dtcl.c -o mod_dtcl.So >>>> mod_dtcl.c: In function `get_parse_exec_file': >>>> mod_dtcl.c:383: warning: long unsigned int format, time_t arg (arg 4) >>>> mod_dtcl.c:383: warning: long unsigned int format, time_t arg (arg 5) >>>> >>>> >>>> That's a completely different error. I'm not aware of any other >>>> outstanding problems with the port. >>>> >>> That was from old 6.x log, meanwhile >>> >>> mod_dtcl.c: In function 'get_parse_exec_file': >>> mod_dtcl.c:383: warning: format '%lx' expects type 'long unsigned int', but argument 4 has type 'time_t' >>> mod_dtcl.c:383: warning: format '%lx' expects type 'long unsigned int', but argument 5 has type 'time_t' >>> *** Error code 1 >>> >>> is an old log from 8.x which is the same thing, basically. >>> >> Agreed, I'll fix this i386-specific problem -- which is only two /weeks/ >> old -- and unbreak the port. >>> The log I had forwarded is not related to this and is a new, second >>> problem, that only recently appeared. >>> >> Whatever is wrong with linking will have to await response from >> apache@... Yours, > I've been getting the linking error since ~March and > Channing's USE_APACHE=yes to USE_APACHE=13 is a no-op. > > Thats on 8-CURRENT-amd64. > > http://tb.p6m7g8.net/index.php?action=failed_buildports&build=8-CURRENT-amd64-apache > > more specificially -- > http://tb.p6m7g8.net/errors/8-CURRENT-amd64-apache/mod_dtcl-0.12.0_1.log > > Unsurprisingly, we didn't get from QAT b/c its on 7-STABLE. Should it help, it still fails with mi's recent commit on -CURRENT (though I have local mods in the tree, not to the port. http://tb.p6m7g8.net/errors/8-CURRENT-amd64-apache22/ap13-mod_dtcl-0.12.0_1.log From jumper99 at gmx.de Mon Jun 15 10:43:29 2009 From: jumper99 at gmx.de (Helmut Schneider) Date: Mon Jun 15 10:43:37 2009 Subject: ports/135505: www/apache22 fails to install from package when compiled with ldap support References: <200906122123.n5CLNiMC013820@freefall.freebsd.org> Message-ID: <8A6620DBBB1D452F88BA34E7A274E188@vpe.de> > devel/apr is the culprit Thanks, I'll check that, but at least apr-gdbm-db42-1.3.5.1.3.7_3 is required for subversion... From bugmaster at FreeBSD.org Mon Jun 15 11:06:15 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Jun 15 11:06:42 2009 Subject: Current problem reports assigned to apache@FreeBSD.org Message-ID: <200906151106.n5FB6EeP076120@freefall.freebsd.org> 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/134577 apache www/apache22: build faild with mod_auth_digest a ports/133773 apache net/keepalived port update request o ports/130479 apache www/apache20 and www/apache22 configure_args busted o ports/128952 apache [NEW PORT] java/javadb: Sun's supported distribution o o ports/128078 apache www/apache20 -- LDAP support is broken o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT o ports/124375 apache www/mod_auth_kerb doesn't compile against heimdal o ports/121134 apache www/mod_log_sql2-dtc scoreboard problem o ports/120229 apache www/apache20 does not pick up usernames from NIS [regr o ports/118003 apache www/apache22: with PgSQL option require only libpq.so. p ports/116984 apache [patch] www/apache13-modssl missing perl5.8 as RUN_DEP o ports/108169 apache www/apache20 wrong AP_SAFE_PATH for suEXEC a ports/101566 apache www/apache20 All .svn subdirectories in $(htdocsdir) g a ports/96953 apache www/apache22 port uses its own directories a ports/83644 apache www/apache20 add support for ndbm 15 problems total. From mikej at rogers.com Tue Jun 16 21:31:16 2009 From: mikej at rogers.com (Mike Jakubik) Date: Tue Jun 16 21:31:26 2009 Subject: FreeBSD Port: www/apache22 Message-ID: Hello, i just tried updating apache via portupgrade but the process failed. Below is the error. --- ===> Returning to build of apache-worker-2.2.11_7 ===> apache-worker-2.2.11_7 depends on shared library: iconv.3 - found ===> Generating temporary packing list ===> Checking if www/apache22 already installed Making install in srclib Making install in os Making install in unix Making install in server Making install in mpm Making install in worker Found newer headers. Will rebuild exports.c. rm -f exports.c export_files tmp=export_files_unsorted.txt; rm -f $tmp && touch $tmp; for dir in /usr/ports/www/apache22/work/httpd-2.2.11/include /usr/ports/www/apache22/work/httpd-2.2.11/os/unix /usr/ports/www/apache22/work/httpd-2.2.11/modules/http; do ls $dir/*.h >> $tmp; done; for dir in /usr/local/include/apr-1 /usr/local/include/apr-1; do (ls $dir/ap[ru].h $dir/ap[ru]_*.h >> $tmp 2>/dev/null); done; sort -u $tmp > export_files; rm -f $tmp nawk -f /usr/ports/www/apache22/work/httpd-2.2.11/build/make_exports.awk `cat export_files` > exports.c /usr/local/build-1/libtool --tag=CXX --mode=compile cc -O2 -fno-strict-aliasing -pipe -march=nocona -I/usr/include -I/usr/local/include -O2 -fno-strict-aliasing -pipe -march=nocona -I/usr/include -I. -I/usr/ports/www/apache22/work/httpd-2.2.11/os/unix -I/usr/ports/www/apache22/work/httpd-2.2.11/server/mpm/worker -I/usr/ports/www/apache22/work/httpd-2.2.11/modules/http -I/usr/ports/www/apache22/work/httpd-2.2.11/modules/filters -I/usr/ports/www/apache22/work/httpd-2.2.11/modules/proxy -I/usr/ports/www/apache22/work/httpd-2.2.11/include -I/usr/ports/www/apache22/work/httpd-2.2.11/modules/generators -I/usr/ports/www/apache22/work/httpd-2.2.11/modules/mappers -I/usr/ports/www/apache22/work/httpd-2.2.11/modules/database -I/usr/local/include/apr-1 -I/usr/local/include -I/usr/ports/www/apache22/work/httpd-2.2.11/modules/proxy/../generators -I/usr/ports/www/apache22/work/httpd-2.2.11/modules/ssl -I/usr/ports/www/apache22/work/httpd-2.2.11/modules/dav/main -prefer-non-pic -static -c exports.c && touch exports.lo /usr/local/build-1/libtool: not found *** Error code 127 Stop in /usr/ports/www/apache22/work/httpd-2.2.11/server. *** Error code 1 Stop in /usr/ports/www/apache22/work/httpd-2.2.11/server. *** Error code 1 Stop in /usr/ports/www/apache22/work/httpd-2.2.11. *** Error code 1 Stop in /usr/ports/www/apache22. *** Error code 1 Stop in /usr/ports/www/apache22. *** Error code 1 Stop in /usr/ports/www/apache22. ===> Cleaning for apr-gdbm-db42-1.3.5.1.3.7_3 ===> Cleaning for automake-1.9.6_3 ===> Cleaning for gdbm-1.8.3_3 ===> Cleaning for db42-4.2.52_5 ===> Cleaning for apache-worker-2.2.11_7 ---> Cleaning out obsolete shared libraries [Updating the pkgdb in /var/db/pkg ... - 219 packages found (-0 +4) .... done] root@illidan.local:~# pkg_info |grep -i libtool libtool-1.5.26 Generic shared library support script From pgollucci at p6m7g8.com Tue Jun 16 21:44:37 2009 From: pgollucci at p6m7g8.com (Philip M. Gollucci) Date: Tue Jun 16 21:44:45 2009 Subject: FreeBSD Port: www/apache22 In-Reply-To: References: Message-ID: <4A381243.5090803@p6m7g8.com> Mike Jakubik wrote: > Hello, i just tried updating apache via portupgrade but the process > failed. Below is the error. > /usr/local/build-1/libtool: not found > ===> Cleaning for apr-gdbm-db42-1.3.5.1.3.7_3 Its trying to use devel/apr 's libtool. It got moved recently to respect hier(7), something wasn't cleaned up correctly. what options do you have set for devel/apr and www/apache22 Also, $ grep libtool /var/db/pkg/apr*/+CONTENTS -- ------------------------------------------------------------------------ 1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354 Consultant - P6M7G8 Inc. http://p6m7g8.net Senior Sys Admin - RideCharge, Inc. http://ridecharge.com Contractor - PositiveEnergyUSA http://positiveenergyusa.com ASF Member - Apache Software Foundation http://apache.org FreeBSD Committer - FreeBSD Foundation http://freebsd.org Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. From mikej at rogers.com Wed Jun 17 00:00:37 2009 From: mikej at rogers.com (Mike Jakubik) Date: Wed Jun 17 00:00:43 2009 Subject: FreeBSD Port: www/apache22 In-Reply-To: <4A381243.5090803@p6m7g8.com> References: <4A381243.5090803@p6m7g8.com> Message-ID: <4A38320F.8040506@rogers.com> Philip M. Gollucci wrote: > Mike Jakubik wrote: >> Hello, i just tried updating apache via portupgrade but the process >> failed. Below is the error. > >> /usr/local/build-1/libtool: not found > >> ===> Cleaning for apr-gdbm-db42-1.3.5.1.3.7_3 > > Its trying to use devel/apr 's libtool. > > It got moved recently to respect hier(7), something wasn't cleaned up > correctly. > > what options do you have set for devel/apr and www/apache22 > > Also, > $ grep libtool /var/db/pkg/apr*/+CONTENTS > > For apache i chose to use the ports apr, for apr itself i went with the defaults. I then took out the option to use ports apr and apache compiled just fine. Thanks. --- root@illidan.local:~# grep libtool /var/db/pkg/apr*/+CONTENTS share/apr/build-1/libtool root@illidan.local:~# cat /etc/make.conf CPUTYPE?=core2 KERNCONF=ILLIDAN NO_INET6=true NO_PROFILE=true WITHOUT_X11=true # added by use.perl 2009-02-13 10:26:11 PERL_VER=5.8.8 PERL_VERSION=5.8.8 From bugmaster at FreeBSD.org Mon Jun 22 11:06:16 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Jun 22 11:06:42 2009 Subject: Current problem reports assigned to apache@FreeBSD.org Message-ID: <200906221106.n5MB6FQH017240@freefall.freebsd.org> 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/134577 apache www/apache22: build faild with mod_auth_digest a ports/133773 apache net/keepalived port update request o ports/130479 apache www/apache20 and www/apache22 configure_args busted o ports/128952 apache [NEW PORT] java/javadb: Sun's supported distribution o o ports/128078 apache www/apache20 -- LDAP support is broken o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT o ports/124375 apache www/mod_auth_kerb doesn't compile against heimdal o ports/121134 apache www/mod_log_sql2-dtc scoreboard problem o ports/120229 apache www/apache20 does not pick up usernames from NIS [regr o ports/118003 apache www/apache22: with PgSQL option require only libpq.so. p ports/116984 apache [patch] www/apache13-modssl missing perl5.8 as RUN_DEP o ports/108169 apache www/apache20 wrong AP_SAFE_PATH for suEXEC a ports/101566 apache www/apache20 All .svn subdirectories in $(htdocsdir) g a ports/96953 apache www/apache22 port uses its own directories a ports/83644 apache www/apache20 add support for ndbm 15 problems total. From pgollucci at FreeBSD.org Mon Jun 22 19:32:36 2009 From: pgollucci at FreeBSD.org (pgollucci@FreeBSD.org) Date: Mon Jun 22 19:32:43 2009 Subject: ports/127402: [NEW PORT] security/shibboleth2-sp: C++ Shibboleth Service Provider (Internet2) for Apache Message-ID: <200906221932.n5MJWZwe015998@freefall.freebsd.org> Synopsis: [NEW PORT] security/shibboleth2-sp: C++ Shibboleth Service Provider (Internet2) for Apache State-Changed-From-To: closed->open State-Changed-By: pgollucci State-Changed-When: Mon Jun 22 19:32:34 UTC 2009 State-Changed-Why: Submitter has fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=127402 From steve at mouf.net Mon Jun 22 22:30:04 2009 From: steve at mouf.net (Steve Wills) Date: Mon Jun 22 22:30:11 2009 Subject: ports/127402: fix for shar file in PR Message-ID: <200906222230.n5MMU3hk049213@freefall.freebsd.org> The following reply was made to PR ports/127402; it has been noted by GNATS. From: Steve Wills To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: ports/127402: fix for shar file in PR Date: Mon, 22 Jun 2009 19:40:18 GMT Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # shibboleth2-sp/ # shibboleth2-sp/files # shibboleth2-sp/files/shibboleth-sp.in # shibboleth2-sp/files/patch-shibsp_remoting_impl_TCPListener.cpp # shibboleth2-sp/Makefile # shibboleth2-sp/distinfo # shibboleth2-sp/pkg-descr # shibboleth2-sp/pkg-plist # echo c - shibboleth2-sp/ mkdir -p shibboleth2-sp/ > /dev/null 2>&1 echo c - shibboleth2-sp/files mkdir -p shibboleth2-sp/files > /dev/null 2>&1 echo x - shibboleth2-sp/files/shibboleth-sp.in sed 's/^X//' >shibboleth2-sp/files/shibboleth-sp.in << '53ff55569c92c6723b5811f675bb98ca' X#!/bin/sh X# X# $FreeBSD: ports/security/shibboleth-sp/files/shibboleth-sp.in,v 1.1 2007/08/03 23:21:25 pav Exp $ X# X# PROVIDE: shibboleth_sp X# REQUIRE: DAEMON X# X X. %%RC_SUBR%% X Xname="shibboleth_sp" Xrcvar=${name}_enable X X[ -z "$shibboleth_sp_enable" ] && shibboleth_sp_enable="NO" Xpidfile="/var/run/${name}.pid" Xcommand="%%PREFIX%%/sbin/shibd" Xstart_cmd="${command} -f -p ${pidfile} &" X Xload_rc_config $name Xrun_rc_command "$1" 53ff55569c92c6723b5811f675bb98ca echo x - shibboleth2-sp/files/patch-shibsp_remoting_impl_TCPListener.cpp sed 's/^X//' >shibboleth2-sp/files/patch-shibsp_remoting_impl_TCPListener.cpp << '2906cc9ba467a1c1e0b33182a8946ebe' X X$FreeBSD$ X X--- shibsp/remoting/impl/TCPListener.cpp.orig X+++ shibsp/remoting/impl/TCPListener.cpp X@@ -38,6 +38,7 @@ X #include X #include X #include X+#include X X using namespace shibsp; X using namespace xmltooling; 2906cc9ba467a1c1e0b33182a8946ebe echo x - shibboleth2-sp/Makefile sed 's/^X//' >shibboleth2-sp/Makefile << '4fd46d52947d4efb233058bd57dd4019' X# New ports collection makefile for: security/shibboleth2-sp X# Date created: 17 Sept2008 X# Whom: Janos Mohacsi X# X# $FreeBSD$ X# X XPORTNAME= shibboleth-sp XPORTVERSION= 2.1 XCATEGORIES= security www XMASTER_SITES= http://shibboleth.internet2.edu/downloads/shibboleth/cppsp/2.1/ X XMAINTAINER= janos.mohacsi@bsd.hu XCOMMENT= C++ Shibboleth Service Provider (Internet2) for Apache X XLIB_DEPENDS= saml.3:${PORTSDIR}/security/opensaml2 X XOPTIONS= APACHE22 "Use Apache version 2.2 instead of version 2.0" on X XUSE_GMAKE= yes XGNU_CONFIGURE= yes XUSE_LDCONFIG= yes XUSE_RC_SUBR= shibboleth-sp XWRKSRC= ${WRKDIR}/shibboleth-${PORTVERSION} X X.include X X.if defined(WITH_APACHE22) XUSE_APACHE= 22 XCONFIGURE_ARGS= --enable-apache-22 --with-apxs22=${APXS} X.else XUSE_APACHE= 20 XCONFIGURE_ARGS= --enable-apache-20 --with-apxs2=${APXS} X.endif XCONFIGURE_ARGS+= --localstatedir=/var --with-log4shib=${LOCALBASE} --with-openssl=${OPENSSLBASE} --with-xmltooling=${LOCALBASE} X Xpost-patch: X @${REINPLACE_CMD} -e 's|/run|/run/shibboleth|' ${WRKSRC}/configs/Makefile.in X X.include 4fd46d52947d4efb233058bd57dd4019 echo x - shibboleth2-sp/distinfo sed 's/^X//' >shibboleth2-sp/distinfo << 'bba97482a1f55e06d2ef39a4e7ea9336' XMD5 (shibboleth-sp-2.1.tar.gz) = 39c35035139f2cf06b05633b79441852 XSHA256 (shibboleth-sp-2.1.tar.gz) = 6967dc482ee9a6b24335ee1e14954f78815393252a0fde0c44b4274ff5462554 XSIZE (shibboleth-sp-2.1.tar.gz) = 756381 bba97482a1f55e06d2ef39a4e7ea9336 echo x - shibboleth2-sp/pkg-descr sed 's/^X//' >shibboleth2-sp/pkg-descr << '43f0b1cb8dbc5b586de1850037493138' XShibboleth is standards-based, open source middleware software which Xprovides Web Single SignOn (SSO) across or within organizational Xboundaries. It allows sites to make informed authorization decisions Xfor individual access of protected online resources in a Xprivacy-preserving manner. X XThis software is a C++ implementation of the Service Provider version 2 Xcomponent of the Shibboleth can be used in Apache Web servers. The Xservice provider manages secured resources. User access to resources Xis based on assertions received by the service provider (SP) from Xan identity provider. X XWWW: http://shibboleth.internet2.edu/ 43f0b1cb8dbc5b586de1850037493138 echo x - shibboleth2-sp/pkg-plist sed 's/^X//' >shibboleth2-sp/pkg-plist << 'f59698c4ce0f2ede0c1ab24befde3bfc' Xbin/mdquery Xbin/resolvertest Xetc/shibboleth/native.logger Xetc/shibboleth/native.logger.dist Xetc/shibboleth/shibd.logger Xetc/shibboleth/shibd.logger.dist Xetc/shibboleth/shibboleth2.xml Xetc/shibboleth/shibboleth2.xml.dist Xetc/shibboleth/attribute-map.xml Xetc/shibboleth/attribute-map.xml.dist Xetc/shibboleth/attribute-policy.xml Xetc/shibboleth/attribute-policy.xml.dist Xetc/shibboleth/example-metadata.xml Xetc/shibboleth/example-metadata.xml.dist Xetc/shibboleth/console.logger Xetc/shibboleth/console.logger.dist Xetc/shibboleth/syslog.logger Xetc/shibboleth/syslog.logger.dist Xetc/shibboleth/accessError.html Xetc/shibboleth/accessError.html.dist Xetc/shibboleth/sessionError.html Xetc/shibboleth/sessionError.html.dist Xetc/shibboleth/metadataError.html Xetc/shibboleth/metadataError.html.dist Xetc/shibboleth/bindingTemplate.html Xetc/shibboleth/bindingTemplate.html.dist Xetc/shibboleth/discoveryTemplate.html Xetc/shibboleth/discoveryTemplate.html.dist Xetc/shibboleth/localLogout.html Xetc/shibboleth/localLogout.html.dist Xetc/shibboleth/globalLogout.html Xetc/shibboleth/globalLogout.html.dist Xetc/shibboleth/sslError.html Xetc/shibboleth/sslError.html.dist Xetc/shibboleth/shibd-redhat Xetc/shibboleth/shibd-debian Xetc/shibboleth/shibd-osx.plist Xetc/shibboleth/apache.config Xetc/shibboleth/apache2.config Xetc/shibboleth/apache22.config Xetc/shibboleth/keygen.sh Xetc/shibboleth/upgrade.xsl Xetc/shibboleth/sp-key.pem Xetc/shibboleth/sp-cert.pem Xinclude/shibsp/attribute/filtering/AttributeFilter.h Xinclude/shibsp/attribute/filtering/BasicFilteringContext.h Xinclude/shibsp/attribute/filtering/FilteringContext.h Xinclude/shibsp/attribute/filtering/FilterPolicyContext.h Xinclude/shibsp/attribute/filtering/MatchFunctor.h Xinclude/shibsp/attribute/Attribute.h Xinclude/shibsp/attribute/AttributeDecoder.h Xinclude/shibsp/attribute/NameIDAttribute.h Xinclude/shibsp/attribute/ScopedAttribute.h Xinclude/shibsp/attribute/SimpleAttribute.h Xinclude/shibsp/attribute/resolver/AttributeExtractor.h Xinclude/shibsp/attribute/resolver/AttributeResolver.h Xinclude/shibsp/attribute/resolver/ResolutionContext.h Xinclude/shibsp/binding/ArtifactResolver.h Xinclude/shibsp/binding/SOAPClient.h Xinclude/shibsp/handler/AbstractHandler.h Xinclude/shibsp/handler/AssertionConsumerService.h Xinclude/shibsp/handler/Handler.h Xinclude/shibsp/handler/LogoutHandler.h Xinclude/shibsp/handler/RemotedHandler.h Xinclude/shibsp/handler/SessionInitiator.h Xinclude/shibsp/AbstractSPRequest.h Xinclude/shibsp/AccessControl.h Xinclude/shibsp/Application.h Xinclude/shibsp/base.h Xinclude/shibsp/exceptions.h Xinclude/shibsp/paths.h Xinclude/shibsp/RequestMapper.h Xinclude/shibsp/ServiceProvider.h Xinclude/shibsp/SessionCache.h Xinclude/shibsp/SessionCacheEx.h Xinclude/shibsp/SPConfig.h Xinclude/shibsp/SPRequest.h Xinclude/shibsp/TransactionLog.h Xinclude/shibsp/version.h Xinclude/shibsp/lite/CommonDomainCookie.h Xinclude/shibsp/lite/SAMLConstants.h Xinclude/shibsp/metadata/MetadataExt.h Xinclude/shibsp/metadata/MetadataProviderCriteria.h Xinclude/shibsp/remoting/ddf.h Xinclude/shibsp/remoting/ListenerService.h Xinclude/shibsp/security/PKIXTrustEngine.h Xinclude/shibsp/security/SecurityPolicy.h Xinclude/shibsp/util/CGIParser.h Xinclude/shibsp/util/DOMPropertySet.h Xinclude/shibsp/util/PropertySet.h Xinclude/shibsp/util/SPConstants.h Xinclude/shibsp/util/TemplateParameters.h Xlib/libshibsp.so.2 Xlib/libshibsp.so Xlib/shibboleth/adfs.so Xlib/shibboleth/adfs.la Xlib/shibboleth/adfs-lite.so Xlib/shibboleth/adfs-lite.la Xlib/shibboleth/mod_shib_22.so Xlib/shibboleth/mod_shib_22.la Xlib/libshibsp-lite.so.2 Xlib/libshibsp-lite.so Xsbin/shibd Xshare/xml/shibboleth/catalog.xml Xshare/xml/shibboleth/shibboleth.xsd Xshare/xml/shibboleth/shibboleth-metadata-1.0.xsd Xshare/xml/shibboleth/shibboleth-2.0-native-sp-config.xsd Xshare/xml/shibboleth/shibboleth-2.0-afp.xsd Xshare/xml/shibboleth/shibboleth-2.0-afp-mf-basic.xsd Xshare/xml/shibboleth/shibboleth-2.0-afp-mf-saml.xsd Xshare/xml/shibboleth/shibboleth-2.0-attribute-map.xsd Xshare/xml/shibboleth/shibboleth-2.0-sp-notify.xsd Xshare/xml/shibboleth/WS-Trust.xsd Xshare/doc/shibboleth/CREDITS.txt Xshare/doc/shibboleth/LICENSE.txt Xshare/doc/shibboleth/NOTICE.txt Xshare/doc/shibboleth/README.txt Xshare/doc/shibboleth/RELEASE.txt Xshare/doc/shibboleth/FASTCGI.LICENSE Xshare/doc/shibboleth/OPENSSL.LICENSE Xshare/doc/shibboleth/LOG4CPP.LICENSE Xshare/doc/shibboleth/main.css Xshare/doc/shibboleth/logo.jpg X@exec mkdir -p %D/data X@exec mkdir -p /var/log/shibboleth X@exec mkdir -p /var/run/shibboleth X@exec chmod -R ug=rwx,o= /var/run/shibboleth X@unexec rm -rf /var/run/shibboleth 2>&1 >/dev/null || true X@dirrmtry share/doc/shibboleth/api X@dirrmtry share/doc/shibboleth X@dirrmtry lib/shibboleth X@dirrmtry share/xml/shibboleth X@dirrmtry include/shibsp/util X@dirrmtry include/shibsp/security X@dirrmtry include/shibsp/remoting X@dirrmtry include/shibsp/metadata X@dirrmtry include/shibsp/lite X@dirrmtry include/shibsp/handler X@dirrmtry include/shibsp/binding X@dirrmtry include/shibsp/attribute/resolver X@dirrmtry include/shibsp/attribute/filtering X@dirrmtry include/shibsp/attribute X@dirrmtry include/shibsp X@dirrmtry etc/shibboleth X@dirrmtry data f59698c4ce0f2ede0c1ab24befde3bfc exit From linimon at FreeBSD.org Thu Jun 25 15:57:14 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Thu Jun 25 15:57:21 2009 Subject: ports/127402: [NEW PORT] security/shibboleth2-sp: C++ Shibboleth Service Provider (Internet2) for Apache Message-ID: <200906251557.n5PFvDns088782@freefall.freebsd.org> Synopsis: [NEW PORT] security/shibboleth2-sp: C++ Shibboleth Service Provider (Internet2) for Apache State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Thu Jun 25 15:55:56 UTC 2009 State-Changed-Why: Superseded by ports/136034. Responsible-Changed-From-To: apache->linimon Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 25 15:55:56 UTC 2009 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=127402 From linimon at FreeBSD.org Thu Jun 25 15:57:34 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Thu Jun 25 15:57:46 2009 Subject: ports/136034: new port: security/shibboleth2-sp: C++ Shibboleth Service Provider (Internet2) for Apache Message-ID: <200906251557.n5PFvYGw088818@freefall.freebsd.org> Old Synopsis: new port: security/shibboleth2-sp New Synopsis: new port: security/shibboleth2-sp: C++ Shibboleth Service Provider (Internet2) for Apache Responsible-Changed-From-To: freebsd-ports-bugs->apache Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jun 25 15:55:47 UTC 2009 Responsible-Changed-Why: Replacement of ports/127402. http://www.freebsd.org/cgi/query-pr.cgi?pr=136034 From edwin at FreeBSD.org Sat Jun 27 14:40:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Jun 27 14:40:23 2009 Subject: ports/136091: [PATCH] www/apache22 - suexec resource limits patch Message-ID: <200906271440.n5REeBVU044036@freefall.freebsd.org> Synopsis: [PATCH] www/apache22 - suexec resource limits patch Responsible-Changed-From-To: freebsd-ports-bugs->apache Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jun 27 14:40:11 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=136091 From bugmaster at FreeBSD.org Mon Jun 29 11:06:19 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Jun 29 11:06:41 2009 Subject: Current problem reports assigned to apache@FreeBSD.org Message-ID: <200906291106.n5TB6INS045559@freefall.freebsd.org> 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 -------------------------------------------------------------------------------- o ports/136091 apache [PATCH] www/apache22 - suexec resource limits patch o ports/136034 apache new port: security/shibboleth2-sp: C++ Shibboleth Serv a ports/134577 apache www/apache22: build faild with mod_auth_digest a ports/133773 apache net/keepalived port update request o ports/130479 apache www/apache20 and www/apache22 configure_args busted o ports/128952 apache [NEW PORT] java/javadb: Sun's supported distribution o o ports/128078 apache www/apache20 -- LDAP support is broken o ports/125183 apache www/apache22 wrong SUEXEC_DOCROOT o ports/124375 apache www/mod_auth_kerb doesn't compile against heimdal o ports/121134 apache www/mod_log_sql2-dtc scoreboard problem o ports/120229 apache www/apache20 does not pick up usernames from NIS [regr o ports/118003 apache www/apache22: with PgSQL option require only libpq.so. p ports/116984 apache [patch] www/apache13-modssl missing perl5.8 as RUN_DEP o ports/108169 apache www/apache20 wrong AP_SAFE_PATH for suEXEC a ports/101566 apache www/apache20 All .svn subdirectories in $(htdocsdir) g a ports/96953 apache www/apache22 port uses its own directories a ports/83644 apache www/apache20 add support for ndbm 17 problems total.