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