maemo-ui-old/m4/as-compiler-flag.m4
author melunko
Wed Aug 01 14:50:29 2007 +0100 (2007-08-01)
branchtrunk
changeset 790 7a914b3fafc1
parent 23 maemo-ui/m4/as-compiler-flag.m4@915ef81992c0
permissions -rw-r--r--
[svn r796] Moved maemo-ui to maemo-ui-old
     1 dnl as-compiler-flag.m4 0.1.0
     2 
     3 dnl autostars m4 macro for detection of compiler flags
     4 
     5 dnl David Schleef <ds@schleef.org>
     6 
     7 dnl $Id: as-compiler-flag.m4,v 1.1.1.1 2005/08/26 00:42:44 andrunko Exp $
     8 
     9 dnl AS_COMPILER_FLAG(CFLAGS, ACTION-IF-ACCEPTED, [ACTION-IF-NOT-ACCEPTED])
    10 dnl Tries to compile with the given CFLAGS.
    11 dnl Runs ACTION-IF-ACCEPTED if the compiler can compile with the flags,
    12 dnl and ACTION-IF-NOT-ACCEPTED otherwise.
    13 
    14 AC_DEFUN([AS_COMPILER_FLAG],
    15 [
    16   AC_MSG_CHECKING([to see if compiler understands $1])
    17 
    18   save_CFLAGS="$CFLAGS"
    19   CFLAGS="$CFLAGS $1"
    20 
    21   AC_TRY_COMPILE([ ], [], [flag_ok=yes], [flag_ok=no])
    22   CFLAGS="$save_CFLAGS"
    23 
    24   if test "X$flag_ok" = Xyes ; then
    25     $2
    26     true
    27   else
    28     $3
    29     true
    30   fi
    31   AC_MSG_RESULT([$flag_ok])
    32 ])
    33