]> git.sesse.net Git - vlc/commitdiff
Remove legacy alloca checks
authorRémi Denis-Courmont <remi@remlab.net>
Sun, 27 Sep 2009 11:22:33 +0000 (14:22 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sun, 27 Sep 2009 11:22:33 +0000 (14:22 +0300)
configure.ac
modules/audio_output/oss.c
modules/gui/qnx/aout.c
src/audio_output/dec.c
src/audio_output/filters.c
src/audio_output/mixer.c

index 04ed3199df27f820dab3086d00a41cdf652d807c..31bf3d250c3f95a8714805d35c90781e07149d9d 100644 (file)
@@ -572,7 +572,6 @@ need_libc=false
 
 dnl Check for usual libc functions
 AC_CHECK_FUNCS([gettimeofday isatty sigrelse getpwuid_r memalign posix_memalign if_nametoindex getenv putenv setenv ctime_r daemon fork lstat posix_fadvise posix_madvise uselocale])
-AC_FUNC_ALLOCA
 AC_CHECK_FUNCS(fcntl)
 AC_REPLACE_FUNCS([asprintf atof atoll getcwd getpid gmtime_r lldiv localtime_r rewind strcasecmp strcasestr strdup strlcpy strncasecmp strndup strnlen strsep strtof strtoll vasprintf swab])
 AC_CHECK_FUNCS([stricmp strnicmp])
index cfd610f71f08b767c6d107855fbb32304a2c51ab..a5659eb1fda4e8e7a335e073665759cbc8369010 100644 (file)
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 
-#ifdef HAVE_ALLOCA_H
-#   include <alloca.h>
-#endif
-
 #include <vlc_aout.h>
 
 /* SNDCTL_DSP_RESET, SNDCTL_DSP_SETFMT, SNDCTL_DSP_STEREO, SNDCTL_DSP_SPEED,
index 8b95085fd276a97f61f6ce74d1331e2cee143dba..10e06d9f15aa53b5b8d5d41265fa97aec0d32a1c 100644 (file)
 
 #include <vlc_common.h>
 
-#ifdef HAVE_ALLOCA_H
-#   include <alloca.h>
-#endif
-
 #include <vlc_aout.h>
 
 #include <sys/asoundlib.h>
index 3b15d0e57b829b78803715ac851a535dc01c4b72..823cce058fefe68b38533fd55ffd4bd2f92fa79a 100644 (file)
 
 #include <vlc_common.h>
 
-#ifdef HAVE_ALLOCA_H
-#   include <alloca.h>
-#endif
-
 #include <vlc_aout.h>
 #include <vlc_input.h>
 
index 5a0fa4f728d8003ad900e7f2a6a7527b53797dda..7553c145f46453cbc63bc4802e41b1cf853aee39 100644 (file)
 #include <vlc_common.h>
 #include <vlc_dialog.h>
 
-#ifdef HAVE_ALLOCA_H
-#   include <alloca.h>
-#endif
-
 #include <vlc_aout.h>
 #include "aout_internal.h"
 #include <libvlc.h>
index 9392d132e5e53fbac707259ab9e17fdb7dc74e8e..502833e30c09dc7f1843f7d961ff48eea6bc3499 100644 (file)
@@ -33,9 +33,6 @@
 #include <vlc_common.h>
 #include <libvlc.h>
 
-#ifdef HAVE_ALLOCA_H
-#   include <alloca.h>
-#endif
 #include <vlc_aout.h>
 #include "aout_internal.h"
 /*****************************************************************************