From d9623064b993e60902e6fc3de342771bbf0776b3 Mon Sep 17 00:00:00 2001 From: osa Date: Thu, 27 Oct 2005 15:01:15 +0000 Subject: Update to 0.3.7. Remove needless patch. --- .../files/patch-src-os-unix-ngx_atomic.h | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 www/nginx-devel/files/patch-src-os-unix-ngx_atomic.h (limited to 'www/nginx-devel/files') diff --git a/www/nginx-devel/files/patch-src-os-unix-ngx_atomic.h b/www/nginx-devel/files/patch-src-os-unix-ngx_atomic.h deleted file mode 100644 index 6dc60f5f5515..000000000000 --- a/www/nginx-devel/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); - -- cgit