freebsd-ports/net/mediatomb/files/patch-timer.cc
Kurt Jaeger 2b4bb2734d net/mediatomb: remove BROKEN, fix build
- now uses UIDs/GIDs
- fix build in certain cases

PR:		198436, 202467
Submitted by:	Pavel Nedoshivkin <nedoshivkin@gmail.com>, dim
Approved by:	maintainer (timeout)
2015-09-24 19:49:17 +00:00

20 lines
488 B
C++

--- src/timer.cc.orig 2010-03-25 15:58:11.000000000 +0100
+++ src/timer.cc 2015-03-08 22:18:05.760740000 +0100
@@ -33,12 +33,15 @@
#include "autoconfig.h"
#endif
+#include "singleton.h"
+
+class Timer;
+SINGLETON_MUTEX(Timer, true);
+
#include "timer.h"
using namespace zmm;
-SINGLETON_MUTEX(Timer, true);
-
template <>
Ref<Array<Timer::TimerSubscriberElement<TimerSubscriberSingleton<Object> > > > Timer::getAppropriateSubscribers<TimerSubscriberSingleton<Object> >()
{