|
From: <sl...@ke...> - 2010-08-04 17:34:31
|
Module: gst-plugins-base Branch: master Commit: e8c897758236941e8f3e1fd100cf82584b2831f9 URL: http://cgit.freedesktop.org/gstreamer/gst-plugins-base/commit/?id=e8c897758236941e8f3e1fd100cf82584b2831f9 Author: Sebastian Dröge <seb...@co...> Date: Wed Aug 4 19:24:29 2010 +0200 configure: Check if the compiler supports ISO C89 or C99 and which parameters are required This first checks what is required for ISO C99 support and sets the relevant compiler parameters and if no C99 compiler is found, it checks for a C89 compiler. This enables us to check for and use C89/C99 functions that gcc hides from us without the correct compiler parameters. --- configure.ac | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index 27cbea2..38141a6 100644 --- a/configure.ac +++ b/configure.ac @@ -132,6 +132,7 @@ dnl *** checks for programs *** dnl find a compiler AC_PROG_CC +AC_PROG_CC_STDC AC_PROG_CXX dnl determine if c++ is available on this system |