Build fix for FreeBSD.

This commit is contained in:
Gunnar Beutner 2012-08-13 12:39:37 +02:00
parent 0e8a5587a9
commit 1e0bb5d51c
3 changed files with 10 additions and 2 deletions

View File

@ -155,8 +155,14 @@ public:
}
};
template<typename T>
shared_ptr<T> DynamicObjectFactory(const Dictionary::Ptr& serializedUpdate)
{
return boost::make_shared<T>(serializedUpdate);
}
#define REGISTER_CLASS(klass) \
static RegisterClassHelper g_Register ## klass(#klass, boost::make_shared<klass, const Dictionary::Ptr&>)
static RegisterClassHelper g_Register ## klass(#klass, DynamicObjectFactory<klass>)
}

View File

@ -49,4 +49,5 @@ private:
}
#endif /* SCRIPTFUNCTION_H */
#endif /* SCRIPTFUNCTION_H */

View File

@ -35,6 +35,7 @@
#include <libgen.h>
#include <syslog.h>
#include <sys/file.h>
#include <sys/wait.h>
void Sleep(unsigned long milliseconds);