From 4fa5a1eaabc4f8f7ac6dfcfec09d071945e0ff02 Mon Sep 17 00:00:00 2001 From: Pav Lucistnik Date: Sun, 30 Nov 2003 18:11:13 +0000 Subject: - Unbreak on 5.x - Respect CFLAGS - Silence Portlint PR: ports/59770 Submitted by: Sergey Matveychuk Approved by: marcus (portmgr) Approved by: adamw (mentor) --- devel/ixlib/files/patch-src::ixlib_base.hh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 devel/ixlib/files/patch-src::ixlib_base.hh (limited to 'devel/ixlib/files/patch-src::ixlib_base.hh') diff --git a/devel/ixlib/files/patch-src::ixlib_base.hh b/devel/ixlib/files/patch-src::ixlib_base.hh new file mode 100644 index 000000000000..5540fd012143 --- /dev/null +++ b/devel/ixlib/files/patch-src::ixlib_base.hh @@ -0,0 +1,19 @@ +--- src/ixlib_base.hh.orig Fri Nov 28 11:48:47 2003 ++++ src/ixlib_base.hh Fri Nov 28 12:45:22 2003 +@@ -44,11 +44,15 @@ + + /* STL Helper macro ----------------------------------------------------------- + */ ++#define FOREACH_T(VAR,LIST,LISTTYPE) \ ++ for (typename LISTTYPE::iterator VAR = (LIST).begin(),last = (LIST).end();VAR != last;VAR++) ++#define FOREACH_CONST_T(VAR,LIST,LISTTYPE) \ ++ for (typename LISTTYPE::const_iterator VAR = (LIST).begin(),last = (LIST).end();VAR != last;VAR++) ++ + #define FOREACH(VAR,LIST,LISTTYPE) \ + for (LISTTYPE::iterator VAR = (LIST).begin(),last = (LIST).end();VAR != last;VAR++) + #define FOREACH_CONST(VAR,LIST,LISTTYPE) \ + for (LISTTYPE::const_iterator VAR = (LIST).begin(),last = (LIST).end();VAR != last;VAR++) +- + + + -- cgit v1.2.3