[cpp-sp] branch main updated: Add Boost macro to suppress warning for now.

Scott Cantor cantor.2 at osu.edu
Wed Dec 2 17:22:11 UTC 2020


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository cpp-sp.

View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=6a7d05c079948ca80f6106c9691bfc7220bb4c68

The following commit(s) were added to refs/heads/main by this push:
       new  6a7d05c0  Add Boost macro to suppress warning for now.
6a7d05c0 is described below

commit 6a7d05c079948ca80f6106c9691bfc7220bb4c68
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Dec 2 12:22:04 2020 -0500

    Add Boost macro to suppress warning for now.
---
 shibsp/Application.cpp                                        | 1 +
 shibsp/attribute/filtering/impl/AndMatchFunctor.cpp           | 1 +
 shibsp/attribute/filtering/impl/OrMatchFunctor.cpp            | 1 +
 shibsp/attribute/resolver/impl/MetadataAttributeExtractor.cpp | 1 +
 shibsp/attribute/resolver/impl/XMLAttributeExtractor.cpp      | 1 +
 shibsp/binding/impl/ArtifactResolver.cpp                      | 1 +
 shibsp/handler/impl/AbstractHandler.cpp                       | 1 +
 shibsp/handler/impl/AttributeCheckerHandler.cpp               | 1 +
 shibsp/handler/impl/ChainingLogoutInitiator.cpp               | 1 +
 shibsp/handler/impl/ChainingSessionInitiator.cpp              | 1 +
 shibsp/handler/impl/SAML2SessionInitiator.cpp                 | 1 +
 shibsp/handler/impl/SecuredHandler.cpp                        | 1 +
 shibsp/impl/StorageServiceSessionCache.cpp                    | 1 +
 shibsp/impl/XMLAccessControl.cpp                              | 1 +
 shibsp/impl/XMLApplication.cpp                                | 1 +
 shibsp/remoting/impl/TCPListener.cpp                          | 1 +
 shibsp/util/CGIParser.cpp                                     | 1 +
 17 files changed, 17 insertions(+)

diff --git a/shibsp/Application.cpp b/shibsp/Application.cpp
index 5ab8507b..d7bca168 100644
--- a/shibsp/Application.cpp
+++ b/shibsp/Application.cpp
@@ -32,6 +32,7 @@
 #include "remoting/ListenerService.h"
 
 #include <algorithm>
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <xmltooling/util/Threads.h>
 
diff --git a/shibsp/attribute/filtering/impl/AndMatchFunctor.cpp b/shibsp/attribute/filtering/impl/AndMatchFunctor.cpp
index cabe4d3a..051ac702 100644
--- a/shibsp/attribute/filtering/impl/AndMatchFunctor.cpp
+++ b/shibsp/attribute/filtering/impl/AndMatchFunctor.cpp
@@ -30,6 +30,7 @@
 #include "attribute/filtering/MatchFunctor.h"
 #include "util/SPConstants.h"
 
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <xercesc/util/XMLUniDefs.hpp>
 #include <xmltooling/util/XMLHelper.h>
diff --git a/shibsp/attribute/filtering/impl/OrMatchFunctor.cpp b/shibsp/attribute/filtering/impl/OrMatchFunctor.cpp
index 293c6a95..5ca24107 100644
--- a/shibsp/attribute/filtering/impl/OrMatchFunctor.cpp
+++ b/shibsp/attribute/filtering/impl/OrMatchFunctor.cpp
@@ -30,6 +30,7 @@
 #include "attribute/filtering/MatchFunctor.h"
 #include "util/SPConstants.h"
 
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <xercesc/util/XMLUniDefs.hpp>
 #include <xmltooling/util/XMLHelper.h>
diff --git a/shibsp/attribute/resolver/impl/MetadataAttributeExtractor.cpp b/shibsp/attribute/resolver/impl/MetadataAttributeExtractor.cpp
index 0c0fb4db..600de29a 100644
--- a/shibsp/attribute/resolver/impl/MetadataAttributeExtractor.cpp
+++ b/shibsp/attribute/resolver/impl/MetadataAttributeExtractor.cpp
@@ -31,6 +31,7 @@
 #include "attribute/AttributeDecoder.h"
 #include "attribute/resolver/AttributeExtractor.h"
 
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <boost/shared_ptr.hpp>
 #include <boost/iterator/indirect_iterator.hpp>
diff --git a/shibsp/attribute/resolver/impl/XMLAttributeExtractor.cpp b/shibsp/attribute/resolver/impl/XMLAttributeExtractor.cpp
index 1111b3fb..7022de3e 100644
--- a/shibsp/attribute/resolver/impl/XMLAttributeExtractor.cpp
+++ b/shibsp/attribute/resolver/impl/XMLAttributeExtractor.cpp
@@ -37,6 +37,7 @@
 #include "security/SecurityPolicy.h"
 #include "util/SPConstants.h"
 
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <boost/shared_ptr.hpp>
 #include <boost/algorithm/string.hpp>
diff --git a/shibsp/binding/impl/ArtifactResolver.cpp b/shibsp/binding/impl/ArtifactResolver.cpp
index 9dd21397..c74313da 100644
--- a/shibsp/binding/impl/ArtifactResolver.cpp
+++ b/shibsp/binding/impl/ArtifactResolver.cpp
@@ -32,6 +32,7 @@
 #include "util/SPConstants.h"
 
 #include <fstream>
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <boost/algorithm/string.hpp>
 #include <xmltooling/XMLToolingConfig.h>
diff --git a/shibsp/handler/impl/AbstractHandler.cpp b/shibsp/handler/impl/AbstractHandler.cpp
index 542487f5..e7b39539 100644
--- a/shibsp/handler/impl/AbstractHandler.cpp
+++ b/shibsp/handler/impl/AbstractHandler.cpp
@@ -38,6 +38,7 @@
 
 #include <vector>
 #include <fstream>
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <boost/lexical_cast.hpp>
 #include <boost/algorithm/string.hpp>
diff --git a/shibsp/handler/impl/AttributeCheckerHandler.cpp b/shibsp/handler/impl/AttributeCheckerHandler.cpp
index 47dff9d8..49044dbb 100644
--- a/shibsp/handler/impl/AttributeCheckerHandler.cpp
+++ b/shibsp/handler/impl/AttributeCheckerHandler.cpp
@@ -37,6 +37,7 @@
 
 #include <fstream>
 #include <sstream>
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <boost/scoped_ptr.hpp>
 #include <boost/algorithm/string.hpp>
diff --git a/shibsp/handler/impl/ChainingLogoutInitiator.cpp b/shibsp/handler/impl/ChainingLogoutInitiator.cpp
index 7e108381..3fec878d 100644
--- a/shibsp/handler/impl/ChainingLogoutInitiator.cpp
+++ b/shibsp/handler/impl/ChainingLogoutInitiator.cpp
@@ -30,6 +30,7 @@
 #include "handler/LogoutInitiator.h"
 #include "util/SPConstants.h"
 
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <boost/ptr_container/ptr_vector.hpp>
 #include <xercesc/util/XMLUniDefs.hpp>
diff --git a/shibsp/handler/impl/ChainingSessionInitiator.cpp b/shibsp/handler/impl/ChainingSessionInitiator.cpp
index da042b5d..b2c6f669 100644
--- a/shibsp/handler/impl/ChainingSessionInitiator.cpp
+++ b/shibsp/handler/impl/ChainingSessionInitiator.cpp
@@ -30,6 +30,7 @@
 #include "handler/SessionInitiator.h"
 #include "util/SPConstants.h"
 
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <boost/ptr_container/ptr_vector.hpp>
 #include <xercesc/util/XMLUniDefs.hpp>
diff --git a/shibsp/handler/impl/SAML2SessionInitiator.cpp b/shibsp/handler/impl/SAML2SessionInitiator.cpp
index ecde0b1f..2b3e7de8 100644
--- a/shibsp/handler/impl/SAML2SessionInitiator.cpp
+++ b/shibsp/handler/impl/SAML2SessionInitiator.cpp
@@ -35,6 +35,7 @@
 
 #ifndef SHIBSP_LITE
 # include "metadata/MetadataProviderCriteria.h"
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 # include <boost/bind.hpp>
 # include <boost/algorithm/string.hpp>
 # include <boost/iterator/indirect_iterator.hpp>
diff --git a/shibsp/handler/impl/SecuredHandler.cpp b/shibsp/handler/impl/SecuredHandler.cpp
index 79d4c42a..300f2206 100644
--- a/shibsp/handler/impl/SecuredHandler.cpp
+++ b/shibsp/handler/impl/SecuredHandler.cpp
@@ -28,6 +28,7 @@
 #include "SPRequest.h"
 #include "handler/SecuredHandler.h"
 
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <boost/algorithm/string.hpp>
 
diff --git a/shibsp/impl/StorageServiceSessionCache.cpp b/shibsp/impl/StorageServiceSessionCache.cpp
index 897efd84..2bc74108 100644
--- a/shibsp/impl/StorageServiceSessionCache.cpp
+++ b/shibsp/impl/StorageServiceSessionCache.cpp
@@ -46,6 +46,7 @@
 #include "util/SPConstants.h"
 
 #include <algorithm>
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <xmltooling/io/HTTPRequest.h>
 #include <xmltooling/io/HTTPResponse.h>
diff --git a/shibsp/impl/XMLAccessControl.cpp b/shibsp/impl/XMLAccessControl.cpp
index 35737c28..687487d3 100644
--- a/shibsp/impl/XMLAccessControl.cpp
+++ b/shibsp/impl/XMLAccessControl.cpp
@@ -32,6 +32,7 @@
 #include "attribute/Attribute.h"
 
 #include <algorithm>
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <boost/algorithm/string.hpp>
 #include <boost/ptr_container/ptr_vector.hpp>
diff --git a/shibsp/impl/XMLApplication.cpp b/shibsp/impl/XMLApplication.cpp
index 0b7c92ed..2d16f7bb 100644
--- a/shibsp/impl/XMLApplication.cpp
+++ b/shibsp/impl/XMLApplication.cpp
@@ -32,6 +32,7 @@
 #include "handler/SessionInitiator.h"
 #include "impl/XMLApplication.h"
 
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <boost/lexical_cast.hpp>
 #include <boost/algorithm/string.hpp>
diff --git a/shibsp/remoting/impl/TCPListener.cpp b/shibsp/remoting/impl/TCPListener.cpp
index 25d44741..89d61e34 100644
--- a/shibsp/remoting/impl/TCPListener.cpp
+++ b/shibsp/remoting/impl/TCPListener.cpp
@@ -29,6 +29,7 @@
 #include "remoting/impl/SocketListener.h"
 #include "util/IPRange.h"
 
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <boost/algorithm/string.hpp>
 #include <xercesc/util/XMLUniDefs.hpp>
diff --git a/shibsp/util/CGIParser.cpp b/shibsp/util/CGIParser.cpp
index 05e2b0b2..85d999bf 100644
--- a/shibsp/util/CGIParser.cpp
+++ b/shibsp/util/CGIParser.cpp
@@ -27,6 +27,7 @@
 #include "internal.h"
 #include "util/CGIParser.h"
 
+#define BOOST_BIND_GLOBAL_PLACEHOLDERS
 #include <boost/bind.hpp>
 #include <xmltooling/XMLToolingConfig.h>
 #include <xmltooling/io/HTTPRequest.h>

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list