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/libfaad | |
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/libfaad')
-rw-r--r-- | src/libfaad/common.h | 2 | ||||
-rw-r--r-- | src/libfaad/xine_faad_decoder.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/libfaad/common.h b/src/libfaad/common.h index 4d2769526..4419f1eb5 100644 --- a/src/libfaad/common.h +++ b/src/libfaad/common.h @@ -36,7 +36,7 @@ extern "C" { #endif #ifdef HAVE_CONFIG_H -# include <config.h> +# include "config.h" #endif #if 1 diff --git a/src/libfaad/xine_faad_decoder.c b/src/libfaad/xine_faad_decoder.c index 9c657610e..b90bc701f 100644 --- a/src/libfaad/xine_faad_decoder.c +++ b/src/libfaad/xine_faad_decoder.c @@ -18,6 +18,10 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdlib.h> #include <unistd.h> #include <string.h> |