1 dnl ######################################################################
2 dnl Run a program and print its output as a string
3 dnl Takes: (header, code-to-run, [action-if-found, [action-if-not-found]])
4 AC_DEFUN([AMU_EXPAND_RUN_STRING],
17 value=`./conftest dummy 2>>config.log`
18 test -z "$value" && value="notfound"
19 ], value="notfound", value="notfound")
20 if test "$value" = notfound
29 dnl ======================================================================