forked from Lainports/freebsd-ports
PR: 189221 Submitted by: johan (stromnet.se) Allows access to Telldus Tellstick USB dongles for communicating with 433MHz devices in your home. Provides "telldusd", the daemon which keeps track of your tellstick devices. Through a UNIX socket, the sensors and devices can be used/ controlled from the command line tool "tdtool", or via the libtelldus-core C client library.
13 lines
312 B
C++
13 lines
312 B
C++
--- service/EventUpdateManager.cpp
|
|
+++ service/EventUpdateManager.cpp
|
|
@@ -33,6 +33,10 @@
|
|
#include "service/ConnectionListener.h"
|
|
#include "service/Log.h"
|
|
|
|
+#ifdef __FreeBSD__
|
|
+extern char **environ;
|
|
+#endif
|
|
+
|
|
typedef std::list<TelldusCore::Socket *> SocketList;
|
|
typedef std::list<std::string> StringList;
|
|
|