vlc | branch: master | Natanael Copa <[email protected]> | Thu Mar 22 09:00:08 2012 +0000| [2859c5db3a74c5155e1715614570e9cb38d0ef82] | committer: Rafaël Carré
configure.ac: properly detect vasprintf According POSIX the va_list is defined in stdarg.h http://pubs.opengroup.org/onlinepubs/009695399/basedefs/stdarg.h.html On some systems (like uClibc) the detection of vasprintf will fail unless stdarg.h is included and build will later fail due to a vasprintf redeclaration. Signed-off-by: Natanael Copa <[email protected]> Signed-off-by: Rafaël Carré <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2859c5db3a74c5155e1715614570e9cb38d0ef82 --- configure.ac | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 4c16c28..8fa7157 100644 --- a/configure.ac +++ b/configure.ac @@ -504,7 +504,8 @@ AC_LINK_IFELSE([ c = NULL; ])],[AC_DEFINE([HAVE_ASPRINTF],[1],[Define to 1 if you have asprintf function])],[AC_LIBOBJ([asprintf])]) AC_LINK_IFELSE([ - AC_LANG_PROGRAM([#include <stdio.h>], [ + AC_LANG_PROGRAM([#include <stdio.h> + #include <stdarg.h>], [ char *c; va_list ap; if (vasprintf(&c, "%s %d", ap) == -1) _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
