Fix the win32 build
authorKalev Lember <kalevlember@gmail.com>
Sun, 2 Sep 2012 11:03:12 +0000 (13:03 +0200)
committerDan Winship <danw@gnome.org>
Mon, 3 Sep 2012 12:32:19 +0000 (08:32 -0400)
Make sure glib.h is included before using G_OS_WIN32 ifdef.

https://bugzilla.gnome.org/show_bug.cgi?id=683200

libsoup/soup-auth-digest.c

index ccdbb2e..97ef561 100644 (file)
 #endif
 
 #include <string.h>
-#ifdef G_OS_WIN32
-#include <process.h>
-#endif
 
 #include "soup-auth-digest.h"
 #include "soup.h"
 #include "soup-message-private.h"
 
+#ifdef G_OS_WIN32
+#include <process.h>
+#endif
+
 typedef struct {
        char                    *user;
        char                     hex_urp[33];