AC_DEFINE_UNQUOTED patch from Patrice Dumas
[swftools.git] / m4 / backticks.m4
index 73366d9..6c7b620 100644 (file)
@@ -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