Diff between c1b8f95c2addf595b8de473a8600f1dba3710a69 and f64fe4f401513bd804073945a85a7cd62b16765e

Changed Files

File Additions Deletions Status
gobex/gobex.c +5 -0 modified
tools/obex-server-tool.c +4 -0 modified

Full Patch

diff --git a/gobex/gobex.c b/gobex/gobex.c
index 2a64849..ff35830 100644
--- a/gobex/gobex.c
+++ b/gobex/gobex.c
@@ -19,11 +19,16 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <unistd.h>
 #include <string.h>
 #include <errno.h>
 
 #include "gobex.h"
+#include "glib-helper.h"
 
 #define G_OBEX_DEFAULT_MTU	4096
 #define G_OBEX_MINIMUM_MTU	255
diff --git a/tools/obex-server-tool.c b/tools/obex-server-tool.c
index 87742ec..6096737 100644
--- a/tools/obex-server-tool.c
+++ b/tools/obex-server-tool.c
@@ -19,6 +19,10 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <fcntl.h>