tweak wscript files to set PACKAGE in one place
[ardour.git] / libs / ardour / region_factory.cc
index fb195dba4cd70f6ffd44f12ef41d9ce8b851d161..fba60fe0a01b5f356e36de2ec16c5856d03c3982 100644 (file)
@@ -36,6 +36,7 @@
 
 using namespace ARDOUR;
 using namespace PBD;
+using namespace std;
 
 PBD::Signal1<void,boost::shared_ptr<Region> > RegionFactory::CheckNewRegion;
 Glib::StaticMutex                             RegionFactory::region_map_lock;
@@ -81,7 +82,7 @@ RegionFactory::create (boost::shared_ptr<const Region> region, bool announce)
        }
 
 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
-       boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
+       // boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
 #endif
        return ret;
 }
@@ -118,7 +119,7 @@ RegionFactory::create (boost::shared_ptr<Region> region, const PropertyList& pli
        }
 
 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
-        boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
+        // boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
 #endif
        return ret;
 }
@@ -155,7 +156,7 @@ RegionFactory::create (boost::shared_ptr<Region> region, frameoffset_t offset, c
        }
 
 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
-       boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
+       // boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
 #endif
        return ret;
 }
@@ -192,7 +193,7 @@ RegionFactory::create (boost::shared_ptr<Region> region, const SourceList& srcs,
        }
 
 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
-        boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
+        // boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
 #endif
        return ret;
 }
@@ -232,7 +233,7 @@ RegionFactory::create (const SourceList& srcs, const PropertyList& plist, bool a
        }
 
 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
-       boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
+       // boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
 #endif
        return ret;
 }
@@ -272,7 +273,7 @@ RegionFactory::create (SourceList& srcs, const XMLNode& node)
        }
 
 #ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
-       boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
+       // boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
 #endif
        return ret;
 }