Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Sep 2013 17:44:59 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r327098 - head/devel/omniNotify/files
Message-ID:  <201309121744.r8CHixUG093340@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Thu Sep 12 17:44:59 2013
New Revision: 327098
URL: http://svnweb.freebsd.org/changeset/ports/327098

Log:
  Fix build with libc++

Added:
  head/devel/omniNotify/files/patch-examples__demo_add_filter.cc   (contents, props changed)
  head/devel/omniNotify/files/patch-examples__demo_offer_change.cc   (contents, props changed)
  head/devel/omniNotify/files/patch-examples__demo_subscription_change.cc   (contents, props changed)
  head/devel/omniNotify/files/patch-examples__legacy_clients.cc   (contents, props changed)
  head/devel/omniNotify/files/patch-examples__ndadmin.cc   (contents, props changed)
  head/devel/omniNotify/files/patch-examples__parse_cmd_line.h   (contents, props changed)
  head/devel/omniNotify/files/patch-examples__sample_clients.cc   (contents, props changed)
  head/devel/omniNotify/files/patch-examples__sample_functions.cc   (contents, props changed)
  head/devel/omniNotify/files/patch-examples__some_notify_clients.cc   (contents, props changed)
  head/devel/omniNotify/files/patch-include__ModFlexLexer.h   (contents, props changed)
  head/devel/omniNotify/files/patch-lib__RDIParser_l.cc   (contents, props changed)

Added: head/devel/omniNotify/files/patch-examples__demo_add_filter.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/omniNotify/files/patch-examples__demo_add_filter.cc	Thu Sep 12 17:44:59 2013	(r327098)
@@ -0,0 +1,13 @@
+--- ./examples/demo_add_filter.cc.orig	2003-10-12 20:51:18.000000000 +0200
++++ ./examples/demo_add_filter.cc	2013-09-12 19:42:48.457065594 +0200
+@@ -1,7 +1,9 @@
+ #include <stdlib.h>
+-#include <iostream.h>
++#include <iostream>
+ #include <stdio.h>
+ 
++using namespace std;
++
+ #include "CosNotifyShorthands.h"
+ #include "orb_init_name.h"
+ #include "get_channel.h"

Added: head/devel/omniNotify/files/patch-examples__demo_offer_change.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/omniNotify/files/patch-examples__demo_offer_change.cc	Thu Sep 12 17:44:59 2013	(r327098)
@@ -0,0 +1,13 @@
+--- ./examples/demo_offer_change.cc.orig	2003-10-12 20:51:18.000000000 +0200
++++ ./examples/demo_offer_change.cc	2013-09-12 19:41:00.165064073 +0200
+@@ -1,7 +1,9 @@
+ #include <stdlib.h>
+-#include <iostream.h>
++#include <iostream>
+ #include <stdio.h>
+ 
++using namespace std;
++
+ #include "CosNotifyShorthands.h"
+ #include "orb_init_name.h"
+ #include "get_channel.h"

Added: head/devel/omniNotify/files/patch-examples__demo_subscription_change.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/omniNotify/files/patch-examples__demo_subscription_change.cc	Thu Sep 12 17:44:59 2013	(r327098)
@@ -0,0 +1,13 @@
+--- ./examples/demo_subscription_change.cc.orig	2003-10-12 20:51:18.000000000 +0200
++++ ./examples/demo_subscription_change.cc	2013-09-12 19:38:40.695070758 +0200
+@@ -1,7 +1,9 @@
+ #include <stdlib.h>
+-#include <iostream.h>
++#include <iostream>
+ #include <stdio.h>
+ 
++using namespace std;
++
+ #include "CosNotifyShorthands.h"
+ #include "orb_init_name.h"
+ #include "get_channel.h"

Added: head/devel/omniNotify/files/patch-examples__legacy_clients.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/omniNotify/files/patch-examples__legacy_clients.cc	Thu Sep 12 17:44:59 2013	(r327098)
@@ -0,0 +1,16 @@
+--- ./examples/legacy_clients.cc.orig	2003-10-23 06:39:11.000000000 +0200
++++ ./examples/legacy_clients.cc	2013-09-12 19:42:16.061068521 +0200
+@@ -4,8 +4,11 @@
+ // See legacy_clients.h
+ // -------------------------------------------------------------- //
+ 
+-#include <iostream.h>
+-#include <iomanip.h>
++#include <iostream>
++#include <iomanip>
++
++using namespace std;
++
+ #include "thread_wrappers.h"
+ 
+ #include "CosNotifyShorthands.h"

Added: head/devel/omniNotify/files/patch-examples__ndadmin.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/omniNotify/files/patch-examples__ndadmin.cc	Thu Sep 12 17:44:59 2013	(r327098)
@@ -0,0 +1,13 @@
+--- ./examples/ndadmin.cc.orig	2003-10-12 20:51:18.000000000 +0200
++++ ./examples/ndadmin.cc	2013-09-12 19:43:36.397068857 +0200
+@@ -6,7 +6,9 @@
+ #error COS_USES_BOA should not be set for this example
+ #endif
+ 
+-#include <iostream.h>
++#include <iostream>
++
++using namespace std;
+ 
+ #include "orb_init_name.h"
+ #include "get_channel.h"

Added: head/devel/omniNotify/files/patch-examples__parse_cmd_line.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/omniNotify/files/patch-examples__parse_cmd_line.h	Thu Sep 12 17:44:59 2013	(r327098)
@@ -0,0 +1,12 @@
+--- ./examples/parse_cmd_line.h.orig	2003-10-23 06:39:11.000000000 +0200
++++ ./examples/parse_cmd_line.h	2013-09-12 19:37:33.527063786 +0200
+@@ -4,7 +4,8 @@
+ #define _PARSE_CMD_LINE_H
+ 
+ #include <stdlib.h>
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ 
+ #include "CosNotifyShorthands.h"
+ 

Added: head/devel/omniNotify/files/patch-examples__sample_clients.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/omniNotify/files/patch-examples__sample_clients.cc	Thu Sep 12 17:44:59 2013	(r327098)
@@ -0,0 +1,17 @@
+--- ./examples/sample_clients.cc.orig	2003-10-23 06:39:11.000000000 +0200
++++ ./examples/sample_clients.cc	2013-09-12 19:39:25.344066196 +0200
+@@ -7,9 +7,11 @@
+ #include <stdio.h>
+ #include <stdlib.h>
+ #include <string.h>
+-#include <fstream.h>
+-#include <iostream.h>
+-#include <iomanip.h>
++#include <fstream>
++#include <iostream>
++#include <iomanip>
++
++using namespace std;
+ 
+ #ifdef HAVE_UNISTD_H
+ #  include <unistd.h>

Added: head/devel/omniNotify/files/patch-examples__sample_functions.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/omniNotify/files/patch-examples__sample_functions.cc	Thu Sep 12 17:44:59 2013	(r327098)
@@ -0,0 +1,17 @@
+--- ./examples/sample_functions.cc.orig	2003-10-23 06:39:11.000000000 +0200
++++ ./examples/sample_functions.cc	2013-09-12 19:41:47.835066655 +0200
+@@ -2,10 +2,12 @@
+ 
+ #include <stdio.h>
+ #include <stdlib.h>
+-#include <iostream.h>
+-#include <iomanip.h>
++#include <iostream>
++#include <iomanip>
+ #include "sample_functions.h"
+ 
++using namespace std;
++
+ ///////////////////////////////////////////////////////////////////
+ //             USER-DEFINED FUNCTION EXAMPLES                    //
+ ///////////////////////////////////////////////////////////////////

Added: head/devel/omniNotify/files/patch-examples__some_notify_clients.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/omniNotify/files/patch-examples__some_notify_clients.cc	Thu Sep 12 17:44:59 2013	(r327098)
@@ -0,0 +1,12 @@
+--- ./examples/some_notify_clients.cc.orig	2003-10-12 20:51:18.000000000 +0200
++++ ./examples/some_notify_clients.cc	2013-09-12 19:38:14.830059760 +0200
+@@ -4,7 +4,8 @@
+ #endif
+ 
+ #include <stdlib.h>
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ 
+ #include "orb_init_name.h"
+ #include "get_channel.h"

Added: head/devel/omniNotify/files/patch-include__ModFlexLexer.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/omniNotify/files/patch-include__ModFlexLexer.h	Thu Sep 12 17:44:59 2013	(r327098)
@@ -0,0 +1,12 @@
+--- ./include/ModFlexLexer.h.orig	2003-10-23 06:39:11.000000000 +0200
++++ ./include/ModFlexLexer.h	2013-09-12 19:36:38.753063172 +0200
+@@ -88,7 +88,8 @@
+ // Never included before - need to define base class.
+ #define __FLEX_LEXER_H
+ 
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ 
+ extern "C++" {
+ 

Added: head/devel/omniNotify/files/patch-lib__RDIParser_l.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/omniNotify/files/patch-lib__RDIParser_l.cc	Thu Sep 12 17:44:59 2013	(r327098)
@@ -0,0 +1,12 @@
+--- ./lib/RDIParser_l.cc.orig	2003-10-23 06:39:12.000000000 +0200
++++ ./lib/RDIParser_l.cc	2013-09-12 19:37:04.939058703 +0200
+@@ -53,7 +53,8 @@
+ #ifdef __cplusplus
+ 
+ #include <stdlib.h>
+-#include <iostream.h>
++#include <iostream>
++using namespace std;
+ 
+ /* Use prototypes in function declarations. */
+ #define YY_USE_PROTOS



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309121744.r8CHixUG093340>