Remove FactoryFilter:have_dl_support
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 12 Jun 2013 09:39:29 +0000 (11:39 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 12 Jun 2013 09:39:29 +0000 (11:39 +0200)
src/factory_filter.cpp
src/factory_filter.hpp

index 7ea6d3a..3915202 100644 (file)
@@ -101,15 +101,6 @@ mp::filter::Base* mp::FactoryFilter::create(std::string fi)
     return (it->second());
 }
 
-bool mp::FactoryFilter::have_dl_support()
-{
-#if HAVE_DLFCN_H
-    return true;
-#else
-    return false;
-#endif
-}
-
 bool mp::FactoryFilter::add_creator_dl(const std::string &fi,
                                         const std::string &path)
 {
index 0b54e14..5498d75 100644 (file)
@@ -50,8 +50,6 @@ namespace metaproxy_1 {
 
         bool add_creator_dl(const std::string &fi, const std::string &path);
 
-        bool have_dl_support();
-
         class NotFound : public std::runtime_error {
         public:
             NotFound(const std::string msg);