avoid name clashes with GSocket from glib 2.21+ (closes #10883)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@61009 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-06-12 03:35:38 +00:00
parent 9e1f3a964f
commit c579f80892

View File

@@ -15,8 +15,13 @@
#include <stdlib.h>
#include <stdio.h>
// newer versions of glib define its own GSocket but we unfortunately use this
// name in our own (semi-)public header and so can't change it -- rename glib
// one instead
#define GSocket GlibGSocket
#include <gdk/gdk.h>
#include <glib.h>
#undef GSocket
#include "wx/gsocket.h"
#include "wx/unix/gsockunx.h"