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