comparison libpurple/xmlnode.c @ 29028:f1437342cc0e

Include 'internal.h' before all other headers to make some non-gcc compilers happy. This in particular impacts Solaris8, where the system headers set _FILE_OFFSET_BITS to 32, even when it's detected by the config scripts as 64. Refs #10523
author Paul Aurich <paul@darkrain42.org>
date Fri, 27 Nov 2009 07:12:35 +0000
parents 01f1929d0936
children f6f35d5960e9
comparison
equal deleted inserted replaced
29027:9feec7d1d95c 29028:f1437342cc0e
27 * libxode uses memory pools that we simply have no need for, I decided to 27 * libxode uses memory pools that we simply have no need for, I decided to
28 * write my own stuff. Also, re-writing this lets me be as lightweight 28 * write my own stuff. Also, re-writing this lets me be as lightweight
29 * as I want to be. Thank you libxode for giving me a good starting point */ 29 * as I want to be. Thank you libxode for giving me a good starting point */
30 #define _PURPLE_XMLNODE_C_ 30 #define _PURPLE_XMLNODE_C_
31 31
32 #include "internal.h"
32 #include "debug.h" 33 #include "debug.h"
33 #include "internal.h"
34 34
35 #include <libxml/parser.h> 35 #include <libxml/parser.h>
36 #include <string.h> 36 #include <string.h>
37 #include <glib.h> 37 #include <glib.h>
38 38