renatofilho@610: dnl as-compiler-flag.m4 0.1.0 renatofilho@610: renatofilho@610: dnl autostars m4 macro for detection of compiler flags renatofilho@610: renatofilho@610: dnl David Schleef renatofilho@610: renatofilho@610: dnl $Id: as-compiler-flag.m4,v 1.1 2005/06/18 18:02:46 burgerman Exp $ renatofilho@610: renatofilho@610: dnl AS_COMPILER_FLAG(CFLAGS, ACTION-IF-ACCEPTED, [ACTION-IF-NOT-ACCEPTED]) renatofilho@610: dnl Tries to compile with the given CFLAGS. renatofilho@610: dnl Runs ACTION-IF-ACCEPTED if the compiler can compile with the flags, renatofilho@610: dnl and ACTION-IF-NOT-ACCEPTED otherwise. renatofilho@610: renatofilho@610: AC_DEFUN([AS_COMPILER_FLAG], renatofilho@610: [ renatofilho@610: AC_MSG_CHECKING([to see if compiler understands $1]) renatofilho@610: renatofilho@610: save_CFLAGS="$CFLAGS" renatofilho@610: CFLAGS="$CFLAGS $1" renatofilho@610: renatofilho@610: AC_TRY_COMPILE([ ], [], [flag_ok=yes], [flag_ok=no]) renatofilho@610: CFLAGS="$save_CFLAGS" renatofilho@610: renatofilho@610: if test "X$flag_ok" = Xyes ; then renatofilho@610: $2 renatofilho@610: true renatofilho@610: else renatofilho@610: $3 renatofilho@610: true renatofilho@610: fi renatofilho@610: AC_MSG_RESULT([$flag_ok]) renatofilho@610: ])