Changeset f66626b34809a4881a52582ae755586e885270c6

Show
Ignore:
Timestamp:
24/06/08 09:43:12 (4 months ago)
Author:
Antoine Cellerier <dionoea@videolan.org>
git-committer:
Antoine Cellerier <dionoea@videolan.org> 1214293392 +0200
git-parent:

[3af6cdb2886dbae6203dce54e8a292dd112af921]

git-author:
Yohann Martineau <yohann.martineau@gmail.com> 1214259547 +0200
Message:

fixed compilation on debian etch.

config.h is now included first, before any other header.

Signed-off-by: Antoine Cellerier <dionoea@videolan.org>

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/access_output/file.c

    rce5d663 rf66626b  
    2626 * Preamble 
    2727 *****************************************************************************/ 
     28 
     29#ifdef HAVE_CONFIG_H 
     30# include "config.h" 
     31#endif 
     32 
    2833#include <sys/types.h> 
    2934#include <sys/stat.h> 
     
    3136#include <fcntl.h> 
    3237#include <errno.h> 
    33  
    34 #ifdef HAVE_CONFIG_H 
    35 # include "config.h" 
    36 #endif 
    3738 
    3839#include <vlc_common.h> 
  • modules/audio_filter/channel_mixer/headphone.c

    rb674dab rf66626b  
    2626 * Preamble 
    2727 *****************************************************************************/ 
    28 #include <math.h>                                        /* sqrt */ 
    2928 
    3029#ifdef HAVE_CONFIG_H 
    3130# include "config.h" 
    3231#endif 
     32 
     33#include <math.h>                                        /* sqrt */ 
    3334 
    3435#include <vlc_common.h> 
  • modules/audio_filter/channel_mixer/mono.c

    rb674dab rf66626b  
    2525 * Preamble 
    2626 *****************************************************************************/ 
     27#ifdef HAVE_CONFIG_H 
     28# include "config.h" 
     29#endif 
     30 
    2731#include <math.h>                                        /* sqrt */ 
    2832 
     
    3539#ifdef HAVE_UNISTD_H 
    3640#   include <unistd.h> 
    37 #endif 
    38  
    39 #ifdef HAVE_CONFIG_H 
    40 # include "config.h" 
    4141#endif 
    4242 
  • modules/audio_filter/equalizer.c

    r3561b9b rf66626b  
    2525 * Preamble 
    2626 *****************************************************************************/ 
    27 #include <math.h> 
    2827 
    2928#ifdef HAVE_CONFIG_H 
    3029# include "config.h" 
    3130#endif 
     31 
     32#include <math.h> 
    3233 
    3334#include <vlc_common.h> 
  • modules/audio_filter/normvol.c

    r3561b9b rf66626b  
    3333 *****************************************************************************/ 
    3434 
     35#ifdef HAVE_CONFIG_H 
     36# include "config.h" 
     37#endif 
     38 
    3539#include <errno.h>                                                 /* ENOMEM */ 
    3640#include <ctype.h> 
     
    3943#include <math.h> 
    4044 
    41  
    42 #ifdef HAVE_CONFIG_H 
    43 # include "config.h" 
    44 #endif 
    4545 
    4646#include <vlc_common.h> 
  • modules/audio_filter/param_eq.c

    r3561b9b rf66626b  
    2626 * Preamble 
    2727 *****************************************************************************/ 
    28 #include <math.h> 
    2928 
    3029#ifdef HAVE_CONFIG_H 
    3130# include "config.h" 
    3231#endif 
     32 
     33#include <math.h> 
    3334 
    3435#include <vlc_common.h> 
  • modules/audio_output/file.c

    r37a2578 rf66626b  
    2626 * Preamble 
    2727 *****************************************************************************/ 
    28 #include <errno.h> 
    2928 
    3029#ifdef HAVE_CONFIG_H 
    3130# include "config.h" 
    3231#endif 
     32 
     33#include <errno.h> 
    3334 
    3435#include <vlc_common.h> 
  • modules/audio_output/oss.c

    r37a2578 rf66626b  
    2727 * Preamble 
    2828 *****************************************************************************/ 
     29 
     30#ifdef HAVE_CONFIG_H 
     31# include "config.h" 
     32#endif 
     33 
    2934#include <errno.h>                                                 /* ENOMEM */ 
    3035#include <fcntl.h>                                       /* open(), O_WRONLY */ 
    3136#include <sys/ioctl.h>                                            /* ioctl() */ 
    3237#include <unistd.h>                                      /* write(), close() */ 
    33  
    34 #ifdef HAVE_CONFIG_H 
    35 # include "config.h" 
    36 #endif 
    3738 
    3839#include <vlc_common.h> 
  • modules/control/motion.c

    r3561b9b rf66626b  
    2626 * Preamble 
    2727 *****************************************************************************/ 
    28 #include <math.h> 
    2928 
    3029#ifdef HAVE_CONFIG_H 
    3130# include "config.h" 
    3231#endif 
     32 
     33#include <math.h> 
    3334 
    3435#include <vlc_common.h> 
  • modules/demux/demuxdump.c

    r3561b9b rf66626b  
    2525 * Preamble 
    2626 *****************************************************************************/ 
    27 #include <errno.h> 
    2827 
    2928#ifdef HAVE_CONFIG_H 
    3029# include "config.h" 
    3130#endif 
     31 
     32#include <errno.h> 
    3233 
    3334#include <vlc_common.h> 
  • modules/demux/mp4/drms.c

    r3561b9b rf66626b  
    2323 *****************************************************************************/ 
    2424 
    25  
    26 #ifdef WIN32 
    27 #   include <io.h> 
    28 #else 
    29 #   include <stdio.h> 
    30 #endif 
    31  
    3225#ifdef __LIBVLC__ 
    3326#ifdef HAVE_CONFIG_H 
     
    4134#else 
    4235#   include "drmsvl.h" 
     36#endif 
     37 
     38#ifdef WIN32 
     39#   include <io.h> 
     40#else 
     41#   include <stdio.h> 
    4342#endif 
    4443 
  • modules/mux/mpeg/pes.c

    r3561b9b rf66626b  
    2626 * Preamble 
    2727 *****************************************************************************/ 
     28 
     29#ifdef HAVE_CONFIG_H 
     30# include "config.h" 
     31#endif 
     32 
    2833#include <sys/types.h> 
    2934#include <sys/stat.h> 
    3035#include <errno.h> 
    3136#include <fcntl.h> 
    32  
    33 #ifdef HAVE_CONFIG_H 
    34 # include "config.h" 
    35 #endif 
    3637 
    3738#include <vlc_common.h> 
  • modules/stream_out/mosaic_bridge.c

    rc0b61e8 rf66626b  
    2626 * Preamble 
    2727 *****************************************************************************/ 
    28 #include <errno.h>                                                 /* ENOMEM */ 
    2928 
    3029#ifdef HAVE_CONFIG_H 
    3130# include "config.h" 
    3231#endif 
     32 
     33#include <errno.h>                                                 /* ENOMEM */ 
    3334 
    3435#include <vlc_common.h> 
  • modules/video_chroma/i420_rgb.c

    r218efb9 rf66626b  
    2626 * Preamble 
    2727 *****************************************************************************/ 
    28 #include <math.h>                                            /* exp(), pow() */ 
    2928 
    3029#ifdef HAVE_CONFIG_H 
    3130# include "config.h" 
    3231#endif 
     32 
     33#include <math.h>                                            /* exp(), pow() */ 
    3334 
    3435#include <vlc_common.h> 
  • modules/video_chroma/i420_ymga.c

    r218efb9 rf66626b  
    2525 * Preamble 
    2626 *****************************************************************************/ 
    27 #include <errno.h>                                                 /* ENOMEM */ 
    2827 
    2928#ifdef HAVE_CONFIG_H 
    3029# include "config.h" 
    3130#endif 
     31 
     32#include <errno.h>                                                 /* ENOMEM */ 
    3233 
    3334#include <vlc_common.h> 
  • modules/video_filter/adjust.c

    r42bb236 rf66626b  
    2626 * Preamble 
    2727 *****************************************************************************/ 
    28 #include <errno.h> 
    29 #include <math.h> 
    3028 
    3129#ifdef HAVE_CONFIG_H 
    3230# include "config.h" 
    3331#endif 
     32 
     33#include <errno.h> 
     34#include <math.h> 
    3435 
    3536#include <vlc_common.h> 
  • modules/video_filter/colorthres.c

    r42bb236 rf66626b  
    2525 * Preamble 
    2626 *****************************************************************************/ 
    27 #include <errno.h> 
    28 #include <math.h> 
    2927 
    3028#ifdef HAVE_CONFIG_H 
    3129# include "config.h" 
    3230#endif 
     31 
     32#include <errno.h> 
     33#include <math.h> 
    3334 
    3435#include <vlc_common.h> 
  • modules/video_filter/deinterlace.c

    r42bb236 rf66626b  
    2525 * Preamble 
    2626 *****************************************************************************/ 
    27 #include <errno.h> 
    2827 
    2928#ifdef HAVE_CONFIG_H 
    3029# include "config.h" 
    3130#endif 
     31 
     32#include <errno.h> 
    3233 
    3334#ifdef HAVE_ALTIVEC_H 
  • modules/video_filter/gradient.c

    r42bb236 rf66626b  
    2727 *****************************************************************************/ 
    2828 
    29 #include <math.h>                                            /* sin(), cos() */ 
    30  
    3129#ifdef HAVE_CONFIG_H 
    3230# include "config.h" 
    3331#endif 
     32 
     33#include <math.h>                                            /* sin(), cos() */ 
    3434 
    3535#include <vlc_common.h> 
  • modules/video_filter/psychedelic.c

    r42bb236 rf66626b  
    2727 *****************************************************************************/ 
    2828 
    29 #include <math.h>                                            /* sin(), cos() */ 
    30  
    3129#ifdef HAVE_CONFIG_H 
    3230# include "config.h" 
    3331#endif 
     32 
     33#include <math.h>                                            /* sin(), cos() */ 
    3434 
    3535#include <vlc_common.h> 
  • modules/video_filter/ripple.c

    r42bb236 rf66626b  
    2727 *****************************************************************************/ 
    2828 
    29 #include <math.h>                                            /* sin(), cos() */ 
    30  
    3129#ifdef HAVE_CONFIG_H 
    3230# include "config.h" 
    3331#endif 
     32 
     33#include <math.h>                                            /* sin(), cos() */ 
    3434 
    3535#include <vlc_common.h> 
  • modules/video_filter/rotate.c

    r42bb236 rf66626b  
    2626 *****************************************************************************/ 
    2727 
    28 #include <math.h>                                            /* sin(), cos() */ 
    29  
    3028#ifdef HAVE_CONFIG_H 
    3129# include "config.h" 
    3230#endif 
     31 
     32#include <math.h>                                            /* sin(), cos() */ 
    3333 
    3434#include <vlc_common.h> 
  • modules/video_filter/wave.c

    r42bb236 rf66626b  
    2727 *****************************************************************************/ 
    2828 
    29 #include <math.h>                                            /* sin(), cos() */ 
    30  
    3129#ifdef HAVE_CONFIG_H 
    3230# include "config.h" 
    3331#endif 
     32 
     33#include <math.h>                                            /* sin(), cos() */ 
    3434 
    3535#include <vlc_common.h> 
  • modules/video_output/fb.c

    r5da255d rf66626b  
    2626 * Preamble 
    2727 *****************************************************************************/ 
     28 
     29#ifdef HAVE_CONFIG_H 
     30# include "config.h" 
     31#endif 
     32 
    2833#include <errno.h>                                                 /* ENOMEM */ 
    2934#include <signal.h>                                      /* SIGUSR1, SIGUSR2 */ 
     
    3843#include <linux/vt.h>                                                /* VT_* */ 
    3944#include <linux/kd.h>                                                 /* KD* */ 
    40  
    41 #ifdef HAVE_CONFIG_H 
    42 # include "config.h" 
    43 #endif 
    4445 
    4546#include <vlc_common.h> 
  • modules/video_output/opengl.c

    r3561b9b rf66626b  
    2828 * Preamble 
    2929 *****************************************************************************/ 
    30 #include <errno.h>                                                 /* ENOMEM */ 
    3130 
    3231#ifdef HAVE_CONFIG_H 
    3332# include "config.h" 
    3433#endif 
     34 
     35#include <errno.h>                                                 /* ENOMEM */ 
    3536 
    3637#include <vlc_common.h> 
  • modules/video_output/x11/glx.c

    r3561b9b rf66626b  
    2626 * Preamble 
    2727 *****************************************************************************/ 
    28 #include <errno.h>                                                 /* ENOMEM */ 
    2928 
    3029#ifdef HAVE_CONFIG_H 
    3130# include "config.h" 
    3231#endif 
     32 
     33#include <errno.h>                                                 /* ENOMEM */ 
    3334 
    3435#include <vlc_common.h> 
  • src/misc/filter_chain.c

    rf7b2327 rf66626b  
    2121 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 
    2222 *****************************************************************************/ 
     23 
     24#ifdef HAVE_CONFIG_H 
     25# include "config.h" 
     26#endif 
    2327 
    2428#include <vlc_filter.h> 
  • src/misc/image.c

    r57c3ecd rf66626b  
    3030 * Preamble 
    3131 *****************************************************************************/ 
    32 #include <ctype.h> 
    33 #include <errno.h> 
     32 
    3433#ifdef HAVE_CONFIG_H 
    3534# include "config.h" 
    3635#endif 
     36 
     37#include <ctype.h> 
     38#include <errno.h> 
    3739 
    3840#include <vlc_common.h> 
  • src/misc/md5.c

    rd666030 rf66626b  
    2323 *****************************************************************************/ 
    2424 
    25 #include <string.h> 
    2625#ifdef HAVE_CONFIG_H 
    2726# include "config.h" 
    2827#endif 
     28 
     29#include <string.h> 
    2930 
    3031#include <vlc_common.h> 
  • src/text/iso_lang.c

    rd666030 rf66626b  
    2626 * Preamble 
    2727 *****************************************************************************/ 
    28 #include <stdio.h> 
    2928 
    3029#ifdef HAVE_CONFIG_H 
    3130# include "config.h" 
    3231#endif 
     32 
     33#include <stdio.h> 
    3334 
    3435#include <vlc_common.h>