diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2009-01-18 00:21:47 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2009-01-18 00:21:47 +0000 |
commit | c8f8261d199af4956aeaf387b2fde41baf905f83 (patch) | |
tree | 8de84833341e5a2ac508e5570c229995bfba8484 /src/libspudec | |
parent | 9c1133236282fe7bc04d8a04771ccb0f5b93c0e3 (diff) | |
download | xine-lib-c8f8261d199af4956aeaf387b2fde41baf905f83.tar.gz xine-lib-c8f8261d199af4956aeaf387b2fde41baf905f83.tar.bz2 |
Remove '#include "config.h"' from all public header files.
This requires that many other files include config.h themselves.
Also convert <config.h> to "config.h".
Diffstat (limited to 'src/libspudec')
-rw-r--r-- | src/libspudec/spu.c | 4 | ||||
-rw-r--r-- | src/libspudec/spu.h | 2 | ||||
-rw-r--r-- | src/libspudec/xine_spu_decoder.c | 4 |
3 files changed, 9 insertions, 1 deletions
diff --git a/src/libspudec/spu.c b/src/libspudec/spu.c index b41387dfb..e91cafbc1 100644 --- a/src/libspudec/spu.c +++ b/src/libspudec/spu.c @@ -37,6 +37,10 @@ * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> #include <errno.h> diff --git a/src/libspudec/spu.h b/src/libspudec/spu.h index 8d92146f0..464f77438 100644 --- a/src/libspudec/spu.h +++ b/src/libspudec/spu.h @@ -26,7 +26,7 @@ #define __SPU_H__ #ifdef HAVE_CONFIG_H -#include <config.h> +#include "config.h" #endif #include <inttypes.h> diff --git a/src/libspudec/xine_spu_decoder.c b/src/libspudec/xine_spu_decoder.c index 02bae6ac9..b6c06ca05 100644 --- a/src/libspudec/xine_spu_decoder.c +++ b/src/libspudec/xine_spu_decoder.c @@ -22,6 +22,10 @@ * stuff needed to turn libspu into a xine decoder plugin */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdlib.h> #include <unistd.h> #include <string.h> |