check for bool.
[swftools.git] / aclocal.m4
index 224949b..eee4251 100644 (file)
@@ -51,12 +51,12 @@ AC_TRY_RUN([
 #include "stdlib.h"
 int main (int argc, char*argv[])
 {
-    return system("echo `touch config.tmp2`");
+    return system("test `touch config.tmp2`");
 }
 ], OK=OK,,CROSSCOMPILE=1)
 
 if test "x${OK}" = "xOK";then
-    test -e config.tmp2 || OK=
+    test -f config.tmp2 || OK=
 fi
 
 if test "x${CROSSCOMPILE}" = "x1";then
@@ -65,7 +65,8 @@ fi
 if test "x${OK}" = "xOK";then
 rm -f config.tmp2
 AC_MSG_RESULT(yes)
-export SYSTEM_BACKTICKS=1
+SYSTEM_BACKTICKS=1
+export SYSTEM_BACKTICKS
 AC_DEFINE_UNQUOTED(SYSTEM_BACKTICKS, 1)
 else
 AC_MSG_RESULT(no)