65effc8736
This is necessary to maintain protocol compatibility with Linux distributions, on which we're generally dependent for tuner functionality. Unfortunately, there's no distribution for this version, and it's already been overtaken. Watch this space. Submitted by: dmlb This also fixes a build error reported by pointyhat.
18 lines
407 B
C++
18 lines
407 B
C++
--- libs/libmythfreemheg/Programs.cpp~ Fri Mar 16 18:11:34 2007
|
|
+++ libs/libmythfreemheg/Programs.cpp Sat Apr 7 11:41:11 2007
|
|
@@ -30,7 +30,15 @@
|
|
#include "freemheg.h"
|
|
|
|
#include <sys/timeb.h>
|
|
+#ifdef __FreeBSD__
|
|
+/*
|
|
+ * This file refers to the non-POSIX structure timezone, which is
|
|
+ * defined in sys/time.h.
|
|
+ */
|
|
+#include <sys/time.h>
|
|
+#else
|
|
#include <time.h>
|
|
+#endif
|
|
|
|
#include "../../config.h"
|
|
|