diff options
author | Antony Dovgal <tony2001@php.net> | 2007-03-06 10:13:37 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-03-06 10:13:37 +0000 |
commit | b43a614ba0ada0d7c6f3fe1c7d364829034d55b0 (patch) | |
tree | 9df097be37f831b740dbcca2724bf1e17706cd12 | |
parent | 209220345d4957fe73176117cb07b5fe9d2fee18 (diff) | |
download | php-git-b43a614ba0ada0d7c6f3fe1c7d364829034d55b0.tar.gz |
fix AC_TRY_COMPILE usage
-rw-r--r-- | ext/ming/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ming/config.m4 b/ext/ming/config.m4 index f0c1013c3f..fd6fc9cacb 100644 --- a/ext/ming/config.m4 +++ b/ext/ming/config.m4 @@ -80,7 +80,7 @@ yes AC_TRY_COMPILE([ #include <ming.h> ], [ -int main(void) { SWFMovie_output(NULL, NULL, NULL, 0); return 0; } +SWFMovie_output(NULL, NULL, NULL, 0); ], [ AC_DEFINE(HAVE_MING_MOVIE_LEVEL, 1, [ ]) ], []) |