From owner-svn-ports-head@FreeBSD.ORG Mon Nov 4 20:24:10 2013 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 ESMTP id 38C95BE2; Mon, 4 Nov 2013 20:24:10 +0000 (UTC) (envelope-from stefan@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 160F9208D; Mon, 4 Nov 2013 20:24:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA4KO97P026331; Mon, 4 Nov 2013 20:24:09 GMT (envelope-from stefan@svn.freebsd.org) Received: (from stefan@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA4KO7UP026309; Mon, 4 Nov 2013 20:24:07 GMT (envelope-from stefan@svn.freebsd.org) Message-Id: <201311042024.rA4KO7UP026309@svn.freebsd.org> From: Stefan Walter Date: Mon, 4 Nov 2013 20:24:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332774 - in head/mail/spamprobe: . 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.14 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, 04 Nov 2013 20:24:10 -0000 Author: stefan Date: Mon Nov 4 20:24:06 2013 New Revision: 332774 URL: http://svnweb.freebsd.org/changeset/ports/332774 Log: Unbreak on 10 by patching missing #includes into source files. Added: head/mail/spamprobe/files/patch-src_database_DatabaseConfig.cc (contents, props changed) head/mail/spamprobe/files/patch-src_hdl_HdlTokenizer.cc (contents, props changed) head/mail/spamprobe/files/patch-src_includes_MultiLineSubString.h (contents, props changed) head/mail/spamprobe/files/patch-src_includes_util.h (contents, props changed) head/mail/spamprobe/files/patch-src_parser_AutoTrainMailMessageReader.cc (contents, props changed) head/mail/spamprobe/files/patch-src_parser_HtmlTokenizer.cc (contents, props changed) head/mail/spamprobe/files/patch-src_parser_MailMessageReader.cc (contents, props changed) head/mail/spamprobe/files/patch-src_parser_MbxMailMessageReader.cc (contents, props changed) head/mail/spamprobe/files/patch-src_spamprobe_Command_cleanup.cc (contents, props changed) head/mail/spamprobe/files/patch-src_spamprobe_Command_edit_term.cc (contents, props changed) head/mail/spamprobe/files/patch-src_spamprobe_Command_exec.cc (contents, props changed) head/mail/spamprobe/files/patch-src_spamprobe_Command_import.cc (contents, props changed) head/mail/spamprobe/files/patch-src_spamprobe_Command_purge.cc (contents, props changed) head/mail/spamprobe/files/patch-src_spamprobe_spamprobe.cc (contents, props changed) Modified: head/mail/spamprobe/Makefile Modified: head/mail/spamprobe/Makefile ============================================================================== --- head/mail/spamprobe/Makefile Mon Nov 4 20:21:53 2013 (r332773) +++ head/mail/spamprobe/Makefile Mon Nov 4 20:24:06 2013 (r332774) @@ -18,7 +18,7 @@ PLIST_FILES= bin/spamprobe man/man1/spam .include .if ${OSVERSION} >= 1000024 -BROKEN= does not build with clang +USE_GCC= yes .endif # PBL support Added: head/mail/spamprobe/files/patch-src_database_DatabaseConfig.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_database_DatabaseConfig.cc Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/database/DatabaseConfig.cc.orig 2013-11-03 21:52:55.000000000 +0100 ++++ src/database/DatabaseConfig.cc 2013-11-03 21:53:35.000000000 +0100 +@@ -29,6 +29,7 @@ + // + + #include ++#include + #include "File.h" + #include "WordData.h" + #include "FrequencyDBImpl.h" Added: head/mail/spamprobe/files/patch-src_hdl_HdlTokenizer.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_hdl_HdlTokenizer.cc Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/hdl/HdlTokenizer.cc.orig 2013-11-04 19:31:52.000000000 +0100 ++++ src/hdl/HdlTokenizer.cc 2013-11-04 19:32:22.000000000 +0100 +@@ -28,6 +28,7 @@ + // http://www.cooldevtools.com/qpl.html + // + ++#include + #include "AbstractCharReader.h" + #include "HdlError.h" + #include "HdlToken.h" Added: head/mail/spamprobe/files/patch-src_includes_MultiLineSubString.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_includes_MultiLineSubString.h Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/includes/MultiLineSubString.h.orig 2013-11-03 22:06:31.000000000 +0100 ++++ src/includes/MultiLineSubString.h 2013-11-03 22:06:50.000000000 +0100 +@@ -31,6 +31,7 @@ + #ifndef _MultiLineSubString_h + #define _MultiLineSubString_h + ++#include + #include "AbstractMultiLineString.h" + + class MultiLineSubString : public AbstractMultiLineString Added: head/mail/spamprobe/files/patch-src_includes_util.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_includes_util.h Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/includes/util.h.orig 2013-11-03 21:42:41.000000000 +0100 ++++ src/includes/util.h 2013-11-03 21:42:54.000000000 +0100 +@@ -42,6 +42,7 @@ + #include + #include + #include ++#include + #include "Ptr.h" + #include "Ref.h" + Added: head/mail/spamprobe/files/patch-src_parser_AutoTrainMailMessageReader.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_parser_AutoTrainMailMessageReader.cc Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/parser/AutoTrainMailMessageReader.cc.orig 2013-11-03 22:30:29.000000000 +0100 ++++ src/parser/AutoTrainMailMessageReader.cc 2013-11-03 22:33:21.000000000 +0100 +@@ -28,6 +28,7 @@ + // http://www.cooldevtools.com/qpl.html + // + ++#include + #include "MailMessage.h" + #include "AutoTrainMailMessageReader.h" + Added: head/mail/spamprobe/files/patch-src_parser_HtmlTokenizer.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_parser_HtmlTokenizer.cc Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/parser/HtmlTokenizer.cc.orig 2013-11-03 22:09:11.000000000 +0100 ++++ src/parser/HtmlTokenizer.cc 2013-11-03 22:10:10.000000000 +0100 +@@ -28,6 +28,7 @@ + // http://www.cooldevtools.com/qpl.html + // + ++#include + #include "AbstractTokenReceiver.h" + #include "StringReader.h" + #include "RegularExpression.h" Added: head/mail/spamprobe/files/patch-src_parser_MailMessageReader.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_parser_MailMessageReader.cc Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/parser/MailMessageReader.cc.orig 2013-11-03 22:12:15.000000000 +0100 ++++ src/parser/MailMessageReader.cc 2013-11-03 22:12:34.000000000 +0100 +@@ -28,6 +28,7 @@ + // http://www.cooldevtools.com/qpl.html + // + ++#include + #include "RegularExpression.h" + #include "MailMessage.h" + #include "MailMessageList.h" Added: head/mail/spamprobe/files/patch-src_parser_MbxMailMessageReader.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_parser_MbxMailMessageReader.cc Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/parser/MbxMailMessageReader.cc.orig 2013-11-03 22:13:39.000000000 +0100 ++++ src/parser/MbxMailMessageReader.cc 2013-11-03 22:14:42.000000000 +0100 +@@ -28,6 +28,7 @@ + // http://www.cooldevtools.com/qpl.html + // + ++#include + #include + #include "MailMessage.h" + #include "MailMessageList.h" Added: head/mail/spamprobe/files/patch-src_spamprobe_Command_cleanup.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_spamprobe_Command_cleanup.cc Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/spamprobe/Command_cleanup.cc.orig 2013-11-04 19:59:51.000000000 +0100 ++++ src/spamprobe/Command_cleanup.cc 2013-11-04 20:00:38.000000000 +0100 +@@ -28,6 +28,7 @@ + // http://www.cooldevtools.com/qpl.html + // + ++#include + #include "CleanupManager.h" + #include "SpamFilter.h" + #include "FrequencyDB.h" Added: head/mail/spamprobe/files/patch-src_spamprobe_Command_edit_term.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_spamprobe_Command_edit_term.cc Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/spamprobe/Command_edit_term.cc.orig 2013-11-04 19:59:38.000000000 +0100 ++++ src/spamprobe/Command_edit_term.cc 2013-11-04 20:00:17.000000000 +0100 +@@ -28,6 +28,7 @@ + // http://www.cooldevtools.com/qpl.html + // + ++#include + #include "SpamFilter.h" + #include "FrequencyDB.h" + #include "CommandConfig.h" Added: head/mail/spamprobe/files/patch-src_spamprobe_Command_exec.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_spamprobe_Command_exec.cc Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/spamprobe/Command_exec.cc.orig 2013-11-04 19:54:52.000000000 +0100 ++++ src/spamprobe/Command_exec.cc 2013-11-04 19:55:14.000000000 +0100 +@@ -28,6 +28,7 @@ + // http://www.cooldevtools.com/qpl.html + // + ++#include + #include "SpamFilter.h" + #include "CommandConfig.h" + #include "ConfigManager.h" Added: head/mail/spamprobe/files/patch-src_spamprobe_Command_import.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_spamprobe_Command_import.cc Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/spamprobe/Command_import.cc.orig 2013-11-04 20:00:58.000000000 +0100 ++++ src/spamprobe/Command_import.cc 2013-11-04 20:01:11.000000000 +0100 +@@ -28,6 +28,7 @@ + // http://www.cooldevtools.com/qpl.html + // + ++#include + #include + #include "LineReader.h" + #include "IstreamCharReader.h" Added: head/mail/spamprobe/files/patch-src_spamprobe_Command_purge.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_spamprobe_Command_purge.cc Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/spamprobe/Command_purge.cc.orig 2013-11-04 20:01:56.000000000 +0100 ++++ src/spamprobe/Command_purge.cc 2013-11-04 20:02:10.000000000 +0100 +@@ -28,6 +28,7 @@ + // http://www.cooldevtools.com/qpl.html + // + ++#include + #include "CleanupManager.h" + #include "SpamFilter.h" + #include "FrequencyDB.h" Added: head/mail/spamprobe/files/patch-src_spamprobe_spamprobe.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamprobe/files/patch-src_spamprobe_spamprobe.cc Mon Nov 4 20:24:06 2013 (r332774) @@ -0,0 +1,10 @@ +--- src/spamprobe/spamprobe.cc.orig 2013-11-04 20:48:33.000000000 +0100 ++++ src/spamprobe/spamprobe.cc 2013-11-04 20:48:51.000000000 +0100 +@@ -28,6 +28,7 @@ + // http://www.cooldevtools.com/qpl.html + // + ++#include + #include + #include + #include