diff options
author | Ruslan Ermilov <ru@nginx.com> | 2013-05-23 10:23:21 +0400 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2013-05-23 10:23:21 +0400 |
commit | c4a044cc50e35b114095bfe744ba3fa0e6bfc5bd (patch) | |
tree | ca411262213e1095f71991196719893d64e1d364 | |
parent | 407c8311161e97e7edf5dd5bc980f1554fdc8913 (diff) | |
download | nginx-c4a044cc50e35b114095bfe744ba3fa0e6bfc5bd.tar.gz nginx-c4a044cc50e35b114095bfe744ba3fa0e6bfc5bd.zip |
Configure: fixed test of OS X atomic(3).
-rw-r--r-- | auto/os/darwin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto/os/darwin b/auto/os/darwin index 590e03697..b97518a6e 100644 --- a/auto/os/darwin +++ b/auto/os/darwin @@ -112,5 +112,5 @@ ngx_feature_incs="#include <libkern/OSAtomic.h>" ngx_feature_path= ngx_feature_libs= ngx_feature_test="int32_t lock, n; - n = OSAtomicCompareAndSwap32Barrier(0, 1, lock)" + n = OSAtomicCompareAndSwap32Barrier(0, 1, &lock)" . auto/feature |