Remove all config.h includes from header files, add it to each source file and remove duplicate config.h includes fro...

Original commit message from CVS:
Remove all config.h includes from header files, add it to each source file and remove duplicate config.h includes from several source files
This commit is contained in:
Ronald S. Bultje 2003-11-07 12:47:02 +00:00
parent ac872637ab
commit cb90622b41
141 changed files with 368 additions and 76 deletions

View file

@ -24,7 +24,6 @@
#define __GST_ARTS_H__ #define __GST_ARTS_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>

View file

@ -1,3 +1,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <math.h> #include <math.h>
#include "artsflow.h" #include "artsflow.h"
#include "stdsynthmodule.h" #include "stdsynthmodule.h"

View file

@ -17,6 +17,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gstafsrc.h" #include "gstafsrc.h"
#include "gstafsink.h" #include "gstafsink.h"

View file

@ -25,7 +25,6 @@
#define __GST_AFPARSE_H__ #define __GST_AFPARSE_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include <gst/bytestream/bytestream.h> #include <gst/bytestream/bytestream.h>
#include <audiofile.h> /* what else are we to do */ #include <audiofile.h> /* what else are we to do */

View file

@ -25,7 +25,6 @@
#define __GST_AFSINK_H__ #define __GST_AFSINK_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include <audiofile.h> /* what else are we to do */ #include <audiofile.h> /* what else are we to do */

View file

@ -25,7 +25,6 @@
#define __GST_AFSRC_H__ #define __GST_AFSRC_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include <audiofile.h> /* what else are we to do */ #include <audiofile.h> /* what else are we to do */

View file

@ -18,9 +18,6 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "config.h" #include "config.h"
#endif #endif

View file

@ -18,9 +18,6 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "config.h" #include "config.h"
#endif #endif

View file

@ -17,6 +17,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gstgsmdec.h" #include "gstgsmdec.h"
#include "gstgsmenc.h" #include "gstgsmenc.h"

View file

@ -22,7 +22,6 @@
#define __GST_GSMDEC_H__ #define __GST_GSMDEC_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#ifdef GSM_HEADER_IN_SUBDIR #ifdef GSM_HEADER_IN_SUBDIR

View file

@ -22,7 +22,6 @@
#define __GST_GSMENC_H__ #define __GST_GSMENC_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#ifdef GSM_HEADER_IN_SUBDIR #ifdef GSM_HEADER_IN_SUBDIR

View file

@ -22,7 +22,6 @@
#define __GST_COLORSPACE_H__ #define __GST_COLORSPACE_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include "yuv2rgb.h" #include "yuv2rgb.h"

View file

@ -22,7 +22,6 @@
#define __VORBISENC_H__ #define __VORBISENC_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include <tremor/codec.h> #include <tremor/codec.h>

View file

@ -17,6 +17,10 @@
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <signal.h> #include <signal.h>

View file

@ -24,7 +24,6 @@
#define __GST_LADSPA_H__ #define __GST_LADSPA_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include <gst/bytestream/bytestream.h> #include <gst/bytestream/bytestream.h>

View file

@ -5,6 +5,10 @@
/*****************************************************************************/ /*****************************************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <dlfcn.h> #include <dlfcn.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>

View file

@ -5,6 +5,10 @@
/*****************************************************************************/ /*****************************************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <dirent.h> #include <dirent.h>
#include <dlfcn.h> #include <dlfcn.h>
#include <stdio.h> #include <stdio.h>

View file

@ -17,6 +17,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h> #include <string.h>

View file

@ -22,7 +22,6 @@
#define __GST_MPLEX_H__ #define __GST_MPLEX_H__
#include <config.h>
#include <stdlib.h> #include <stdlib.h>
#include <gst/gst.h> #include <gst/gst.h>

View file

@ -22,7 +22,7 @@
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif
#include <config.h>
#include <signal.h> #include <signal.h>
#include <string.h> #include <string.h>
#include <sys/time.h> #include <sys/time.h>

View file

@ -22,7 +22,6 @@
#define __GST_SNAPSHOT_H__ #define __GST_SNAPSHOT_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include <png.h> #include <png.h>

View file

@ -21,10 +21,10 @@
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif
#include <string.h> #include <string.h>
#include <gst/gst.h> #include <gst/gst.h>
#include <config.h>
#include <gst/audio/audio.h> #include <gst/audio/audio.h>
#include "gstsf.h" #include "gstsf.h"

View file

@ -22,7 +22,6 @@
#define __GST_SFSINK_H__ #define __GST_SFSINK_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include <sndfile.h> #include <sndfile.h>

View file

@ -22,7 +22,6 @@
#define __GST_SWFDEC_H__ #define __GST_SWFDEC_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include <swfdec.h> #include <swfdec.h>

View file

@ -17,6 +17,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gsttarkinenc.h" #include "gsttarkinenc.h"
#include "gsttarkindec.h" #include "gsttarkindec.h"

View file

@ -22,7 +22,6 @@
#define __TARKINDEC_H__ #define __TARKINDEC_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include "tarkin.h" #include "tarkin.h"

View file

@ -22,7 +22,6 @@
#define __TARKINENC_H__ #define __TARKINENC_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include "tarkin.h" #include "tarkin.h"

View file

@ -18,6 +18,10 @@
/* general handling of the header and the TarkinInfo structure (and /* general handling of the header and the TarkinInfo structure (and
substructures) */ substructures) */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <ctype.h> #include <ctype.h>

View file

@ -2,6 +2,9 @@
* Debugging implementation of MALLOC and friends * Debugging implementation of MALLOC and friends
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "mem.h" #include "mem.h"

View file

@ -3,6 +3,10 @@
* (this one has to be rewritten to write ogg streams ...) * (this one has to be rewritten to write ogg streams ...)
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "mem.h" #include "mem.h"
#include "tarkin.h" #include "tarkin.h"
#include "yuv.h" #include "yuv.h"

View file

@ -1,3 +1,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "mem.h" #include "mem.h"
#include "wavelet.h" #include "wavelet.h"

View file

@ -1,3 +1,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "mem.h" #include "mem.h"
#include "wavelet.h" #include "wavelet.h"
#include "rle.h" #include "rle.h"

View file

@ -1,3 +1,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "mem.h" #include "mem.h"
#include <assert.h> #include <assert.h>
#include "wavelet.h" #include "wavelet.h"

View file

@ -1,3 +1,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "yuv.h" #include "yuv.h"
/*#define TARKIN_YUV_EXACT*/ /*#define TARKIN_YUV_EXACT*/

View file

@ -18,9 +18,6 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "config.h" #include "config.h"
#endif #endif

View file

@ -18,9 +18,6 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "config.h" #include "config.h"
#endif #endif

View file

@ -1,3 +1,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "buffer.hh" #include "buffer.hh"
#include <stdlib.h> #include <stdlib.h>

View file

@ -20,6 +20,10 @@
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "padstrm.hh" #include "padstrm.hh"

View file

@ -21,6 +21,10 @@
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <format_codes.h> #include <format_codes.h>
#include "stillsstream.hh" #include "stillsstream.hh"

View file

@ -20,6 +20,10 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "audioclock.h" #include "audioclock.h"
static void gst_audio_clock_class_init (GstAudioClockClass *klass); static void gst_audio_clock_class_init (GstAudioClockClass *klass);

View file

@ -21,8 +21,6 @@
#ifndef __FLOATCAST_H__ #ifndef __FLOATCAST_H__
#define __FLOATCAST_H__ #define __FLOATCAST_H__
#include <config.h>
#if (HAVE_LRINT && HAVE_LRINTF) #if (HAVE_LRINT && HAVE_LRINTF)
/* These defines enable functionality introduced with the 1999 ISO C /* These defines enable functionality introduced with the 1999 ISO C

View file

@ -21,6 +21,10 @@
* this library handles interaction with GConf * this library handles interaction with GConf
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gconf.h" #include "gconf.h"
#define GST_GCONF_DIR "/system/gstreamer" #define GST_GCONF_DIR "/system/gstreamer"

View file

@ -1,7 +1,5 @@
/* define DCT types */ /* define DCT types */
#include "config.h"
/* /*
* DCTSIZE underlying (1d) transform size * DCTSIZE underlying (1d) transform size
* DCTSIZE2 DCTSIZE squared * DCTSIZE2 DCTSIZE squared

View file

@ -38,6 +38,10 @@
/* compliance sE, 2.1.94 */ /* compliance sE, 2.1.94 */
/**********************************************************/ /**********************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
/* this code assumes >> to be a two's-complement arithmetic */ /* this code assumes >> to be a two's-complement arithmetic */
/* right shift: (-2)>>1 == -1 , (-3)>>1 == -2 */ /* right shift: (-2)>>1 == -1 , (-3)>>1 == -2 */

View file

@ -35,6 +35,10 @@
/* Here we use math.h to generate constants. Compiler results may /* Here we use math.h to generate constants. Compiler results may
vary a little */ vary a little */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <math.h> #include <math.h>
#ifndef PI #ifndef PI

View file

@ -9,6 +9,10 @@
* Released to public domain 11/22/93. * Released to public domain 11/22/93.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>

View file

@ -18,6 +18,10 @@
* scaled fixed-point arithmetic, with a minimal number of shifts. * scaled fixed-point arithmetic, with a minimal number of shifts.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "dct.h" #include "dct.h"
/* We assume that right shift corresponds to signed division by 2 with /* We assume that right shift corresponds to signed division by 2 with

View file

@ -114,7 +114,11 @@
/* /*
mword typedef qword mword typedef qword
qword ptr equ mword ptr */ qword ptr equ mword ptr */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <mmx.h> #include <mmx.h>
#define BITS_INV_ACC 4 /*; 4 or 5 for IEEE */ #define BITS_INV_ACC 4 /*; 4 or 5 for IEEE */

View file

@ -19,6 +19,10 @@
/* media-info-priv.c - handling of internal stuff */ /* media-info-priv.c - handling of internal stuff */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <gst/gst.h> #include <gst/gst.h>
#include <string.h> #include <string.h>
#include "media-info.h" #include "media-info.h"

View file

@ -17,6 +17,10 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <gst/gst.h> #include <gst/gst.h>
#include <string.h> #include <string.h>
#include "media-info.h" #include "media-info.h"

View file

@ -22,6 +22,10 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "play.h" #include "play.h"
enum enum

View file

@ -17,6 +17,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h> #include <string.h>
#include <math.h> #include <math.h>

View file

@ -17,6 +17,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h> #include <string.h>
#include <math.h> #include <math.h>

View file

@ -22,7 +22,6 @@
#define __PRIVATE_H__ #define __PRIVATE_H__
#include "resample.h" #include "resample.h"
#include "config.h"
void resample_nearest_s16(resample_t *r); void resample_nearest_s16(resample_t *r);
void resample_bilinear_s16(resample_t *r); void resample_bilinear_s16(resample_t *r);

View file

@ -17,6 +17,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h> #include <string.h>
#include <math.h> #include <math.h>

View file

@ -17,6 +17,10 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h> #include <string.h>
/*#define DEBUG_ENABLED */ /*#define DEBUG_ENABLED */

View file

@ -17,6 +17,10 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h> #include <string.h>
/*#define DEBUG_ENABLED */ /*#define DEBUG_ENABLED */

View file

@ -17,6 +17,9 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <riff.h> #include <riff.h>

View file

@ -22,7 +22,6 @@
#ifndef __GST_CDXA_PARSE_H__ #ifndef __GST_CDXA_PARSE_H__
#define __GST_CDXA_PARSE_H__ #define __GST_CDXA_PARSE_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include <gst/bytestream/bytestream.h> #include <gst/bytestream/bytestream.h>

View file

@ -20,7 +20,7 @@
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include <gst/video/video.h> #include <gst/video/video.h>

View file

@ -22,7 +22,6 @@
#define __GST_DEINTERLACE_H__ #define __GST_DEINTERLACE_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
/* #include <gst/meta/audioraw.h> */ /* #include <gst/meta/audioraw.h> */

View file

@ -61,7 +61,6 @@
#define __GST_FESTIVAL_H__ #define __GST_FESTIVAL_H__
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#ifdef __cplusplus #ifdef __cplusplus

View file

@ -19,6 +19,10 @@
/* LPC is actually a degenerate case of form I/II filters, but we need /* LPC is actually a degenerate case of form I/II filters, but we need
both */ both */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <math.h> #include <math.h>

View file

@ -17,10 +17,13 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h> #include <string.h>
#include <gst/gst.h> #include <gst/gst.h>
#include "flx_color.h" #include "flx_color.h"
FlxColorSpaceConverter * FlxColorSpaceConverter *

View file

@ -20,7 +20,7 @@
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif
#include <config.h>
#include <gst/gst.h> #include <gst/gst.h>
#include <gst/bytestream/bytestream.h> #include <gst/bytestream/bytestream.h>
#include <gst/audio/audio.h> #include <gst/audio/audio.h>

View file

@ -25,6 +25,10 @@
Olivier Lapicque <olivierl@jps.net> Olivier Lapicque <olivierl@jps.net>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "libmodplug/stdafx.h" #include "libmodplug/stdafx.h"
#include "libmodplug/sndfile.h" #include "libmodplug/sndfile.h"

View file

@ -21,8 +21,6 @@
#ifndef __GST_MODPLUG_H__ #ifndef __GST_MODPLUG_H__
#define __GST_MODPLUG_H__ #define __GST_MODPLUG_H__
#include <config.h>
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif /* __cplusplus */ #endif /* __cplusplus */

View file

@ -5,6 +5,10 @@
* Markus Fick <webmaster@mark-f.de> spline + fir-resampler * Markus Fick <webmaster@mark-f.de> spline + fir-resampler
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"
#include <math.h> #include <math.h>

View file

@ -9,6 +9,10 @@
// 669 Composer / UNIS 669 module loader // 669 Composer / UNIS 669 module loader
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -13,6 +13,11 @@
// - Advanced Music Format(DSM) // - Advanced Music Format(DSM)
// //
/////////////////////////////////////////////////// ///////////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -7,6 +7,11 @@
////////////////////////////////////////////// //////////////////////////////////////////////
// AMS module loader // // AMS module loader //
////////////////////////////////////////////// //////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -13,6 +13,10 @@
// //
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -7,6 +7,11 @@
/////////////////////////////////////////////////////// ///////////////////////////////////////////////////////
// DMF DELUSION DIGITAL MUSIC FILEFORMAT (X-Tracker) // // DMF DELUSION DIGITAL MUSIC FILEFORMAT (X-Tracker) //
/////////////////////////////////////////////////////// ///////////////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -7,6 +7,11 @@
////////////////////////////////////////////// //////////////////////////////////////////////
// DSIK Internal Format (DSM) module loader // // DSIK Internal Format (DSM) module loader //
////////////////////////////////////////////// //////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -7,6 +7,11 @@
//////////////////////////////////////// ////////////////////////////////////////
// Farandole (FAR) module loader // // Farandole (FAR) module loader //
//////////////////////////////////////// ////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -5,6 +5,10 @@
* Adam Goode <adam@evdebs.org> (endian and char fixes for PPC) * Adam Goode <adam@evdebs.org> (endian and char fixes for PPC)
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"
#include "it_defs.h" #include "it_defs.h"

View file

@ -10,6 +10,11 @@
// J2B module loader // J2B module loader
// //
/////////////////////////////////////////////////// ///////////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -7,6 +7,11 @@
////////////////////////////////////////////// //////////////////////////////////////////////
// DigiTracker (MDL) module loader // // DigiTracker (MDL) module loader //
////////////////////////////////////////////// //////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -5,6 +5,10 @@
* Adam Goode <adam@evdebs.org> (endian and char fixes for PPC) * Adam Goode <adam@evdebs.org> (endian and char fixes for PPC)
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -5,6 +5,10 @@
* Adam Goode <adam@evdebs.org> (endian and char fixes for PPC) * Adam Goode <adam@evdebs.org> (endian and char fixes for PPC)
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -1,3 +1,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -4,6 +4,10 @@
* Authors: Olivier Lapicque <olivierl@jps.net> * Authors: Olivier Lapicque <olivierl@jps.net>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -8,6 +8,11 @@
////////////////////////////////////////////// //////////////////////////////////////////////
// Oktalyzer (OKT) module loader // // Oktalyzer (OKT) module loader //
////////////////////////////////////////////// //////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -10,6 +10,11 @@
// PSM module loader // PSM module loader
// //
/////////////////////////////////////////////////// ///////////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -8,6 +8,11 @@
////////////////////////////////////////////// //////////////////////////////////////////////
// PTM PolyTracker module loader // // PTM PolyTracker module loader //
////////////////////////////////////////////// //////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -5,6 +5,10 @@
* Adam Goode <adam@evdebs.org> (endian and char fixes for PPC) * Adam Goode <adam@evdebs.org> (endian and char fixes for PPC)
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -4,6 +4,10 @@
* Authors: Olivier Lapicque <olivierl@jps.net> * Authors: Olivier Lapicque <olivierl@jps.net>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -4,6 +4,10 @@
* Authors: Olivier Lapicque <olivierl@jps.net> * Authors: Olivier Lapicque <olivierl@jps.net>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -4,6 +4,10 @@
* Authors: Olivier Lapicque <olivierl@jps.net> * Authors: Olivier Lapicque <olivierl@jps.net>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -4,6 +4,10 @@
* Authors: Olivier Lapicque <olivierl@jps.net> * Authors: Olivier Lapicque <olivierl@jps.net>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -5,6 +5,10 @@
* Adam Goode <adam@evdebs.org> (endian and char fixes for PPC) * Adam Goode <adam@evdebs.org> (endian and char fixes for PPC)
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -4,6 +4,10 @@
* Authors: Olivier Lapicque <olivierl@jps.net> * Authors: Olivier Lapicque <olivierl@jps.net>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -4,6 +4,10 @@
* Authors: Kenton Varda <temporal@gauge3d.org> (C interface wrapper) * Authors: Kenton Varda <temporal@gauge3d.org> (C interface wrapper)
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "modplug.h" #include "modplug.h"
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -4,6 +4,10 @@
* Authors: Olivier Lapicque <olivierl@jps.net> * Authors: Olivier Lapicque <olivierl@jps.net>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -4,6 +4,10 @@
* Authors: Olivier Lapicque <olivierl@jps.net> * Authors: Olivier Lapicque <olivierl@jps.net>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -4,6 +4,10 @@
* Authors: Olivier Lapicque <olivierl@jps.net> * Authors: Olivier Lapicque <olivierl@jps.net>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -5,6 +5,10 @@
* Adam Goode <adam@evdebs.org> (endian and char fixes for PPC) * Adam Goode <adam@evdebs.org> (endian and char fixes for PPC)
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <math.h> //for GCCFIX #include <math.h> //for GCCFIX
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -5,10 +5,6 @@
* Adam Goode <adam@evdebs.org> (endian and char fixes for PPC) * Adam Goode <adam@evdebs.org> (endian and char fixes for PPC)
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifndef __SNDFILE_H #ifndef __SNDFILE_H
#define __SNDFILE_H #define __SNDFILE_H

View file

@ -4,6 +4,10 @@
* Authors: Olivier Lapicque <olivierl@jps.net> * Authors: Olivier Lapicque <olivierl@jps.net>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

View file

@ -4,6 +4,10 @@
* Authors: Olivier Lapicque <olivierl@jps.net> * Authors: Olivier Lapicque <olivierl@jps.net>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "stdafx.h" #include "stdafx.h"
#include "sndfile.h" #include "sndfile.h"

Some files were not shown because too many files have changed in this diff Show more