gst-gmyth/m4/as-compiler-flag.m4
author renatofilho
Tue May 01 16:36:58 2007 +0100 (2007-05-01)
branchtrunk
changeset 610 3cdc32e43041
permissions -rwxr-xr-x
[svn r616] added m4 macros
renatofilho@610
     1
dnl as-compiler-flag.m4 0.1.0
renatofilho@610
     2
renatofilho@610
     3
dnl autostars m4 macro for detection of compiler flags
renatofilho@610
     4
renatofilho@610
     5
dnl David Schleef <ds@schleef.org>
renatofilho@610
     6
renatofilho@610
     7
dnl $Id: as-compiler-flag.m4,v 1.1 2005/06/18 18:02:46 burgerman Exp $
renatofilho@610
     8
renatofilho@610
     9
dnl AS_COMPILER_FLAG(CFLAGS, ACTION-IF-ACCEPTED, [ACTION-IF-NOT-ACCEPTED])
renatofilho@610
    10
dnl Tries to compile with the given CFLAGS.
renatofilho@610
    11
dnl Runs ACTION-IF-ACCEPTED if the compiler can compile with the flags,
renatofilho@610
    12
dnl and ACTION-IF-NOT-ACCEPTED otherwise.
renatofilho@610
    13
renatofilho@610
    14
AC_DEFUN([AS_COMPILER_FLAG],
renatofilho@610
    15
[
renatofilho@610
    16
  AC_MSG_CHECKING([to see if compiler understands $1])
renatofilho@610
    17
renatofilho@610
    18
  save_CFLAGS="$CFLAGS"
renatofilho@610
    19
  CFLAGS="$CFLAGS $1"
renatofilho@610
    20
renatofilho@610
    21
  AC_TRY_COMPILE([ ], [], [flag_ok=yes], [flag_ok=no])
renatofilho@610
    22
  CFLAGS="$save_CFLAGS"
renatofilho@610
    23
renatofilho@610
    24
  if test "X$flag_ok" = Xyes ; then
renatofilho@610
    25
    $2
renatofilho@610
    26
    true
renatofilho@610
    27
  else
renatofilho@610
    28
    $3
renatofilho@610
    29
    true
renatofilho@610
    30
  fi
renatofilho@610
    31
  AC_MSG_RESULT([$flag_ok])
renatofilho@610
    32
])