X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=m4%2Fbackticks.m4;h=6c7b620696a6aa83c94ca5dd173ffa91f8a72ad7;hb=c3cacee02d5a26355bccc9865dc213e47eeb5370;hp=73366d9fbb3725feb4e3378d72fdb2019a5e65f1;hpb=71b51374fae9f9125b172979a7dab7b44aca9769;p=swftools.git diff --git a/m4/backticks.m4 b/m4/backticks.m4 index 73366d9..6c7b620 100644 --- a/m4/backticks.m4 +++ b/m4/backticks.m4 @@ -1,4 +1,4 @@ -AC_DEFUN(RFX_CHECK_SYSTEM_BACKTICKS, +AC_DEFUN([RFX_CHECK_SYSTEM_BACKTICKS], [ AC_MSG_CHECKING([whether system() can handle command substitution]) AC_TRY_RUN([ @@ -7,7 +7,7 @@ int main (int argc, char*argv[]) { return system("test `touch config.tmp2`"); } -], OK=OK,,CROSSCOMPILE=1) +], [OK=OK],,[CROSSCOMPILE=1]) if test "x${OK}" = "xOK";then test -f config.tmp2 || OK= @@ -21,7 +21,7 @@ rm -f config.tmp2 AC_MSG_RESULT(yes) SYSTEM_BACKTICKS=1 export SYSTEM_BACKTICKS -AC_DEFINE_UNQUOTED(SYSTEM_BACKTICKS, 1) +AC_DEFINE([SYSTEM_BACKTICKS], [1], [Define if system handles command substitution]) else AC_MSG_RESULT(no) fi