diff options
author | osa <osa@FreeBSD.org> | 2005-10-27 23:01:15 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2005-10-27 23:01:15 +0800 |
commit | d9623064b993e60902e6fc3de342771bbf0776b3 (patch) | |
tree | ffe56a1152066a0c83c2556f516edb60b2ef59bd /www/nginx/files | |
parent | 5791d80849c2a93f0311abc7c169b3553787d641 (diff) | |
download | freebsd-ports-gnome-d9623064b993e60902e6fc3de342771bbf0776b3.tar.gz freebsd-ports-gnome-d9623064b993e60902e6fc3de342771bbf0776b3.tar.zst freebsd-ports-gnome-d9623064b993e60902e6fc3de342771bbf0776b3.zip |
Update to 0.3.7.
Remove needless patch.
Diffstat (limited to 'www/nginx/files')
-rw-r--r-- | www/nginx/files/patch-src-os-unix-ngx_atomic.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/www/nginx/files/patch-src-os-unix-ngx_atomic.h b/www/nginx/files/patch-src-os-unix-ngx_atomic.h deleted file mode 100644 index 6dc60f5f5515..000000000000 --- a/www/nginx/files/patch-src-os-unix-ngx_atomic.h +++ /dev/null @@ -1,22 +0,0 @@ ---- src/os/unix/ngx_atomic.h.orig Wed Oct 26 11:17:58 2005 -+++ src/os/unix/ngx_atomic.h Wed Oct 26 11:18:36 2005 -@@ -154,7 +154,7 @@ - ngx_atomic_cmp_set(ngx_atomic_t *lock, ngx_atomic_uint_t old, - ngx_atomic_uint_t set) - { -- if (*lock == old { -+ if (*lock == old) { - *lock = set; - return 1; - } -@@ -174,8 +174,9 @@ - return old; - } - --#endif -+#define ngx_memory_barrier() - -+#endif - - void ngx_spinlock(ngx_atomic_t *lock, ngx_uint_t spin); - |