comparison src/xs_support.h @ 946:f8e1de328ac1

Fix various compilation related issues, make includes more POSIX compliant, utilize autoconf detected stuff via conditionals as needed.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 19 Nov 2012 20:32:18 +0200
parents c835aa129e3b
children abbf089b119d
comparison
equal deleted inserted replaced
945:600964060bcc 946:f8e1de328ac1
9 #include <config.h> 9 #include <config.h>
10 #endif 10 #endif
11 11
12 #include <glib.h> 12 #include <glib.h>
13 #include <stdio.h> 13 #include <stdio.h>
14 #include <ctype.h>
15 #ifdef HAVE_STDARG_H
14 #include <stdarg.h> 16 #include <stdarg.h>
17 #endif
18 #ifdef HAVE_STDLIB_H
19 #include <stdlib.h>
20 #endif
21 #ifdef HAVE_UNISTD_H
22 #include <unistd.h>
23 #endif
15 24
16 #ifdef AUDACIOUS_PLUGIN 25 #ifdef AUDACIOUS_PLUGIN
17 #include <audacious/plugin.h> 26 #include <audacious/plugin.h>
18 #include <audacious/output.h> 27 #include <audacious/output.h>
19 #else 28 #else