From 553a0142e91c616ea1b3a8b0cdc91425027e287a Mon Sep 17 00:00:00 2001 From: David Schleef Date: Fri, 6 Jun 2003 17:50:33 +0000 Subject: [PATCH] Macro from gstreamer --- m4/as-compiler-flag.m4 | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 m4/as-compiler-flag.m4 diff --git a/m4/as-compiler-flag.m4 b/m4/as-compiler-flag.m4 new file mode 100644 index 0000000..41db7d1 --- /dev/null +++ b/m4/as-compiler-flag.m4 @@ -0,0 +1,23 @@ +dnl as-compiler-flag.m4 0.0.1 +dnl autostars m4 macro for detection of compiler flags +dnl +dnl ds@schleef.org + +AC_DEFUN(AS_COMPILER_FLAG, +[ + AC_MSG_CHECKING(to see if compiler understands $1) + + save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $1" + + AC_TRY_COMPILE([ ], [], [flag_ok=yes], [flag_ok=no]) + CFLAGS="$save_CFLAGS" + + if test "X$flag_ok" = Xyes; then + $2 + else + $3 + fi + AC_MSG_RESULT([$flag_ok]) +]) + -- 2.26.2