From owner-svn-ports-head@FreeBSD.ORG Mon Sep 15 07:28:59 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 337A7389; Mon, 15 Sep 2014 07:28:59 +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 137C07FD; Mon, 15 Sep 2014 07:28:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8F7SwV2022497; Mon, 15 Sep 2014 07:28:58 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8F7SwAC022494; Mon, 15 Sep 2014 07:28:58 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201409150728.s8F7SwAC022494@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Mon, 15 Sep 2014 07:28:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368250 - head/textproc/zorba/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: Mon, 15 Sep 2014 07:28:59 -0000 Author: gahr Date: Mon Sep 15 07:28:58 2014 New Revision: 368250 URL: http://svnweb.freebsd.org/changeset/ports/368250 QAT: https://qat.redports.org/buildarchive/r368250/ Log: - Fix build on 9.x and above. 8.x needs some more investigation. Added: head/textproc/zorba/files/patch-bin_zorbacmd.cpp (contents, props changed) Modified: head/textproc/zorba/files/patch-bin-debugger_main.cpp head/textproc/zorba/files/patch-src-util_string_util.cpp Modified: head/textproc/zorba/files/patch-bin-debugger_main.cpp ============================================================================== --- head/textproc/zorba/files/patch-bin-debugger_main.cpp Mon Sep 15 07:28:46 2014 (r368249) +++ head/textproc/zorba/files/patch-bin-debugger_main.cpp Mon Sep 15 07:28:58 2014 (r368250) @@ -1,10 +1,11 @@ ---- bin/debugger/main.cpp.orig 2012-06-21 11:19:43.000000000 +0200 -+++ bin/debugger/main.cpp 2012-06-21 11:19:27.000000000 +0200 -@@ -22,6 +22,8 @@ +--- bin/debugger/main.cpp.orig 2012-10-04 00:35:17.000000000 +0200 ++++ bin/debugger/main.cpp 2014-09-11 15:46:51.000000000 +0200 +@@ -22,6 +22,9 @@ #include #endif +#include ++#include + #include Added: head/textproc/zorba/files/patch-bin_zorbacmd.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/zorba/files/patch-bin_zorbacmd.cpp Mon Sep 15 07:28:58 2014 (r368250) @@ -0,0 +1,11 @@ +--- bin/zorbacmd.cpp.orig 2014-09-12 09:26:04.000000000 +0200 ++++ bin/zorbacmd.cpp 2014-09-12 09:26:23.000000000 +0200 +@@ -16,6 +16,8 @@ + + #include "zorbacmdproperties.h" + ++#include ++ + #include + #include + #include Modified: head/textproc/zorba/files/patch-src-util_string_util.cpp ============================================================================== --- head/textproc/zorba/files/patch-src-util_string_util.cpp Mon Sep 15 07:28:46 2014 (r368249) +++ head/textproc/zorba/files/patch-src-util_string_util.cpp Mon Sep 15 07:28:58 2014 (r368250) @@ -1,6 +1,16 @@ ---- src/util/string_util.cpp.orig 2012-06-13 06:56:48.000000000 +0200 -+++ src/util/string_util.cpp 2012-06-21 09:49:48.000000000 +0200 -@@ -92,7 +92,11 @@ +--- src/util/string_util.cpp.orig 2012-10-04 00:35:16.000000000 +0200 ++++ src/util/string_util.cpp 2014-09-12 11:43:08.000000000 +0200 +@@ -18,6 +18,9 @@ + #include + #include + ++#include ++#include ++ + #include "ascii_util.h" + #include "cxx_util.h" + #include "string_util.h" +@@ -92,7 +95,11 @@ float atof( char const *s ) { char *end; errno = 0; @@ -12,7 +22,7 @@ check_parse_number( s, end, &result ); return result; } -@@ -100,7 +104,11 @@ +@@ -100,7 +107,11 @@ long long atoll( char const *s ) { char *end; errno = 0; @@ -24,7 +34,7 @@ check_parse_number( s, end, static_cast( nullptr ) ); return result; } -@@ -114,7 +122,11 @@ +@@ -114,7 +125,11 @@ char *end; errno = 0;