gmyth-stream/gmencoder/m4/as-compiler-flag.m4
author renatofilho
Fri Feb 15 13:52:23 2008 +0000 (2008-02-15)
branchtrunk
changeset 915 e612ba1d16ab
parent 584 170e18a7ca71
permissions -rwxr-xr-x
[svn r924] created method gmyth_upnp_get_devices
renatofilho@584
     1
dnl as-compiler-flag.m4 0.1.0
renatofilho@584
     2
renatofilho@584
     3
dnl autostars m4 macro for detection of compiler flags
renatofilho@584
     4
renatofilho@584
     5
dnl David Schleef <ds@schleef.org>
renatofilho@584
     6
renatofilho@584
     7
dnl $Id: as-compiler-flag.m4,v 1.1 2005/06/18 18:02:46 burgerman Exp $
renatofilho@584
     8
renatofilho@584
     9
dnl AS_COMPILER_FLAG(CFLAGS, ACTION-IF-ACCEPTED, [ACTION-IF-NOT-ACCEPTED])
renatofilho@584
    10
dnl Tries to compile with the given CFLAGS.
renatofilho@584
    11
dnl Runs ACTION-IF-ACCEPTED if the compiler can compile with the flags,
renatofilho@584
    12
dnl and ACTION-IF-NOT-ACCEPTED otherwise.
renatofilho@584
    13
renatofilho@584
    14
AC_DEFUN([AS_COMPILER_FLAG],
renatofilho@584
    15
[
renatofilho@584
    16
  AC_MSG_CHECKING([to see if compiler understands $1])
renatofilho@584
    17
renatofilho@584
    18
  save_CFLAGS="$CFLAGS"
renatofilho@584
    19
  CFLAGS="$CFLAGS $1"
renatofilho@584
    20
renatofilho@584
    21
  AC_TRY_COMPILE([ ], [], [flag_ok=yes], [flag_ok=no])
renatofilho@584
    22
  CFLAGS="$save_CFLAGS"
renatofilho@584
    23
renatofilho@584
    24
  if test "X$flag_ok" = Xyes ; then
renatofilho@584
    25
    $2
renatofilho@584
    26
    true
renatofilho@584
    27
  else
renatofilho@584
    28
    $3
renatofilho@584
    29
    true
renatofilho@584
    30
  fi
renatofilho@584
    31
  AC_MSG_RESULT([$flag_ok])
renatofilho@584
    32
])