diff options
author | amet <amet.nospam@gmail.com> | 2013-10-12 22:42:15 +0400 |
---|---|---|
committer | amet <amet.nospam@gmail.com> | 2013-10-16 21:48:03 +0400 |
commit | bbea12bc603cc521473fdcbe25d6e504611fd4cf (patch) | |
tree | 182bb3a01f918ce2742d76450ac13069a8b38e44 | |
parent | 3c4fa6590d2593f912c1382299e715f8ac38f0c9 (diff) |
[xcode5] fix cpluff build
-rw-r--r-- | lib/cpluff/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cpluff/configure.ac b/lib/cpluff/configure.ac index a531cf5126..bb69d19adf 100644 --- a/lib/cpluff/configure.ac +++ b/lib/cpluff/configure.ac @@ -109,7 +109,7 @@ if test "$enable_threads" != no; then AC_LINK_IFELSE( [AC_LANG_SOURCE([#include <pthread.h> -int main(int argc, char *argv[]) { +int main(int argc, char **argv) { pthread_mutex_t mutex; pthread_mutex_init(&mutex, NULL); @@ -126,7 +126,7 @@ cp_threads=Posix], AC_MSG_RESULT([no])) AC_LINK_IFELSE( [AC_LANG_SOURCE([#include <windows.h> -int main(int argc, char *argv[]) { +int main(int argc, char **argv) { CreateMutex(NULL, FALSE, NULL); return 0; } |