32c107a9c6
* Update 2.35 > 2.36 (closes #3140) * Refresh patch git-svn-id: svn://svn.openwrt.org/openwrt/packages@10451 3c298f89-4303-0410-b956-a3cf2f4a3e73
29 lines
733 B
Diff
29 lines
733 B
Diff
Index: gpsd-2.36/gpsd.c
|
|
===================================================================
|
|
--- gpsd-2.36.orig/gpsd.c 2008-02-13 11:01:21.000000000 +0100
|
|
+++ gpsd-2.36/gpsd.c 2008-02-13 11:01:22.000000000 +0100
|
|
@@ -42,6 +42,7 @@
|
|
#include <locale.h>
|
|
#endif
|
|
|
|
+#undef DBUS_ENABLE
|
|
#ifdef DBUS_ENABLE
|
|
#include <gpsd_dbus.h>
|
|
#endif
|
|
@@ -297,6 +298,7 @@
|
|
* This array fills from the bottom, so as an extreme case you could
|
|
* reduce LIMITED_MAX_DEVICES to 1.
|
|
*/
|
|
+#define LIMITED_MAX_DEVICES 1
|
|
#ifdef LIMITED_MAX_DEVICES
|
|
#define MAXDEVICES LIMITED_MAX_DEVICES
|
|
#else
|
|
@@ -304,6 +306,7 @@
|
|
#define MAXDEVICES 4
|
|
#endif
|
|
|
|
+#define LIMITED_MAX_CLIENTS 16
|
|
#ifdef LIMITED_MAX_CLIENTS
|
|
#define MAXSUBSCRIBERS LIMITED_MAX_CLIENTS
|
|
#else
|