Home | History | Annotate | Line # | Download | only in m4
      1  1.1  mrg #
      2  1.1  mrg # GDC feature checking and sanity check macros
      3  1.1  mrg #
      4  1.1  mrg 
      5  1.1  mrg 
      6  1.1  mrg # GDC_CHECK_COMPILE
      7  1.1  mrg # -----------------
      8  1.1  mrg # Check if compiler can compile D code
      9  1.1  mrg AC_DEFUN([GDC_CHECK_COMPILE],
     10  1.1  mrg [
     11  1.1  mrg   AC_LANG_PUSH(D)
     12  1.1  mrg     AC_MSG_CHECKING([[If $GDC can compile D sources]])
     13  1.1  mrg     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [[return 0;]])],
     14  1.1  mrg       [AC_MSG_RESULT([[yes]])],
     15  1.1  mrg       [AC_MSG_RESULT([[no]])
     16  1.1  mrg        AC_MSG_ERROR([[can't compile D sources!]])])
     17  1.1  mrg   AC_LANG_POP(D)
     18  1.1  mrg ])
     19