From owner-svn-ports-head@FreeBSD.ORG Tue Oct 14 13:23:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2840FC25; Tue, 14 Oct 2014 13:23:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 14B55C70; Tue, 14 Oct 2014 13:23:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9EDNpID032905; Tue, 14 Oct 2014 13:23:51 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9EDNp4r032903; Tue, 14 Oct 2014 13:23:51 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201410141323.s9EDNp4r032903@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 14 Oct 2014 13:23:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370851 - in head/www/apache22: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Oct 2014 13:23:52 -0000 Author: mat Date: Tue Oct 14 13:23:51 2014 New Revision: 370851 URL: https://svnweb.freebsd.org/changeset/ports/370851 QAT: https://qat.redports.org/buildarchive/r370851/ Log: Remove a #define strtoul that is messing up with c++. Differential Revision: https://reviews.freebsd.org/D945 Approved by: ohauer Sponsored by: Absolight Added: head/www/apache22/files/patch-include__httpd.h (contents, props changed) Modified: head/www/apache22/Makefile Modified: head/www/apache22/Makefile ============================================================================== --- head/www/apache22/Makefile Tue Oct 14 12:39:38 2014 (r370850) +++ head/www/apache22/Makefile Tue Oct 14 13:23:51 2014 (r370851) @@ -2,7 +2,7 @@ PORTNAME= apache22 PORTVERSION= 2.2.29 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} DISTNAME= httpd-${PORTVERSION} Added: head/www/apache22/files/patch-include__httpd.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/apache22/files/patch-include__httpd.h Tue Oct 14 13:23:51 2014 (r370851) @@ -0,0 +1,15 @@ +--- include/httpd.h.orig 2014-08-21 17:33:48 UTC ++++ include/httpd.h +@@ -1905,12 +1905,6 @@ + const char *cmd, + const char * const *argv); + +-/** strtoul does not exist on sunos4. */ +-#ifdef strtoul +-#undef strtoul +-#endif +-#define strtoul strtoul_is_not_a_portable_function_use_strtol_instead +- + /* The C library has functions that allow const to be silently dropped ... + these macros detect the drop in maintainer mode, but use the native + methods for normal builds