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