Hi,
I am trying to build glib-2.12.12 on win64 using visual studio. The build goes fine but the generated glibconfig.h has:
#define GLIB_SIZEOF_VOID_P 4
#define GLIB_SIZEOF_LONG 4
#define GLIB_SIZEOF_SIZE_T 4
I think it should be:
#define GLIB_SIZEOF_VOID_P 8
#define GLIB_SIZEOF_LONG 4
#define GLIB_SIZEOF_SIZE_T 8
There might be other things also which I don't know of.
Can someone help me in building glib for win64?