X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=m4%2Fbackticks.m4;h=6c7b620696a6aa83c94ca5dd173ffa91f8a72ad7;hb=116918c38124acb06e62c8c14ac192625ff3141f;hp=520554bdfeff25fd7d683005702cf8db824ba8da;hpb=5a8db3625a47f0697ac1b1f459775ae59fe714ca;p=swftools.git diff --git a/m4/backticks.m4 b/m4/backticks.m4 index 520554b..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,21 +7,21 @@ 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= fi if test "x${CROSSCOMPILE}" = "x1";then - OK=OK; + OK=no; fi if test "x${OK}" = "xOK";then 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