diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ xine-lib (1.1.11.1) 2008-??-?? possibly execute arbitrary code. (CVE-2008-1482) * Added a few more memory allocation checks to the above demuxers. * WAV file playback fix: don't assume that the first chunk is "fmt ". + * Avoid potential HAVE_CONFIG_H clashes when building client programs. xine-lib (1.1.11) 2008-03-19 * Security fixes: diff --git a/src/audio_out/audio_alsa_out.c b/src/audio_out/audio_alsa_out.c --- a/src/audio_out/audio_alsa_out.c +++ b/src/audio_out/audio_alsa_out.c @@ -26,7 +26,7 @@ * (c) 2001 James Courtier-Dutton */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/audio_out/audio_arts_out.c b/src/audio_out/audio_arts_out.c --- a/src/audio_out/audio_arts_out.c +++ b/src/audio_out/audio_arts_out.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/audio_out/audio_coreaudio_out.c b/src/audio_out/audio_coreaudio_out.c --- a/src/audio_out/audio_coreaudio_out.c +++ b/src/audio_out/audio_coreaudio_out.c @@ -28,7 +28,7 @@ * system works on push-i/o basis. So there is need of a buffer inbetween. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/audio_out/audio_directx2_out.c b/src/audio_out/audio_directx2_out.c --- a/src/audio_out/audio_directx2_out.c +++ b/src/audio_out/audio_directx2_out.c @@ -40,7 +40,7 @@ * - dual GPL/LGPL (LGPL for non xine-specific part) */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/audio_out/audio_esd_out.c b/src/audio_out/audio_esd_out.c --- a/src/audio_out/audio_esd_out.c +++ b/src/audio_out/audio_esd_out.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/audio_out/audio_file_out.c b/src/audio_out/audio_file_out.c --- a/src/audio_out/audio_file_out.c +++ b/src/audio_out/audio_file_out.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/audio_out/audio_fusionsound_out.c b/src/audio_out/audio_fusionsound_out.c --- a/src/audio_out/audio_fusionsound_out.c +++ b/src/audio_out/audio_fusionsound_out.c @@ -22,7 +22,7 @@ * */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/audio_out/audio_irixal_out.c b/src/audio_out/audio_irixal_out.c --- a/src/audio_out/audio_irixal_out.c +++ b/src/audio_out/audio_irixal_out.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/audio_out/audio_none_out.c b/src/audio_out/audio_none_out.c --- a/src/audio_out/audio_none_out.c +++ b/src/audio_out/audio_none_out.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/audio_out/audio_oss_out.c b/src/audio_out/audio_oss_out.c --- a/src/audio_out/audio_oss_out.c +++ b/src/audio_out/audio_oss_out.c @@ -34,7 +34,7 @@ * The number of samples passed to/from the audio driver is also sent in units of audio_frames. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/audio_out/audio_pulse_out.c b/src/audio_out/audio_pulse_out.c --- a/src/audio_out/audio_pulse_out.c +++ b/src/audio_out/audio_pulse_out.c @@ -25,7 +25,7 @@ * of this code comes from Lennart's patch to mplayer. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/audio_out/audio_sun_out.c b/src/audio_out/audio_sun_out.c --- a/src/audio_out/audio_sun_out.c +++ b/src/audio_out/audio_sun_out.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/combined/decoder_flac.c b/src/combined/decoder_flac.c --- a/src/combined/decoder_flac.c +++ b/src/combined/decoder_flac.c @@ -21,7 +21,7 @@ * FLAC Decoder (http://flac.sf.net) */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/combined/decoder_wavpack.c b/src/combined/decoder_wavpack.c --- a/src/combined/decoder_wavpack.c +++ b/src/combined/decoder_wavpack.c @@ -20,7 +20,7 @@ * xine interface to libwavpack by Diego Pettenò */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/combined/demux_flac.c b/src/combined/demux_flac.c --- a/src/combined/demux_flac.c +++ b/src/combined/demux_flac.c @@ -25,7 +25,7 @@ * */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/combined/demux_wavpack.c b/src/combined/demux_wavpack.c --- a/src/combined/demux_wavpack.c +++ b/src/combined/demux_wavpack.c @@ -20,7 +20,7 @@ * xine interface to libwavpack by Diego Pettenò */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/combined/ffmpeg/ff_audio_decoder.c b/src/combined/ffmpeg/ff_audio_decoder.c --- a/src/combined/ffmpeg/ff_audio_decoder.c +++ b/src/combined/ffmpeg/ff_audio_decoder.c @@ -20,7 +20,7 @@ * xine audio decoder plugin using ffmpeg */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #include "../../libffmpeg/ffmpeg_config.h" #endif diff --git a/src/combined/ffmpeg/ff_dvaudio_decoder.c b/src/combined/ffmpeg/ff_dvaudio_decoder.c --- a/src/combined/ffmpeg/ff_dvaudio_decoder.c +++ b/src/combined/ffmpeg/ff_dvaudio_decoder.c @@ -20,7 +20,7 @@ * dv audio decoder based on patch by Dan Dennedy */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/combined/ffmpeg/ff_video_decoder.c b/src/combined/ffmpeg/ff_video_decoder.c --- a/src/combined/ffmpeg/ff_video_decoder.c +++ b/src/combined/ffmpeg/ff_video_decoder.c @@ -20,7 +20,7 @@ * xine video decoder plugin using ffmpeg */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #include "../../libffmpeg/ffmpeg_config.h" #endif diff --git a/src/combined/ffmpeg/ffmpeg_decoder.c b/src/combined/ffmpeg/ffmpeg_decoder.c --- a/src/combined/ffmpeg/ffmpeg_decoder.c +++ b/src/combined/ffmpeg/ffmpeg_decoder.c @@ -20,7 +20,7 @@ * xine decoder plugin using ffmpeg */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #include "../../libffmpeg/ffmpeg_config.h" #endif diff --git a/src/combined/ffmpeg/ffmpeg_decoder.h b/src/combined/ffmpeg/ffmpeg_decoder.h --- a/src/combined/ffmpeg/ffmpeg_decoder.h +++ b/src/combined/ffmpeg/ffmpeg_decoder.h @@ -21,7 +21,7 @@ #ifndef HAVE_XINE_DECODER_H #define HAVE_XINE_DECODER_H -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/combined/ffmpeg/ffmpeg_encoder.c b/src/combined/ffmpeg/ffmpeg_encoder.c --- a/src/combined/ffmpeg/ffmpeg_encoder.c +++ b/src/combined/ffmpeg/ffmpeg_encoder.c @@ -20,7 +20,7 @@ /* mpeg encoders for the dxr3 video out plugin. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/asfheader.c b/src/demuxers/asfheader.c --- a/src/demuxers/asfheader.c +++ b/src/demuxers/asfheader.c @@ -1,4 +1,4 @@ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_4xm.c b/src/demuxers/demux_4xm.c --- a/src/demuxers/demux_4xm.c +++ b/src/demuxers/demux_4xm.c @@ -24,7 +24,7 @@ * http://www.pcisys.net/~melanson/codecs/ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_aac.c b/src/demuxers/demux_aac.c --- a/src/demuxers/demux_aac.c +++ b/src/demuxers/demux_aac.c @@ -22,7 +22,7 @@ * Then it shovels buffer-sized chunks over to the AAC decoder. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_ac3.c b/src/demuxers/demux_ac3.c --- a/src/demuxers/demux_ac3.c +++ b/src/demuxers/demux_ac3.c @@ -24,7 +24,7 @@ * directly to the AC3 decoder. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_aiff.c b/src/demuxers/demux_aiff.c --- a/src/demuxers/demux_aiff.c +++ b/src/demuxers/demux_aiff.c @@ -22,7 +22,7 @@ * AIFF File Demuxer by Mike Melanson (melanson@pcisys.net) */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_asf.c b/src/demuxers/demux_asf.c --- a/src/demuxers/demux_asf.c +++ b/src/demuxers/demux_asf.c @@ -27,7 +27,7 @@ * some other ideas from MPlayer */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_aud.c b/src/demuxers/demux_aud.c --- a/src/demuxers/demux_aud.c +++ b/src/demuxers/demux_aud.c @@ -35,7 +35,7 @@ * seeking is not supported. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_avi.c b/src/demuxers/demux_avi.c --- a/src/demuxers/demux_avi.c +++ b/src/demuxers/demux_avi.c @@ -54,7 +54,7 @@ * port it from transcode to xine. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_cdda.c b/src/demuxers/demux_cdda.c --- a/src/demuxers/demux_cdda.c +++ b/src/demuxers/demux_cdda.c @@ -25,7 +25,7 @@ * output target; this is a really fancy CD-playing architecture). */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_dts.c b/src/demuxers/demux_dts.c --- a/src/demuxers/demux_dts.c +++ b/src/demuxers/demux_dts.c @@ -20,7 +20,7 @@ * Raw DTS Demuxer by James Stembridge (jstembridge@gmail.com) */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_eawve.c b/src/demuxers/demux_eawve.c --- a/src/demuxers/demux_eawve.c +++ b/src/demuxers/demux_eawve.c @@ -24,7 +24,7 @@ * written and currently maintained by Robin Kay */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_elem.c b/src/demuxers/demux_elem.c --- a/src/demuxers/demux_elem.c +++ b/src/demuxers/demux_elem.c @@ -22,7 +22,7 @@ * demultiplexer for elementary mpeg streams */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_film.c b/src/demuxers/demux_film.c --- a/src/demuxers/demux_film.c +++ b/src/demuxers/demux_film.c @@ -22,7 +22,7 @@ * http://www.pcisys.net/~melanson/codecs/ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_flac.c b/src/demuxers/demux_flac.c --- a/src/demuxers/demux_flac.c +++ b/src/demuxers/demux_flac.c @@ -24,7 +24,7 @@ * http://flac.sourceforge.net/ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_fli.c b/src/demuxers/demux_fli.c --- a/src/demuxers/demux_fli.c +++ b/src/demuxers/demux_fli.c @@ -25,7 +25,7 @@ * http://www.pcisys.net/~melanson/codecs/ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_flv.c b/src/demuxers/demux_flv.c --- a/src/demuxers/demux_flv.c +++ b/src/demuxers/demux_flv.c @@ -27,7 +27,7 @@ * http://download.macromedia.com/pub/flash/flash_file_format_specification.pdf */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_idcin.c b/src/demuxers/demux_idcin.c --- a/src/demuxers/demux_idcin.c +++ b/src/demuxers/demux_idcin.c @@ -66,7 +66,7 @@ * transmitting them to the video decoder */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_iff.c b/src/demuxers/demux_iff.c --- a/src/demuxers/demux_iff.c +++ b/src/demuxers/demux_iff.c @@ -37,7 +37,7 @@ * - Animation works fine, without seeking. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_image.c b/src/demuxers/demux_image.c --- a/src/demuxers/demux_image.c +++ b/src/demuxers/demux_image.c @@ -22,7 +22,7 @@ * image dummy demultiplexer */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_ipmovie.c b/src/demuxers/demux_ipmovie.c --- a/src/demuxers/demux_ipmovie.c +++ b/src/demuxers/demux_ipmovie.c @@ -24,7 +24,7 @@ * http://www.pcisys.net/~melanson/codecs/ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_matroska.c b/src/demuxers/demux_matroska.c --- a/src/demuxers/demux_matroska.c +++ b/src/demuxers/demux_matroska.c @@ -25,7 +25,7 @@ * non seekable input plugins support */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_mng.c b/src/demuxers/demux_mng.c --- a/src/demuxers/demux_mng.c +++ b/src/demuxers/demux_mng.c @@ -24,9 +24,9 @@ * written and currently maintained by Robin Kay */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" -#undef HAVE_CONFIG_H +#undef HAVE_XINE_CONFIG_H #endif #include diff --git a/src/demuxers/demux_mod.c b/src/demuxers/demux_mod.c --- a/src/demuxers/demux_mod.c +++ b/src/demuxers/demux_mod.c @@ -27,7 +27,7 @@ * This file was based on demux_nsf.c by Mike Melanson. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_mpc.c b/src/demuxers/demux_mpc.c --- a/src/demuxers/demux_mpc.c +++ b/src/demuxers/demux_mpc.c @@ -25,7 +25,7 @@ * Seeking?? */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_mpeg.c b/src/demuxers/demux_mpeg.c --- a/src/demuxers/demux_mpeg.c +++ b/src/demuxers/demux_mpeg.c @@ -23,7 +23,7 @@ * reads streams of variable blocksizes */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_mpeg_block.c b/src/demuxers/demux_mpeg_block.c --- a/src/demuxers/demux_mpeg_block.c +++ b/src/demuxers/demux_mpeg_block.c @@ -21,7 +21,7 @@ * used with fixed blocksize devices (like dvd/vcd) */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_mpeg_pes.c b/src/demuxers/demux_mpeg_pes.c --- a/src/demuxers/demux_mpeg_pes.c +++ b/src/demuxers/demux_mpeg_pes.c @@ -25,7 +25,7 @@ * This code might also decode normal MPG files. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_mpgaudio.c b/src/demuxers/demux_mpgaudio.c --- a/src/demuxers/demux_mpgaudio.c +++ b/src/demuxers/demux_mpgaudio.c @@ -23,7 +23,7 @@ * [id3v2][Xing|Vbri] Frame1 Frame2 Frame3...FrameX [Lyrics][id3v2][id3v1] */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_nsf.c b/src/demuxers/demux_nsf.c --- a/src/demuxers/demux_nsf.c +++ b/src/demuxers/demux_nsf.c @@ -31,7 +31,7 @@ * http://www.tripoint.org/kevtris/nes/nsfspec.txt */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_nsv.c b/src/demuxers/demux_nsv.c --- a/src/demuxers/demux_nsv.c +++ b/src/demuxers/demux_nsv.c @@ -24,7 +24,7 @@ * http://www.pcisys.net/~melanson/codecs/ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c --- a/src/demuxers/demux_ogg.c +++ b/src/demuxers/demux_ogg.c @@ -24,7 +24,7 @@ /* 2003.02.09 (dilb) update of the handling for audio/video infos for strongarm cpus. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_pva.c b/src/demuxers/demux_pva.c --- a/src/demuxers/demux_pva.c +++ b/src/demuxers/demux_pva.c @@ -24,7 +24,7 @@ * http://www.technotrend.de/download/av_format_v1.pdf */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c --- a/src/demuxers/demux_qt.c +++ b/src/demuxers/demux_qt.c @@ -31,7 +31,7 @@ * free_qt_info */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_rawdv.c b/src/demuxers/demux_rawdv.c --- a/src/demuxers/demux_rawdv.c +++ b/src/demuxers/demux_rawdv.c @@ -22,7 +22,7 @@ * demultiplexer for raw dv streams */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_real.c b/src/demuxers/demux_real.c --- a/src/demuxers/demux_real.c +++ b/src/demuxers/demux_real.c @@ -32,7 +32,7 @@ * Based on FFmpeg's libav/rm.c. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_realaudio.c b/src/demuxers/demux_realaudio.c --- a/src/demuxers/demux_realaudio.c +++ b/src/demuxers/demux_realaudio.c @@ -23,7 +23,7 @@ * improved by James Stembridge (jstembridge@users.sourceforge.net) */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_roq.c b/src/demuxers/demux_roq.c --- a/src/demuxers/demux_roq.c +++ b/src/demuxers/demux_roq.c @@ -24,7 +24,7 @@ * http://www.csse.monash.edu.au/~timf/ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_shn.c b/src/demuxers/demux_shn.c --- a/src/demuxers/demux_shn.c +++ b/src/demuxers/demux_shn.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_slave.c b/src/demuxers/demux_slave.c --- a/src/demuxers/demux_slave.c +++ b/src/demuxers/demux_slave.c @@ -26,7 +26,7 @@ * 'xine --broadcast-port ' */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_smjpeg.c b/src/demuxers/demux_smjpeg.c --- a/src/demuxers/demux_smjpeg.c +++ b/src/demuxers/demux_smjpeg.c @@ -24,7 +24,7 @@ * http://www.lokigames.com/development/smjpeg.php3 */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_snd.c b/src/demuxers/demux_snd.c --- a/src/demuxers/demux_snd.c +++ b/src/demuxers/demux_snd.c @@ -22,7 +22,7 @@ * SND/AU File Demuxer by Mike Melanson (melanson@pcisys.net) */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_str.c b/src/demuxers/demux_str.c --- a/src/demuxers/demux_str.c +++ b/src/demuxers/demux_str.c @@ -107,7 +107,7 @@ * - 16 bits: 0xFE00 end-of-data footer */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_ts.c b/src/demuxers/demux_ts.c --- a/src/demuxers/demux_ts.c +++ b/src/demuxers/demux_ts.c @@ -131,7 +131,7 @@ **/ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_vmd.c b/src/demuxers/demux_vmd.c --- a/src/demuxers/demux_vmd.c +++ b/src/demuxers/demux_vmd.c @@ -29,7 +29,7 @@ * There is a 1/65536 chance of a false positive using this method. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_voc.c b/src/demuxers/demux_voc.c --- a/src/demuxers/demux_voc.c +++ b/src/demuxers/demux_voc.c @@ -26,7 +26,7 @@ * supported as they are encountered. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_vox.c b/src/demuxers/demux_vox.c --- a/src/demuxers/demux_vox.c +++ b/src/demuxers/demux_vox.c @@ -23,7 +23,7 @@ * This a demuxer for .vox files containing raw Dialogic ADPCM data. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_vqa.c b/src/demuxers/demux_vqa.c --- a/src/demuxers/demux_vqa.c +++ b/src/demuxers/demux_vqa.c @@ -30,7 +30,7 @@ * decoded, thus making random seeking difficult. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_wav.c b/src/demuxers/demux_wav.c --- a/src/demuxers/demux_wav.c +++ b/src/demuxers/demux_wav.c @@ -23,7 +23,7 @@ * based on WAV specs that are available far and wide */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_wc3movie.c b/src/demuxers/demux_wc3movie.c --- a/src/demuxers/demux_wc3movie.c +++ b/src/demuxers/demux_wc3movie.c @@ -25,7 +25,7 @@ * http://www.pcisys.net/~melanson/codecs/ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_yuv4mpeg2.c b/src/demuxers/demux_yuv4mpeg2.c --- a/src/demuxers/demux_yuv4mpeg2.c +++ b/src/demuxers/demux_yuv4mpeg2.c @@ -25,7 +25,7 @@ * http://mjpeg.sourceforge.net/ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/demux_yuv_frames.c b/src/demuxers/demux_yuv_frames.c --- a/src/demuxers/demux_yuv_frames.c +++ b/src/demuxers/demux_yuv_frames.c @@ -23,7 +23,7 @@ * dummy demultiplexer for raw yuv frames (delivered by v4l) */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/ebml.c b/src/demuxers/ebml.c --- a/src/demuxers/ebml.c +++ b/src/demuxers/ebml.c @@ -20,7 +20,7 @@ * EBML parser * a lot of ideas from the gstreamer parser */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/group_audio.c b/src/demuxers/group_audio.c --- a/src/demuxers/group_audio.c +++ b/src/demuxers/group_audio.c @@ -20,7 +20,7 @@ * This file contains plugin entries for several demuxers used in games */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/group_games.c b/src/demuxers/group_games.c --- a/src/demuxers/group_games.c +++ b/src/demuxers/group_games.c @@ -20,7 +20,7 @@ * This file contains plugin entries for several demuxers used in games */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/demuxers/id3.c b/src/demuxers/id3.c --- a/src/demuxers/id3.c +++ b/src/demuxers/id3.c @@ -30,7 +30,7 @@ * ID3v2 specs: http://www.id3.org/ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/dxr3/dxr3_mpeg_encoders.c b/src/dxr3/dxr3_mpeg_encoders.c --- a/src/dxr3/dxr3_mpeg_encoders.c +++ b/src/dxr3/dxr3_mpeg_encoders.c @@ -22,7 +22,7 @@ * supports the libfame and librte mpeg encoder libraries. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c --- a/src/dxr3/video_out_dxr3.c +++ b/src/dxr3/video_out_dxr3.c @@ -26,7 +26,7 @@ * Harm van der Heijden */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/dxr3/video_out_dxr3.h b/src/dxr3/video_out_dxr3.h --- a/src/dxr3/video_out_dxr3.h +++ b/src/dxr3/video_out_dxr3.h @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/http_helper.c b/src/input/http_helper.c --- a/src/input/http_helper.c +++ b/src/input/http_helper.c @@ -20,7 +20,7 @@ * URL helper functions */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_cdda.c b/src/input/input_cdda.c --- a/src/input/input_cdda.c +++ b/src/input/input_cdda.c @@ -21,7 +21,7 @@ * by Mike Melanson (melanson@pcisys.net) */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_dvb.c b/src/input/input_dvb.c --- a/src/input/input_dvb.c +++ b/src/input/input_dvb.c @@ -70,7 +70,7 @@ thread safely (on some systems). */ #include -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -29,7 +29,7 @@ * - Failure dialogue. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_file.c b/src/input/input_file.c --- a/src/input/input_file.c +++ b/src/input/input_file.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_gnome_vfs.c b/src/input/input_gnome_vfs.c --- a/src/input/input_gnome_vfs.c +++ b/src/input/input_gnome_vfs.c @@ -20,7 +20,7 @@ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_http.c b/src/input/input_http.c --- a/src/input/input_http.c +++ b/src/input/input_http.c @@ -20,7 +20,7 @@ * input plugin for http network streams */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_mms.c b/src/input/input_mms.c --- a/src/input/input_mms.c +++ b/src/input/input_mms.c @@ -20,7 +20,7 @@ * mms input plugin based on work from major mms */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_net.c b/src/input/input_net.c --- a/src/input/input_net.c +++ b/src/input/input_net.c @@ -35,7 +35,7 @@ * xine tcp://192.168.0.43:1025.mpg */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_pnm.c b/src/input/input_pnm.c --- a/src/input/input_pnm.c +++ b/src/input/input_pnm.c @@ -20,7 +20,7 @@ * pnm input plugin by joschka */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_pvr.c b/src/input/input_pvr.c --- a/src/input/input_pvr.c +++ b/src/input/input_pvr.c @@ -83,7 +83,7 @@ ***************************************************************************/ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_rtp.c b/src/input/input_rtp.c --- a/src/input/input_rtp.c +++ b/src/input/input_rtp.c @@ -61,7 +61,7 @@ * can be unicast. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_rtsp.c b/src/input/input_rtsp.c --- a/src/input/input_rtsp.c +++ b/src/input/input_rtsp.c @@ -20,7 +20,7 @@ * rtsp input plugin */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_smb.c b/src/input/input_smb.c --- a/src/input/input_smb.c +++ b/src/input/input_smb.c @@ -19,7 +19,7 @@ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_stdin_fifo.c b/src/input/input_stdin_fifo.c --- a/src/input/input_stdin_fifo.c +++ b/src/input/input_stdin_fifo.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_v4l.c b/src/input/input_v4l.c --- a/src/input/input_v4l.c +++ b/src/input/input_v4l.c @@ -21,7 +21,7 @@ * v4l input plugin */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c --- a/src/input/input_vcd.c +++ b/src/input/input_vcd.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/libdvdnav/decoder.c b/src/input/libdvdnav/decoder.c --- a/src/input/libdvdnav/decoder.c +++ b/src/input/libdvdnav/decoder.c @@ -20,7 +20,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/libdvdnav/diff_against_cvs.patch b/src/input/libdvdnav/diff_against_cvs.patch --- a/src/input/libdvdnav/diff_against_cvs.patch +++ b/src/input/libdvdnav/diff_against_cvs.patch @@ -322,7 +322,7 @@ diff -u -p -u -r1.5 dvd_reader.h */ -#ifdef _MSC_VER -+#ifdef HAVE_CONFIG_H ++#ifdef HAVE_XINE_CONFIG_H #include +#endif diff --git a/src/input/libdvdnav/dvd_reader.h b/src/input/libdvdnav/dvd_reader.h --- a/src/input/libdvdnav/dvd_reader.h +++ b/src/input/libdvdnav/dvd_reader.h @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include #endif diff --git a/src/input/libdvdnav/dvdnav.c b/src/input/libdvdnav/dvdnav.c --- a/src/input/libdvdnav/dvdnav.c +++ b/src/input/libdvdnav/dvdnav.c @@ -18,7 +18,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/libdvdnav/dvdnav_internal.h b/src/input/libdvdnav/dvdnav_internal.h --- a/src/input/libdvdnav/dvdnav_internal.h +++ b/src/input/libdvdnav/dvdnav_internal.h @@ -21,7 +21,7 @@ #ifndef DVDNAV_INTERNAL_H_INCLUDED #define DVDNAV_INTERNAL_H_INCLUDED -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/libdvdnav/highlight.c b/src/input/libdvdnav/highlight.c --- a/src/input/libdvdnav/highlight.c +++ b/src/input/libdvdnav/highlight.c @@ -18,7 +18,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/libdvdnav/md5.c b/src/input/libdvdnav/md5.c --- a/src/input/libdvdnav/md5.c +++ b/src/input/libdvdnav/md5.c @@ -20,7 +20,7 @@ /* Written by Ulrich Drepper , 1995. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include #endif diff --git a/src/input/libdvdnav/navigation.c b/src/input/libdvdnav/navigation.c --- a/src/input/libdvdnav/navigation.c +++ b/src/input/libdvdnav/navigation.c @@ -18,7 +18,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/libdvdnav/read_cache.c b/src/input/libdvdnav/read_cache.c --- a/src/input/libdvdnav/read_cache.c +++ b/src/input/libdvdnav/read_cache.c @@ -24,7 +24,7 @@ * search the CVS attic. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/libdvdnav/searching.c b/src/input/libdvdnav/searching.c --- a/src/input/libdvdnav/searching.c +++ b/src/input/libdvdnav/searching.c @@ -18,7 +18,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/libdvdnav/settings.c b/src/input/libdvdnav/settings.c --- a/src/input/libdvdnav/settings.c +++ b/src/input/libdvdnav/settings.c @@ -18,7 +18,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/libdvdnav/vm.c b/src/input/libdvdnav/vm.c --- a/src/input/libdvdnav/vm.c +++ b/src/input/libdvdnav/vm.c @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/libdvdnav/vmcmd.c b/src/input/libdvdnav/vmcmd.c --- a/src/input/libdvdnav/vmcmd.c +++ b/src/input/libdvdnav/vmcmd.c @@ -20,7 +20,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/mms.c b/src/input/mms.c --- a/src/input/mms.c +++ b/src/input/mms.c @@ -26,7 +26,7 @@ * enable seeking ! */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/mmsh.c b/src/input/mmsh.c --- a/src/input/mmsh.c +++ b/src/input/mmsh.c @@ -28,7 +28,7 @@ * http proxy support */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/net_buf_ctrl.c b/src/input/net_buf_ctrl.c --- a/src/input/net_buf_ctrl.c +++ b/src/input/net_buf_ctrl.c @@ -21,7 +21,7 @@ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/sha1.h b/src/input/sha1.h --- a/src/input/sha1.h +++ b/src/input/sha1.h @@ -34,7 +34,7 @@ char *sha_version(void); #define SHA_VERSION 1 -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #ifdef WORDS_BIGENDIAN diff --git a/src/input/vcd/libcdio/FreeBSD/freebsd.c b/src/input/vcd/libcdio/FreeBSD/freebsd.c --- a/src/input/vcd/libcdio/FreeBSD/freebsd.c +++ b/src/input/vcd/libcdio/FreeBSD/freebsd.c @@ -23,7 +23,7 @@ mplayer's FreeBSD code with lots of modifications. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/FreeBSD/freebsd.h b/src/input/vcd/libcdio/FreeBSD/freebsd.h --- a/src/input/vcd/libcdio/FreeBSD/freebsd.h +++ b/src/input/vcd/libcdio/FreeBSD/freebsd.h @@ -23,7 +23,7 @@ mplayer's FreeBSD code with lots of modifications. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/FreeBSD/freebsd_cam.c b/src/input/vcd/libcdio/FreeBSD/freebsd_cam.c --- a/src/input/vcd/libcdio/FreeBSD/freebsd_cam.c +++ b/src/input/vcd/libcdio/FreeBSD/freebsd_cam.c @@ -22,7 +22,7 @@ control of the CD drive via SCSI emulation. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/FreeBSD/freebsd_ioctl.c b/src/input/vcd/libcdio/FreeBSD/freebsd_ioctl.c --- a/src/input/vcd/libcdio/FreeBSD/freebsd_ioctl.c +++ b/src/input/vcd/libcdio/FreeBSD/freebsd_ioctl.c @@ -23,7 +23,7 @@ mplayer's FreeBSD code with lots of modifications. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/MSWindows/aspi32.c b/src/input/vcd/libcdio/MSWindows/aspi32.c --- a/src/input/vcd/libcdio/MSWindows/aspi32.c +++ b/src/input/vcd/libcdio/MSWindows/aspi32.c @@ -23,7 +23,7 @@ Inspired by vlc's cdrom.h code */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/MSWindows/win32.c b/src/input/vcd/libcdio/MSWindows/win32.c --- a/src/input/vcd/libcdio/MSWindows/win32.c +++ b/src/input/vcd/libcdio/MSWindows/win32.c @@ -22,7 +22,7 @@ control of the CD drive. Inspired by vlc's cdrom.h code */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/MSWindows/win32_ioctl.c b/src/input/vcd/libcdio/MSWindows/win32_ioctl.c --- a/src/input/vcd/libcdio/MSWindows/win32_ioctl.c +++ b/src/input/vcd/libcdio/MSWindows/win32_ioctl.c @@ -22,7 +22,7 @@ access method. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/_cdio_bsdi.c b/src/input/vcd/libcdio/_cdio_bsdi.c --- a/src/input/vcd/libcdio/_cdio_bsdi.c +++ b/src/input/vcd/libcdio/_cdio_bsdi.c @@ -23,7 +23,7 @@ control of the CD drive. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/_cdio_generic.c b/src/input/vcd/libcdio/_cdio_generic.c --- a/src/input/vcd/libcdio/_cdio_generic.c +++ b/src/input/vcd/libcdio/_cdio_generic.c @@ -21,7 +21,7 @@ /* This file contains generic implementations of device-dirver routines. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/_cdio_linux.c b/src/input/vcd/libcdio/_cdio_linux.c --- a/src/input/vcd/libcdio/_cdio_linux.c +++ b/src/input/vcd/libcdio/_cdio_linux.c @@ -23,7 +23,7 @@ control of the CD drive. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/_cdio_osx.c b/src/input/vcd/libcdio/_cdio_osx.c --- a/src/input/vcd/libcdio/_cdio_osx.c +++ b/src/input/vcd/libcdio/_cdio_osx.c @@ -30,7 +30,7 @@ control of the CD drive. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/vcd/libcdio/_cdio_stdio.c b/src/input/vcd/libcdio/_cdio_stdio.c --- a/src/input/vcd/libcdio/_cdio_stdio.c +++ b/src/input/vcd/libcdio/_cdio_stdio.c @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/_cdio_stream.c b/src/input/vcd/libcdio/_cdio_stream.c --- a/src/input/vcd/libcdio/_cdio_stream.c +++ b/src/input/vcd/libcdio/_cdio_stream.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/_cdio_sunos.c b/src/input/vcd/libcdio/_cdio_sunos.c --- a/src/input/vcd/libcdio/_cdio_sunos.c +++ b/src/input/vcd/libcdio/_cdio_sunos.c @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/cdio.c b/src/input/vcd/libcdio/cdio.c --- a/src/input/vcd/libcdio/cdio.c +++ b/src/input/vcd/libcdio/cdio.c @@ -20,7 +20,7 @@ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/cdio_assert.h b/src/input/vcd/libcdio/cdio_assert.h --- a/src/input/vcd/libcdio/cdio_assert.h +++ b/src/input/vcd/libcdio/cdio_assert.h @@ -23,7 +23,7 @@ #if defined(__GNUC__) -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/cdio_private.h b/src/input/vcd/libcdio/cdio_private.h --- a/src/input/vcd/libcdio/cdio_private.h +++ b/src/input/vcd/libcdio/cdio_private.h @@ -24,7 +24,7 @@ #ifndef __CDIO_PRIVATE_H__ #define __CDIO_PRIVATE_H__ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/cdtext.c b/src/input/vcd/libcdio/cdtext.c --- a/src/input/vcd/libcdio/cdtext.c +++ b/src/input/vcd/libcdio/cdtext.c @@ -20,7 +20,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/ds.c b/src/input/vcd/libcdio/ds.c --- a/src/input/vcd/libcdio/ds.c +++ b/src/input/vcd/libcdio/ds.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/generic.h b/src/input/vcd/libcdio/generic.h --- a/src/input/vcd/libcdio/generic.h +++ b/src/input/vcd/libcdio/generic.h @@ -24,7 +24,7 @@ #ifndef __CDIO_GENERIC_H__ #define __CDIO_GENERIC_H__ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/image.h b/src/input/vcd/libcdio/image.h --- a/src/input/vcd/libcdio/image.h +++ b/src/input/vcd/libcdio/image.h @@ -27,7 +27,7 @@ #ifndef __CDIO_IMAGE_H__ #define __CDIO_IMAGE_H__ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/iso9660_fs.c b/src/input/vcd/libcdio/iso9660_fs.c --- a/src/input/vcd/libcdio/iso9660_fs.c +++ b/src/input/vcd/libcdio/iso9660_fs.c @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/iso9660_private.h b/src/input/vcd/libcdio/iso9660_private.h --- a/src/input/vcd/libcdio/iso9660_private.h +++ b/src/input/vcd/libcdio/iso9660_private.h @@ -27,7 +27,7 @@ #ifndef __CDIO_ISO9660_PRIVATE_H__ #define __CDIO_ISO9660_PRIVATE_H__ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/logging.c b/src/input/vcd/libcdio/logging.c --- a/src/input/vcd/libcdio/logging.c +++ b/src/input/vcd/libcdio/logging.c @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/portable.h b/src/input/vcd/libcdio/portable.h --- a/src/input/vcd/libcdio/portable.h +++ b/src/input/vcd/libcdio/portable.h @@ -27,7 +27,7 @@ #ifndef __CDIO_PORTABLE_H__ #define __CDIO_PORTABLE_H__ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/scsi_mmc.c b/src/input/vcd/libcdio/scsi_mmc.c --- a/src/input/vcd/libcdio/scsi_mmc.c +++ b/src/input/vcd/libcdio/scsi_mmc.c @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/sector.c b/src/input/vcd/libcdio/sector.c --- a/src/input/vcd/libcdio/sector.c +++ b/src/input/vcd/libcdio/sector.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/util.c b/src/input/vcd/libcdio/util.c --- a/src/input/vcd/libcdio/util.c +++ b/src/input/vcd/libcdio/util.c @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libcdio/xa.c b/src/input/vcd/libcdio/xa.c --- a/src/input/vcd/libcdio/xa.c +++ b/src/input/vcd/libcdio/xa.c @@ -20,7 +20,7 @@ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/data_structures.c b/src/input/vcd/libvcd/data_structures.c --- a/src/input/vcd/libvcd/data_structures.c +++ b/src/input/vcd/libvcd/data_structures.c @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/directory.c b/src/input/vcd/libvcd/directory.c --- a/src/input/vcd/libvcd/directory.c +++ b/src/input/vcd/libvcd/directory.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/files.c b/src/input/vcd/libvcd/files.c --- a/src/input/vcd/libvcd/files.c +++ b/src/input/vcd/libvcd/files.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/image.c b/src/input/vcd/libvcd/image.c --- a/src/input/vcd/libvcd/image.c +++ b/src/input/vcd/libvcd/image.c @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/image_bincue.c b/src/input/vcd/libvcd/image_bincue.c --- a/src/input/vcd/libvcd/image_bincue.c +++ b/src/input/vcd/libvcd/image_bincue.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/image_cdrdao.c b/src/input/vcd/libvcd/image_cdrdao.c --- a/src/input/vcd/libvcd/image_cdrdao.c +++ b/src/input/vcd/libvcd/image_cdrdao.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/image_nrg.c b/src/input/vcd/libvcd/image_nrg.c --- a/src/input/vcd/libvcd/image_nrg.c +++ b/src/input/vcd/libvcd/image_nrg.c @@ -22,7 +22,7 @@ CD-image format residing inside a disk file (*.nrg). */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/image_sink.h b/src/input/vcd/libvcd/image_sink.h --- a/src/input/vcd/libvcd/image_sink.h +++ b/src/input/vcd/libvcd/image_sink.h @@ -21,7 +21,7 @@ #ifndef __VCD_IMAGE_SINK_H__ #define __VCD_IMAGE_SINK_H__ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/inf.c b/src/input/vcd/libvcd/inf.c --- a/src/input/vcd/libvcd/inf.c +++ b/src/input/vcd/libvcd/inf.c @@ -25,7 +25,7 @@ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/info_private.c b/src/input/vcd/libvcd/info_private.c --- a/src/input/vcd/libvcd/info_private.c +++ b/src/input/vcd/libvcd/info_private.c @@ -22,7 +22,7 @@ better to use vcdinfo, when possible. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/info_private.h b/src/input/vcd/libvcd/info_private.h --- a/src/input/vcd/libvcd/info_private.h +++ b/src/input/vcd/libvcd/info_private.h @@ -26,7 +26,7 @@ #ifndef _VCD_INFO_PRIVATE_H #define _VCD_INFO_PRIVATE_H -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/logging.c b/src/input/vcd/libvcd/logging.c --- a/src/input/vcd/libvcd/logging.c +++ b/src/input/vcd/libvcd/logging.c @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/mpeg.c b/src/input/vcd/libvcd/mpeg.c --- a/src/input/vcd/libvcd/mpeg.c +++ b/src/input/vcd/libvcd/mpeg.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/mpeg_stream.c b/src/input/vcd/libvcd/mpeg_stream.c --- a/src/input/vcd/libvcd/mpeg_stream.c +++ b/src/input/vcd/libvcd/mpeg_stream.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/pbc.c b/src/input/vcd/libvcd/pbc.c --- a/src/input/vcd/libvcd/pbc.c +++ b/src/input/vcd/libvcd/pbc.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/salloc.c b/src/input/vcd/libvcd/salloc.c --- a/src/input/vcd/libvcd/salloc.c +++ b/src/input/vcd/libvcd/salloc.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/sector.c b/src/input/vcd/libvcd/sector.c --- a/src/input/vcd/libvcd/sector.c +++ b/src/input/vcd/libvcd/sector.c @@ -20,7 +20,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/stream.c b/src/input/vcd/libvcd/stream.c --- a/src/input/vcd/libvcd/stream.c +++ b/src/input/vcd/libvcd/stream.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/stream_stdio.c b/src/input/vcd/libvcd/stream_stdio.c --- a/src/input/vcd/libvcd/stream_stdio.c +++ b/src/input/vcd/libvcd/stream_stdio.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/util.c b/src/input/vcd/libvcd/util.c --- a/src/input/vcd/libvcd/util.c +++ b/src/input/vcd/libvcd/util.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/vcd.c b/src/input/vcd/libvcd/vcd.c --- a/src/input/vcd/libvcd/vcd.c +++ b/src/input/vcd/libvcd/vcd.c @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/libvcd/vcd_read.h b/src/input/vcd/libvcd/vcd_read.h --- a/src/input/vcd/libvcd/vcd_read.h +++ b/src/input/vcd/libvcd/vcd_read.h @@ -18,7 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/input/vcd/vcdio.c b/src/input/vcd/vcdio.c --- a/src/input/vcd/vcdio.c +++ b/src/input/vcd/vcdio.c @@ -19,7 +19,7 @@ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/vcd/vcdplayer.c b/src/input/vcd/vcdplayer.c --- a/src/input/vcd/vcdplayer.c +++ b/src/input/vcd/vcdplayer.c @@ -19,7 +19,7 @@ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/vcd/xine-extra.c b/src/input/vcd/xine-extra.c --- a/src/input/vcd/xine-extra.c +++ b/src/input/vcd/xine-extra.c @@ -20,7 +20,7 @@ reason aren't - yet. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/input/vcd/xineplug_inp_vcd.c b/src/input/vcd/xineplug_inp_vcd.c --- a/src/input/vcd/xineplug_inp_vcd.c +++ b/src/input/vcd/xineplug_inp_vcd.c @@ -32,7 +32,7 @@ modularity. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/libmad/bit.c b/src/libmad/bit.c --- a/src/libmad/bit.c +++ b/src/libmad/bit.c @@ -19,7 +19,7 @@ * $Id: bit.c,v 1.3 2004/04/22 00:22:35 miguelfreitas Exp $ */ -# ifdef HAVE_CONFIG_H +# ifdef HAVE_XINE_CONFIG_H # include "config.h" # endif diff --git a/src/libmad/fixed.c b/src/libmad/fixed.c --- a/src/libmad/fixed.c +++ b/src/libmad/fixed.c @@ -19,7 +19,7 @@ * $Id: fixed.c,v 1.3 2004/04/22 00:22:36 miguelfreitas Exp $ */ -# ifdef HAVE_CONFIG_H +# ifdef HAVE_XINE_CONFIG_H # include "config.h" # endif diff --git a/src/libmad/frame.c b/src/libmad/frame.c --- a/src/libmad/frame.c +++ b/src/libmad/frame.c @@ -19,7 +19,7 @@ * $Id: frame.c,v 1.3 2004/04/22 00:22:36 miguelfreitas Exp $ */ -# ifdef HAVE_CONFIG_H +# ifdef HAVE_XINE_CONFIG_H # include "config.h" # endif diff --git a/src/libmad/huffman.c b/src/libmad/huffman.c --- a/src/libmad/huffman.c +++ b/src/libmad/huffman.c @@ -19,7 +19,7 @@ * $Id: huffman.c,v 1.4 2004/04/22 00:22:36 miguelfreitas Exp $ */ -# ifdef HAVE_CONFIG_H +# ifdef HAVE_XINE_CONFIG_H # include "config.h" # endif diff --git a/src/libmad/layer12.c b/src/libmad/layer12.c --- a/src/libmad/layer12.c +++ b/src/libmad/layer12.c @@ -19,7 +19,7 @@ * $Id: layer12.c,v 1.3 2004/04/22 00:22:41 miguelfreitas Exp $ */ -# ifdef HAVE_CONFIG_H +# ifdef HAVE_XINE_CONFIG_H # include "config.h" # endif diff --git a/src/libmad/layer3.c b/src/libmad/layer3.c --- a/src/libmad/layer3.c +++ b/src/libmad/layer3.c @@ -19,7 +19,7 @@ * $Id: layer3.c,v 1.7 2006/09/26 00:12:20 dgp85 Exp $ */ -# ifdef HAVE_CONFIG_H +# ifdef HAVE_XINE_CONFIG_H # include "config.h" # endif diff --git a/src/libmad/stream.c b/src/libmad/stream.c --- a/src/libmad/stream.c +++ b/src/libmad/stream.c @@ -19,7 +19,7 @@ * $Id: stream.c,v 1.3 2004/04/22 00:23:07 miguelfreitas Exp $ */ -# ifdef HAVE_CONFIG_H +# ifdef HAVE_XINE_CONFIG_H # include "config.h" # endif diff --git a/src/libmad/synth.c b/src/libmad/synth.c --- a/src/libmad/synth.c +++ b/src/libmad/synth.c @@ -19,7 +19,7 @@ * $Id: synth.c,v 1.4 2006/09/26 03:02:20 dgp85 Exp $ */ -# ifdef HAVE_CONFIG_H +# ifdef HAVE_XINE_CONFIG_H # include "config.h" # endif diff --git a/src/libmad/timer.c b/src/libmad/timer.c --- a/src/libmad/timer.c +++ b/src/libmad/timer.c @@ -19,7 +19,7 @@ * $Id: timer.c,v 1.6 2004/04/22 00:23:26 miguelfreitas Exp $ */ -# ifdef HAVE_CONFIG_H +# ifdef HAVE_XINE_CONFIG_H # include "config.h" # endif diff --git a/src/libmad/version.c b/src/libmad/version.c --- a/src/libmad/version.c +++ b/src/libmad/version.c @@ -19,7 +19,7 @@ * $Id: version.c,v 1.2 2004/04/22 00:23:27 miguelfreitas Exp $ */ -# ifdef HAVE_CONFIG_H +# ifdef HAVE_XINE_CONFIG_H # include "config.h" # endif diff --git a/src/libspudec/spu.h b/src/libspudec/spu.h --- a/src/libspudec/spu.h +++ b/src/libspudec/spu.h @@ -25,7 +25,7 @@ #ifndef __SPU_H__ #define __SPU_H__ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include #endif diff --git a/src/libsputext/demux_sputext.c b/src/libsputext/demux_sputext.c --- a/src/libsputext/demux_sputext.c +++ b/src/libsputext/demux_sputext.c @@ -28,7 +28,7 @@ * dunnowhat sub format by szabi */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/libw32dll/qt_decoder.c b/src/libw32dll/qt_decoder.c --- a/src/libw32dll/qt_decoder.c +++ b/src/libw32dll/qt_decoder.c @@ -24,7 +24,7 @@ * rv40 support by Chris Rankin */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/libxineadec/gsm610.c b/src/libxineadec/gsm610.c --- a/src/libxineadec/gsm610.c +++ b/src/libxineadec/gsm610.c @@ -45,7 +45,7 @@ * -------------------------------------------------------------------- */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/libxineadec/nosefart/diff_to_nosefart_cvs.patch b/src/libxineadec/nosefart/diff_to_nosefart_cvs.patch --- a/src/libxineadec/nosefart/diff_to_nosefart_cvs.patch +++ b/src/libxineadec/nosefart/diff_to_nosefart_cvs.patch @@ -1,7 +1,7 @@ diff -u -p -r1.1.1.1 types.h diff -u -p -r1.1.1.1 types.h --- types.h 26 Jul 2004 15:27:59 -0000 1.1.1.1 +++ types.h 26 Aug 2004 16:00:07 -0000 -@@ -23,8 +23,8 @@ +@@ -23,10 +23,10 @@ ** $Id: diff_to_nosefart_cvs.patch,v 1.2 2005/05/07 09:11:39 valtri Exp $ */ @@ -10,8 +10,11 @@ diff -u -p -r1.1.1.1 types.h +#ifndef _NOSEFART_TYPES_H_ +#define _NOSEFART_TYPES_H_ - #ifdef HAVE_CONFIG_H +-#ifdef HAVE_CONFIG_H ++#ifdef HAVE_XINE_CONFIG_H #include "config.h" + #endif + @@ -88,7 +88,7 @@ typedef uint8 boolean; #define ASSERT_MSG(msg) #endif diff --git a/src/libxineadec/nosefart/types.h b/src/libxineadec/nosefart/types.h --- a/src/libxineadec/nosefart/types.h +++ b/src/libxineadec/nosefart/types.h @@ -26,7 +26,7 @@ #ifndef _NOSEFART_TYPES_H_ #define _NOSEFART_TYPES_H_ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/libxineadec/xine_speex_decoder.c b/src/libxineadec/xine_speex_decoder.c --- a/src/libxineadec/xine_speex_decoder.c +++ b/src/libxineadec/xine_speex_decoder.c @@ -20,7 +20,7 @@ * (ogg/)speex audio decoder plugin (libspeex wrapper) for xine */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/libxineadec/xine_vorbis_decoder.c b/src/libxineadec/xine_vorbis_decoder.c --- a/src/libxineadec/xine_vorbis_decoder.c +++ b/src/libxineadec/xine_vorbis_decoder.c @@ -20,7 +20,7 @@ * (ogg/)vorbis audio decoder plugin (libvorbis wrapper) for xine */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/libxinevdec/xine_theora_decoder.c b/src/libxinevdec/xine_theora_decoder.c --- a/src/libxinevdec/xine_theora_decoder.c +++ b/src/libxinevdec/xine_theora_decoder.c @@ -20,7 +20,7 @@ * xine decoder plugin using libtheora */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/post/audio/filter.c b/src/post/audio/filter.c --- a/src/post/audio/filter.c +++ b/src/post/audio/filter.c @@ -10,7 +10,7 @@ /* Design and implementation of different types of digital filters */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif #include diff --git a/src/post/audio/window.c b/src/post/audio/window.c --- a/src/post/audio/window.c +++ b/src/post/audio/window.c @@ -15,7 +15,7 @@ * coefficients will be stored. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif #include diff --git a/src/post/deinterlace/deinterlace.c b/src/post/deinterlace/deinterlace.c --- a/src/post/deinterlace/deinterlace.c +++ b/src/post/deinterlace/deinterlace.c @@ -16,7 +16,7 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/plugins/double.c b/src/post/deinterlace/plugins/double.c --- a/src/post/deinterlace/plugins/double.c +++ b/src/post/deinterlace/plugins/double.c @@ -18,7 +18,7 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/plugins/greedy.c b/src/post/deinterlace/plugins/greedy.c --- a/src/post/deinterlace/plugins/greedy.c +++ b/src/post/deinterlace/plugins/greedy.c @@ -20,7 +20,7 @@ * Boston, MA 02111-1307, USA. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/plugins/greedy2frame.c b/src/post/deinterlace/plugins/greedy2frame.c --- a/src/post/deinterlace/plugins/greedy2frame.c +++ b/src/post/deinterlace/plugins/greedy2frame.c @@ -19,7 +19,7 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/plugins/kdetv_greedyh.c b/src/post/deinterlace/plugins/kdetv_greedyh.c --- a/src/post/deinterlace/plugins/kdetv_greedyh.c +++ b/src/post/deinterlace/plugins/kdetv_greedyh.c @@ -17,7 +17,7 @@ * Boston, MA 02111-1307, USA. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/plugins/kdetv_tomsmocomp.c b/src/post/deinterlace/plugins/kdetv_tomsmocomp.c --- a/src/post/deinterlace/plugins/kdetv_tomsmocomp.c +++ b/src/post/deinterlace/plugins/kdetv_tomsmocomp.c @@ -17,7 +17,7 @@ * Boston, MA 02111-1307, USA. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/plugins/linear.c b/src/post/deinterlace/plugins/linear.c --- a/src/post/deinterlace/plugins/linear.c +++ b/src/post/deinterlace/plugins/linear.c @@ -17,7 +17,7 @@ * Boston, MA 02111-1307, USA. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/plugins/linearblend.c b/src/post/deinterlace/plugins/linearblend.c --- a/src/post/deinterlace/plugins/linearblend.c +++ b/src/post/deinterlace/plugins/linearblend.c @@ -19,7 +19,7 @@ * Boston, MA 02111-1307, USA. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/plugins/scalerbob.c b/src/post/deinterlace/plugins/scalerbob.c --- a/src/post/deinterlace/plugins/scalerbob.c +++ b/src/post/deinterlace/plugins/scalerbob.c @@ -20,7 +20,7 @@ */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/plugins/vfir.c b/src/post/deinterlace/plugins/vfir.c --- a/src/post/deinterlace/plugins/vfir.c +++ b/src/post/deinterlace/plugins/vfir.c @@ -22,7 +22,7 @@ * Boston, MA 02111-1307, USA. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/plugins/weave.c b/src/post/deinterlace/plugins/weave.c --- a/src/post/deinterlace/plugins/weave.c +++ b/src/post/deinterlace/plugins/weave.c @@ -19,7 +19,7 @@ * Boston, MA 02111-1307, USA. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/plugins/x86-64_macros.inc b/src/post/deinterlace/plugins/x86-64_macros.inc --- a/src/post/deinterlace/plugins/x86-64_macros.inc +++ b/src/post/deinterlace/plugins/x86-64_macros.inc @@ -28,7 +28,7 @@ * Original author: Achim Schneider */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/post/deinterlace/pulldown.c b/src/post/deinterlace/pulldown.c --- a/src/post/deinterlace/pulldown.c +++ b/src/post/deinterlace/pulldown.c @@ -16,7 +16,7 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/speedy.c b/src/post/deinterlace/speedy.c --- a/src/post/deinterlace/speedy.c +++ b/src/post/deinterlace/speedy.c @@ -49,7 +49,7 @@ * */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/deinterlace/tvtime.c b/src/post/deinterlace/tvtime.c --- a/src/post/deinterlace/tvtime.c +++ b/src/post/deinterlace/tvtime.c @@ -16,7 +16,7 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/goom/diff_against_release.patch b/src/post/goom/diff_against_release.patch --- a/src/post/goom/diff_against_release.patch +++ b/src/post/goom/diff_against_release.patch @@ -477,7 +477,7 @@ diff -r -u xine-lib-1.1.0-orig/src/post/ #ifndef _MMX_H #define _MMX_H -+#ifdef HAVE_CONFIG_H ++#ifdef HAVE_XINE_CONFIG_H +# include "config.h" +#endif + @@ -542,7 +542,7 @@ diff -u -p -r1.9 goom_config.h --- goom_config.h 21 Nov 2004 15:10:40 -0000 1.9 +++ goom_config.h 8 Apr 2006 15:35:01 -0000 @@ -1,3 +1,7 @@ -+#ifdef HAVE_CONFIG_H ++#ifdef HAVE_XINE_CONFIG_H +#include "config.h" +#endif + diff --git a/src/post/goom/goom_config.h b/src/post/goom/goom_config.h --- a/src/post/goom/goom_config.h +++ b/src/post/goom/goom_config.h @@ -1,4 +1,4 @@ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/post/goom/mmx.h b/src/post/goom/mmx.h --- a/src/post/goom/mmx.h +++ b/src/post/goom/mmx.h @@ -27,7 +27,7 @@ #ifndef _MMX_H #define _MMX_H -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/post/visualizations/visualizations.c b/src/post/visualizations/visualizations.c --- a/src/post/visualizations/visualizations.c +++ b/src/post/visualizations/visualizations.c @@ -20,7 +20,7 @@ * This file contains plugin entries for several visualization post plugins. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_aa.c b/src/video_out/video_out_aa.c --- a/src/video_out/video_out_aa.c +++ b/src/video_out/video_out_aa.c @@ -20,7 +20,7 @@ * video_out_aa.c, ascii-art output plugin for xine */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_caca.c b/src/video_out/video_out_caca.c --- a/src/video_out/video_out_caca.c +++ b/src/video_out/video_out_caca.c @@ -20,7 +20,7 @@ * video_out_caca.c, Color AsCii Art output plugin for xine */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_directfb.c b/src/video_out/video_out_directfb.c --- a/src/video_out/video_out_directfb.c +++ b/src/video_out/video_out_directfb.c @@ -23,7 +23,7 @@ * Based on video_out_xv.c and video_out_vidix.c. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H # include "config.h" #endif diff --git a/src/video_out/video_out_fb.c b/src/video_out/video_out_fb.c --- a/src/video_out/video_out_fb.c +++ b/src/video_out/video_out_fb.c @@ -41,7 +41,7 @@ #define RECOMMENDED_NUM_BUFFERS 5 #define MAXIMUM_NUM_BUFFERS 25 -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_macosx.m b/src/video_out/video_out_macosx.m --- a/src/video_out/video_out_macosx.m +++ b/src/video_out/video_out_macosx.m @@ -21,7 +21,7 @@ * classes located in the macosx folder. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_none.c b/src/video_out/video_out_none.c --- a/src/video_out/video_out_none.c +++ b/src/video_out/video_out_none.c @@ -22,7 +22,7 @@ * ......what changes, impressive! */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_opengl.c b/src/video_out/video_out_opengl.c --- a/src/video_out/video_out_opengl.c +++ b/src/video_out/video_out_opengl.c @@ -35,7 +35,7 @@ #define CYCLE_FACTOR2 5 -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_pgx32.c b/src/video_out/video_out_pgx32.c --- a/src/video_out/video_out_pgx32.c +++ b/src/video_out/video_out_pgx32.c @@ -23,7 +23,7 @@ * Robin Kay */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_pgx64.c b/src/video_out/video_out_pgx64.c --- a/src/video_out/video_out_pgx64.c +++ b/src/video_out/video_out_pgx64.c @@ -25,7 +25,7 @@ * Sun XVR-100 framebuffer graciously donated by Jake Goerzen. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_sdl.c b/src/video_out/video_out_sdl.c --- a/src/video_out/video_out_sdl.c +++ b/src/video_out/video_out_sdl.c @@ -36,7 +36,7 @@ * https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=58408 */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_stk.c b/src/video_out/video_out_stk.c --- a/src/video_out/video_out_stk.c +++ b/src/video_out/video_out_stk.c @@ -40,7 +40,7 @@ * occurs */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_syncfb.c b/src/video_out/video_out_syncfb.c --- a/src/video_out/video_out_syncfb.c +++ b/src/video_out/video_out_syncfb.c @@ -29,7 +29,7 @@ * glued together for xine by Matthias Dahl */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_vidix.c b/src/video_out/video_out_vidix.c --- a/src/video_out/video_out_vidix.c +++ b/src/video_out/video_out_vidix.c @@ -26,7 +26,7 @@ * some vidix specific code from mplayer (file vosub_vidix.c) */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_xcbshm.c b/src/video_out/video_out_xcbshm.c --- a/src/video_out/video_out_xcbshm.c +++ b/src/video_out/video_out_xcbshm.c @@ -27,7 +27,7 @@ * ported to xcb by Christoph Pfister - Feb 2007 */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_xcbxv.c b/src/video_out/video_out_xcbxv.c --- a/src/video_out/video_out_xcbxv.c +++ b/src/video_out/video_out_xcbxv.c @@ -31,7 +31,7 @@ * ported to xcb by Christoph Pfister - Feb 2007 */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_xshm.c b/src/video_out/video_out_xshm.c --- a/src/video_out/video_out_xshm.c +++ b/src/video_out/video_out_xshm.c @@ -25,7 +25,7 @@ * xine-specific code by Guenter Bartsch */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c --- a/src/video_out/video_out_xv.c +++ b/src/video_out/video_out_xv.c @@ -30,7 +30,7 @@ * X11 unscaled overlay support by Miguel Freitas - Nov 2003 */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/video_out_xvmc.c b/src/video_out/video_out_xvmc.c --- a/src/video_out/video_out_xvmc.c +++ b/src/video_out/video_out_xvmc.c @@ -29,7 +29,7 @@ * - support XvMC overlays for spu/osd */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/video_out/xxmc.h b/src/video_out/xxmc.h --- a/src/video_out/xxmc.h +++ b/src/video_out/xxmc.h @@ -37,7 +37,7 @@ #define XVMC_THREAD_SAFE -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/accel_xvmc.h b/src/xine-engine/accel_xvmc.h --- a/src/xine-engine/accel_xvmc.h +++ b/src/xine-engine/accel_xvmc.h @@ -31,7 +31,7 @@ extern "C" { extern "C" { #endif -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c --- a/src/xine-engine/audio_decoder.c +++ b/src/xine-engine/audio_decoder.c @@ -21,7 +21,7 @@ * functions that implement audio decoding */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/audio_out.c b/src/xine-engine/audio_out.c --- a/src/xine-engine/audio_out.c +++ b/src/xine-engine/audio_out.c @@ -60,7 +60,7 @@ /* required for FNDELAY decl */ #define _BSD_SOURCE 1 -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/broadcaster.h b/src/xine-engine/broadcaster.h --- a/src/xine-engine/broadcaster.h +++ b/src/xine-engine/broadcaster.h @@ -27,7 +27,7 @@ extern "C" { extern "C" { #endif -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/buffer.c b/src/xine-engine/buffer.c --- a/src/xine-engine/buffer.c +++ b/src/xine-engine/buffer.c @@ -28,7 +28,7 @@ * FIFO buffer structures/routines */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h --- a/src/xine-engine/buffer.h +++ b/src/xine-engine/buffer.h @@ -35,7 +35,7 @@ extern "C" { extern "C" { #endif -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/buffer_types.c b/src/xine-engine/buffer_types.c --- a/src/xine-engine/buffer_types.c +++ b/src/xine-engine/buffer_types.c @@ -24,7 +24,7 @@ * convert FOURCC and audioformattag to BUF_xxx defines */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c --- a/src/xine-engine/configfile.c +++ b/src/xine-engine/configfile.c @@ -20,7 +20,7 @@ * config object (was: file) management - implementation */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/events.c b/src/xine-engine/events.c --- a/src/xine-engine/events.c +++ b/src/xine-engine/events.c @@ -20,7 +20,7 @@ * Event handling functions */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/info_helper.c b/src/xine-engine/info_helper.c --- a/src/xine-engine/info_helper.c +++ b/src/xine-engine/info_helper.c @@ -21,7 +21,7 @@ * hide some xine engine details from demuxers and reduce code duplication */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/input_cache.c b/src/xine-engine/input_cache.c --- a/src/xine-engine/input_cache.c +++ b/src/xine-engine/input_cache.c @@ -23,7 +23,7 @@ * the number of calls to the real input plugin. */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/input_rip.c b/src/xine-engine/input_rip.c --- a/src/xine-engine/input_rip.c +++ b/src/xine-engine/input_rip.c @@ -35,7 +35,7 @@ * - gui activation (after restarting playback) */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/io_helper.c b/src/xine-engine/io_helper.c --- a/src/xine-engine/io_helper.c +++ b/src/xine-engine/io_helper.c @@ -20,7 +20,7 @@ * abortable i/o helper functions */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.c @@ -21,7 +21,7 @@ * Load input/demux/audio_out/video_out/codec plugins */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/lrb.c b/src/xine-engine/lrb.c --- a/src/xine-engine/lrb.c +++ b/src/xine-engine/lrb.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/metronom.c b/src/xine-engine/metronom.c --- a/src/xine-engine/metronom.c +++ b/src/xine-engine/metronom.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/osd.c b/src/xine-engine/osd.c --- a/src/xine-engine/osd.c +++ b/src/xine-engine/osd.c @@ -22,7 +22,7 @@ #define __OSD_C__ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/refcounter.h b/src/xine-engine/refcounter.h --- a/src/xine-engine/refcounter.h +++ b/src/xine-engine/refcounter.h @@ -20,7 +20,7 @@ #ifndef HAVE_REFCOUNTER_H #define HAVE_REFCOUNTER_H -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/resample.c b/src/xine-engine/resample.c --- a/src/xine-engine/resample.c +++ b/src/xine-engine/resample.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/scratch.c b/src/xine-engine/scratch.c --- a/src/xine-engine/scratch.c +++ b/src/xine-engine/scratch.c @@ -20,7 +20,7 @@ * top-level xine functions */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/tvmode.c b/src/xine-engine/tvmode.c --- a/src/xine-engine/tvmode.c +++ b/src/xine-engine/tvmode.c @@ -24,7 +24,7 @@ * xine support hacked in by Matthias Hopf */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/video_decoder.c b/src/xine-engine/video_decoder.c --- a/src/xine-engine/video_decoder.c +++ b/src/xine-engine/video_decoder.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.c @@ -20,7 +20,7 @@ * frame allocation / queuing / scheduling / output functions */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h --- a/src/xine-engine/video_out.h +++ b/src/xine-engine/video_out.h @@ -36,7 +36,7 @@ extern "C" { extern "C" { #endif -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/vo_scale.h b/src/xine-engine/vo_scale.h --- a/src/xine-engine/vo_scale.h +++ b/src/xine-engine/vo_scale.h @@ -29,7 +29,7 @@ extern "C" { extern "C" { #endif -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.c @@ -22,7 +22,7 @@ * top-level xine functions */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-engine/xine_interface.c b/src/xine-engine/xine_interface.c --- a/src/xine-engine/xine_interface.c +++ b/src/xine-engine/xine_interface.c @@ -21,7 +21,7 @@ * libxine's public interface */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-utils/array.c b/src/xine-utils/array.c --- a/src/xine-utils/array.c +++ b/src/xine-utils/array.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-utils/copy.c b/src/xine-utils/copy.c --- a/src/xine-utils/copy.c +++ b/src/xine-utils/copy.c @@ -21,7 +21,7 @@ * */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-utils/list.c b/src/xine-utils/list.c --- a/src/xine-utils/list.c +++ b/src/xine-utils/list.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-utils/memcpy.c b/src/xine-utils/memcpy.c --- a/src/xine-utils/memcpy.c +++ b/src/xine-utils/memcpy.c @@ -29,7 +29,7 @@ * */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-utils/monitor.c b/src/xine-utils/monitor.c --- a/src/xine-utils/monitor.c +++ b/src/xine-utils/monitor.c @@ -20,7 +20,7 @@ * debug print and profiling functions - implementation */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-utils/pool.c b/src/xine-utils/pool.c --- a/src/xine-utils/pool.c +++ b/src/xine-utils/pool.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-utils/ring_buffer.c b/src/xine-utils/ring_buffer.c --- a/src/xine-utils/ring_buffer.c +++ b/src/xine-utils/ring_buffer.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-utils/sorted_array.c b/src/xine-utils/sorted_array.c --- a/src/xine-utils/sorted_array.c +++ b/src/xine-utils/sorted_array.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-utils/utils.c b/src/xine-utils/utils.c --- a/src/xine-utils/utils.c +++ b/src/xine-utils/utils.c @@ -23,7 +23,7 @@ #define LOG */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-utils/xine_check.c b/src/xine-utils/xine_check.c --- a/src/xine-utils/xine_check.c +++ b/src/xine-utils/xine_check.c @@ -34,7 +34,7 @@ * Author: Stephen Torri */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-utils/xine_mutex.c b/src/xine-utils/xine_mutex.c --- a/src/xine-utils/xine_mutex.c +++ b/src/xine-utils/xine_mutex.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA */ -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/src/xine-utils/xineutils.h b/src/xine-utils/xineutils.h --- a/src/xine-utils/xineutils.h +++ b/src/xine-utils/xineutils.h @@ -24,7 +24,7 @@ extern "C" { extern "C" { #endif -#ifdef HAVE_CONFIG_H +#ifdef HAVE_XINE_CONFIG_H #include "config.h" #endif diff --git a/win32/libdvdnav.dsp b/win32/libdvdnav.dsp --- a/win32/libdvdnav.dsp +++ b/win32/libdvdnav.dsp @@ -45,7 +45,7 @@ LINK32=link.exe # ADD LINK32 /machine:IX86 MTL=midl.exe # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src/xine-utils" /I "../src/input/libdvdcss/src" /I "../src" /D "WIN32" /D "NDEBUG" /D "_LIB" /D "DVDNAV_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src/xine-utils" /I "../src/input/libdvdcss/src" /I "../src" /D "WIN32" /D "NDEBUG" /D "_LIB" /D "DVDNAV_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe @@ -74,7 +74,7 @@ LINK32=link.exe # SUBTRACT LINK32 /pdb:none /nodefaultlib MTL=midl.exe # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src/xine-utils" /I "../src/input/libdvdcss/src" /I "../src" /D "WIN32" /D "_DEBUG" /D "_LIB" /D "DVDNAV_COMPILE" /D "HAVE_CONFIG_H" /FR"Debug/libdvdnav/" /Fp"Debug/libdvdnav/libdvdnav.pch" /YX /Fo"Debug/libdvdnav/" /Fd"Debug/libdvdnav/" /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src/xine-utils" /I "../src/input/libdvdcss/src" /I "../src" /D "WIN32" /D "_DEBUG" /D "_LIB" /D "DVDNAV_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR"Debug/libdvdnav/" /Fp"Debug/libdvdnav/libdvdnav.pch" /YX /Fo"Debug/libdvdnav/" /Fd"Debug/libdvdnav/" /FD /GZ /c # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe diff --git a/win32/libxine.dsp b/win32/libxine.dsp --- a/win32/libxine.dsp +++ b/win32/libxine.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBXINE_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "include" /I "include/msvc" /I "../include" /I "../intl" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBXINE_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /D "__WINE_WINDEF_H" /D "__WINE_WINGDI_H" /D "__WINE_VFW_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "include" /I "include/msvc" /I "../include" /I "../intl" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBXINE_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /D "__WINE_WINDEF_H" /D "__WINE_WINGDI_H" /D "__WINE_VFW_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -76,7 +76,7 @@ PostBuild_Cmds=scripts\post_install.bat # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBXINE_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "include" /I "include/msvc" /I "../include" /I "../intl" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBXINE_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /D "__WINE_WINDEF_H" /D "__WINE_WINGDI_H" /D "__WINE_VFW_H" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "include" /I "include/msvc" /I "../include" /I "../intl" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBXINE_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /D "__WINE_WINDEF_H" /D "__WINE_WINGDI_H" /D "__WINE_VFW_H" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_ao_out_directx.dsp b/win32/xineplug_ao_out_directx.dsp --- a/win32/xineplug_ao_out_directx.dsp +++ b/win32/xineplug_ao_out_directx.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_ao_out_directx2.dsp b/win32/xineplug_ao_out_directx2.dsp --- a/win32/xineplug_ao_out_directx2.dsp +++ b/win32/xineplug_ao_out_directx2.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_ao_out_none.dsp b/win32/xineplug_ao_out_none.dsp --- a/win32/xineplug_ao_out_none.dsp +++ b/win32/xineplug_ao_out_none.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_decode_a52.dsp b/win32/xineplug_decode_a52.dsp --- a/win32/xineplug_decode_a52.dsp +++ b/win32/xineplug_decode_a52.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_A52_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_A52_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_A52_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_A52_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_A52_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_A52_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_decode_dts.dsp b/win32/xineplug_decode_dts.dsp --- a/win32/xineplug_decode_dts.dsp +++ b/win32/xineplug_decode_dts.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_DTS_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_DTS_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_DTS_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_DTS_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_DTS_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_DTS_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_decode_ff.dsp b/win32/xineplug_decode_ff.dsp --- a/win32/xineplug_decode_ff.dsp +++ b/win32/xineplug_decode_ff.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_FF_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src/xine-engine" /I "../src" /I "../src/xine-utils" /I "../../ffmpeg/include/ffmpeg" /I "../../ffmpeg/include/postproc" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "HAVE_CONFIG_H" /D "HAVE_FFMPEG" /D "XINEPLUG_DECODE_FF_EXPORTS" /D "XINE_COMPILE" /D "SIMPLE_IDCT" /D "RUNTIME_CPUDETECT" /D "USE_FASTMEMCPY" /D "CONFIG_RISKY" /D "CONFIG_DECODERS" /D "XINE_MPEG_ENCODER" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src/xine-engine" /I "../src" /I "../src/xine-utils" /I "../../ffmpeg/include/ffmpeg" /I "../../ffmpeg/include/postproc" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "HAVE_XINE_CONFIG_H" /D "HAVE_FFMPEG" /D "XINEPLUG_DECODE_FF_EXPORTS" /D "XINE_COMPILE" /D "SIMPLE_IDCT" /D "RUNTIME_CPUDETECT" /D "USE_FASTMEMCPY" /D "CONFIG_RISKY" /D "CONFIG_DECODERS" /D "XINE_MPEG_ENCODER" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_FF_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src/xine-engine" /I "../src" /I "../src/xine-utils" /I "../../ffmpeg/include/ffmpeg" /I "../../ffmpeg/include/postproc" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "HAVE_CONFIG_H" /D "HAVE_FFMPEG" /D "XINEPLUG_DECODE_FF_EXPORTS" /D "XINE_COMPILE" /D "SIMPLE_IDCT" /D "RUNTIME_CPUDETECT" /D "USE_FASTMEMCPY" /D "CONFIG_RISKY" /D "CONFIG_DECODERS" /D "XINE_MPEG_ENCODER" /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src/xine-engine" /I "../src" /I "../src/xine-utils" /I "../../ffmpeg/include/ffmpeg" /I "../../ffmpeg/include/postproc" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "HAVE_XINE_CONFIG_H" /D "HAVE_FFMPEG" /D "XINEPLUG_DECODE_FF_EXPORTS" /D "XINE_COMPILE" /D "SIMPLE_IDCT" /D "RUNTIME_CPUDETECT" /D "USE_FASTMEMCPY" /D "CONFIG_RISKY" /D "CONFIG_DECODERS" /D "XINE_MPEG_ENCODER" /FD /GZ /c # SUBTRACT CPP /X /YX # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 diff --git a/win32/xineplug_decode_lpcm.dsp b/win32/xineplug_decode_lpcm.dsp --- a/win32/xineplug_decode_lpcm.dsp +++ b/win32/xineplug_decode_lpcm.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_LPCM_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_LPCM_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_LPCM_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_LPCM_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_LPCM_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_LPCM_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_decode_mad.dsp b/win32/xineplug_decode_mad.dsp --- a/win32/xineplug_decode_mad.dsp +++ b/win32/xineplug_decode_mad.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_MAD_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_MAD_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /D "FPM_DEFAULT" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_MAD_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /D "FPM_DEFAULT" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_MAD_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_MAD_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /D "FPM_DEFAULT" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_MAD_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /D "FPM_DEFAULT" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_decode_mpeg2.dsp b/win32/xineplug_decode_mpeg2.dsp --- a/win32/xineplug_decode_mpeg2.dsp +++ b/win32/xineplug_decode_mpeg2.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_MPEG2_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_MPEG2_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_MPEG2_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_MPEG2_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_MPEG2_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_MPEG2_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_decode_real.dsp b/win32/xineplug_decode_real.dsp --- a/win32/xineplug_decode_real.dsp +++ b/win32/xineplug_decode_real.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_REAL_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_REAL_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_REAL_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_REAL_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_REAL_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_REAL_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_decode_spu.dsp b/win32/xineplug_decode_spu.dsp --- a/win32/xineplug_decode_spu.dsp +++ b/win32/xineplug_decode_spu.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPU_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I "../src/input/libdvdnav" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPU_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I "../src/input/libdvdnav" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPU_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPU_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I "../src/input/libdvdnav" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPU_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I "../src/input/libdvdnav" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPU_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_decode_spucc.dsp b/win32/xineplug_decode_spucc.dsp --- a/win32/xineplug_decode_spucc.dsp +++ b/win32/xineplug_decode_spucc.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPUCC_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPUCC_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPUCC_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPUCC_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPUCC_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPUCC_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_decode_sputext.dsp b/win32/xineplug_decode_sputext.dsp --- a/win32/xineplug_decode_sputext.dsp +++ b/win32/xineplug_decode_sputext.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPUTEXT_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPUTEXT_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPUTEXT_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPUTEXT_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPUTEXT_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DECODE_SPUTEXT_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_asf.dsp b/win32/xineplug_dmx_asf.dsp --- a/win32/xineplug_dmx_asf.dsp +++ b/win32/xineplug_dmx_asf.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_ASF_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_CONFIG_H" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_ASF_EXPORTS" /D "XINE_COMPILE" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_XINE_CONFIG_H" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_ASF_EXPORTS" /D "XINE_COMPILE" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_ASF_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_CONFIG_H" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_ASF_EXPORTS" /D "XINE_COMPILE" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_XINE_CONFIG_H" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_ASF_EXPORTS" /D "XINE_COMPILE" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_audio.dsp b/win32/xineplug_dmx_audio.dsp --- a/win32/xineplug_dmx_audio.dsp +++ b/win32/xineplug_dmx_audio.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_AUDIO_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I "../src/libflac" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_AUDIO_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I "../src/libflac" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_AUDIO_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_AUDIO_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I "../src/libflac" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_AUDIO_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I "../src/libflac" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_AUDIO_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_avi.dsp b/win32/xineplug_dmx_avi.dsp --- a/win32/xineplug_dmx_avi.dsp +++ b/win32/xineplug_dmx_avi.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_AVI_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_CONFIG_H" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_AVI_EXPORTS" /D "XINE_COMPILE" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_XINE_CONFIG_H" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_AVI_EXPORTS" /D "XINE_COMPILE" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_AVI_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_CONFIG_H" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_AVI_EXPORTS" /D "XINE_COMPILE" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_XINE_CONFIG_H" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_AVI_EXPORTS" /D "XINE_COMPILE" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_lpcm.dsp b/win32/xineplug_dmx_lpcm.dsp --- a/win32/xineplug_dmx_lpcm.dsp +++ b/win32/xineplug_dmx_lpcm.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_LPCM_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_LPCM_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_LPCM_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_LPCM_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_LPCM_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_LPCM_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_mpeg.dsp b/win32/xineplug_dmx_mpeg.dsp --- a/win32/xineplug_dmx_mpeg.dsp +++ b/win32/xineplug_dmx_mpeg.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_mpeg_block.dsp b/win32/xineplug_dmx_mpeg_block.dsp --- a/win32/xineplug_dmx_mpeg_block.dsp +++ b/win32/xineplug_dmx_mpeg_block.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_BLOCK_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_BLOCK_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_BLOCK_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_BLOCK_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_BLOCK_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_BLOCK_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_mpeg_elem.dsp b/win32/xineplug_dmx_mpeg_elem.dsp --- a/win32/xineplug_dmx_mpeg_elem.dsp +++ b/win32/xineplug_dmx_mpeg_elem.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_ELEM_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_ELEM_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_ELEM_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_ELEM_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_ELEM_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_ELEM_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_mpeg_pes.dsp b/win32/xineplug_dmx_mpeg_pes.dsp --- a/win32/xineplug_dmx_mpeg_pes.dsp +++ b/win32/xineplug_dmx_mpeg_pes.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_PES_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_PES_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_PES_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_PES_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_PES_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_PES_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_mpeg_ts.dsp b/win32/xineplug_dmx_mpeg_ts.dsp --- a/win32/xineplug_dmx_mpeg_ts.dsp +++ b/win32/xineplug_dmx_mpeg_ts.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_TS_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_TS_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_TS_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_TS_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_TS_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_MPEG_TS_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_nsv.dsp b/win32/xineplug_dmx_nsv.dsp --- a/win32/xineplug_dmx_nsv.dsp +++ b/win32/xineplug_dmx_nsv.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_NSV_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_NSV_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_NSV_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_NSV_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_NSV_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_NSV_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_pva.dsp b/win32/xineplug_dmx_pva.dsp --- a/win32/xineplug_dmx_pva.dsp +++ b/win32/xineplug_dmx_pva.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_PVA_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_PVA_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_PVA_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_PVA_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_PVA_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_PVA_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_real.dsp b/win32/xineplug_dmx_real.dsp --- a/win32/xineplug_dmx_real.dsp +++ b/win32/xineplug_dmx_real.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_REAL_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_REAL_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_REAL_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_REAL_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_REAL_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_REAL_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_slave.dsp b/win32/xineplug_dmx_slave.dsp --- a/win32/xineplug_dmx_slave.dsp +++ b/win32/xineplug_dmx_slave.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_SLAVE_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_SLAVE_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_SLAVE_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_SLAVE_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_SLAVE_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_SLAVE_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_sputext.dsp b/win32/xineplug_dmx_sputext.dsp --- a/win32/xineplug_dmx_sputext.dsp +++ b/win32/xineplug_dmx_sputext.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_SPUTEXT_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_SPUTEXT_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_SPUTEXT_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_SPUTEXT_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_SPUTEXT_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_SPUTEXT_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_yuv4mpeg2.dsp b/win32/xineplug_dmx_yuv4mpeg2.dsp --- a/win32/xineplug_dmx_yuv4mpeg2.dsp +++ b/win32/xineplug_dmx_yuv4mpeg2.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_YUV4MPEG2_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_YUV4MPEG2_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_YUV4MPEG2_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_YUV4MPEG2_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_YUV4MPEG2_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_YUV4MPEG2_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_dmx_yuv_frames.dsp b/win32/xineplug_dmx_yuv_frames.dsp --- a/win32/xineplug_dmx_yuv_frames.dsp +++ b/win32/xineplug_dmx_yuv_frames.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_YUV_FRAMES_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_YUV_FRAMES_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_YUV_FRAMES_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_YUV_FRAMES_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_YUV_FRAMES_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_DMX_YUV_FRAMES_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_inp_cdda.dsp b/win32/xineplug_inp_cdda.dsp --- a/win32/xineplug_inp_cdda.dsp +++ b/win32/xineplug_inp_cdda.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_CDDA_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_CDDA_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_CDDA_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_CDDA_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_CDDA_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_CDDA_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_inp_dvd.dsp b/win32/xineplug_inp_dvd.dsp --- a/win32/xineplug_inp_dvd.dsp +++ b/win32/xineplug_inp_dvd.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_DVD_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I "../src/input/libdvdnav" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_DVD_EXPORTS." /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I "../src/input/libdvdnav" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_DVD_EXPORTS." /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -72,7 +72,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_DVD_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I "../src/input/libdvdnav" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_DVD_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /I "../src/input/libdvdnav" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_DVD_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_inp_file.dsp b/win32/xineplug_inp_file.dsp --- a/win32/xineplug_inp_file.dsp +++ b/win32/xineplug_inp_file.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_FILE_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_FILE_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_FILE_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_FILE_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_FILE_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_FILE_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_inp_http.dsp b/win32/xineplug_inp_http.dsp --- a/win32/xineplug_inp_http.dsp +++ b/win32/xineplug_inp_http.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_HTTP_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_HTTP_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_HTTP_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_HTTP_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_HTTP_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_HTTP_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_inp_mms.dsp b/win32/xineplug_inp_mms.dsp --- a/win32/xineplug_inp_mms.dsp +++ b/win32/xineplug_inp_mms.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_MMS_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_CONFIG_H" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_MMS_EXPORTS" /D "XINE_COMPILE" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_XINE_CONFIG_H" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_MMS_EXPORTS" /D "XINE_COMPILE" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_MMS_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_CONFIG_H" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_MMS_EXPORTS" /D "XINE_COMPILE" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_XINE_CONFIG_H" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_MMS_EXPORTS" /D "XINE_COMPILE" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_inp_net.dsp b/win32/xineplug_inp_net.dsp --- a/win32/xineplug_inp_net.dsp +++ b/win32/xineplug_inp_net.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_NET_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_CONFIG_H" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_NET_EXPORTS" /D "XINE_COMPILE" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_XINE_CONFIG_H" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_NET_EXPORTS" /D "XINE_COMPILE" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_NET_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_CONFIG_H" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_NET_EXPORTS" /D "XINE_COMPILE" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "HAVE_XINE_CONFIG_H" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_INP_NET_EXPORTS" /D "XINE_COMPILE" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_vo_out_directx.dsp b/win32/xineplug_vo_out_directx.dsp --- a/win32/xineplug_vo_out_directx.dsp +++ b/win32/xineplug_vo_out_directx.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_VO_OUT_DIRECTX_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_VO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_VO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_VO_OUT_DIRECTX_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_VO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_VO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_vo_out_none.dsp b/win32/xineplug_vo_out_none.dsp --- a/win32/xineplug_vo_out_none.dsp +++ b/win32/xineplug_vo_out_none.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_AO_OUT_DIRECTX_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" diff --git a/win32/xineplug_vo_out_sdl.dsp b/win32/xineplug_vo_out_sdl.dsp --- a/win32/xineplug_vo_out_sdl.dsp +++ b/win32/xineplug_vo_out_sdl.dsp @@ -71,7 +71,7 @@ LINK32=link.exe # PROP Target_Dir "" LIB32=link.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_VO_OUT_SDL_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_VO_OUT_SDL_EXPORTS" /D "XINE_COMPILE" /D "HAVE_CONFIG_H" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "../lib" /I "../include" /I "include" /I "include/msvc" /I "../src" /I "../src/xine-engine" /I "../src/xine-utils" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "XINEPLUG_VO_OUT_SDL_EXPORTS" /D "XINE_COMPILE" /D "HAVE_XINE_CONFIG_H" /FR /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG"