"Fossies" - the Fresh Open Source Software Archive

Member "jq-1.6/config/m4/check-math-func.m4" (2 Nov 2018, 191 Bytes) of package /linux/misc/jq-1.6.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. See also the latest Fossies "Diffs" side-by-side code changes report for "check-math-func.m4": 1.5_vs_1.6.

    1 dnl AC_CHECK_MATH_FUNC(func)
    2 AC_DEFUN([AC_CHECK_MATH_FUNC], [
    3   AC_LANG(C)
    4   AC_CHECK_LIB([m],[$1],[
    5     eval "ac_tr_func=HAVE_[]upcase($1)"
    6     AC_DEFINE_UNQUOTED($ac_tr_func)
    7   ],[
    8   ])
    9 ])