Updated Norwegian bokmål translation.
[empathy-mirror.git] / m4 / as-compiler-flag.m4
blob605708a5a2e7504162002767cc91f2df850a3750
1 dnl as-compiler-flag.m4 0.1.0
3 dnl autostars m4 macro for detection of compiler flags
5 dnl David Schleef <ds@schleef.org>
7 dnl $Id: as-compiler-flag.m4,v 1.1 2005/06/18 18:02:46 burgerman Exp $
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.
14 AC_DEFUN([AS_COMPILER_FLAG],
16   AC_MSG_CHECKING([to see if compiler understands $1])
18   save_CFLAGS="$CFLAGS"
19   CFLAGS="$CFLAGS $1"
21   AC_TRY_COMPILE([ ], [], [flag_ok=yes], [flag_ok=no])
22   CFLAGS="$save_CFLAGS"
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])