add_cflags.m4
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:0k
源码类别:

Audio

开发平台:

Unix_Linux

  1. dnl @synopsis MN_ADD_CFLAGS
  2. dnl
  3. dnl Add the given option to CFLAGS, if it doesn't break the compiler
  4. AC_DEFUN([MN_ADD_CFLAGS],
  5. [AC_MSG_CHECKING([if $CC accepts $1])
  6. ac_add_cflags__old_cflags="$CFLAGS"
  7. CFLAGS="$CFLAGS $1"
  8. AC_TRY_LINK([
  9. #include <stdio.h>
  10. ],
  11. [puts("Hello, World!"); return 0;],
  12. AC_MSG_RESULT([yes]),
  13. AC_MSG_RESULT([no])
  14. CFLAGS="$ac_add_cflags__old_cflags"
  15. )
  16. ])# MN_ADD_CFLAGS