details:   https://hg.nginx.org/nginx/rev/f58b6f636238
branches:  
changeset: 9247:f58b6f636238
user:      Edgar Bonet <bo...@grenoble.cnrs.fr>
date:      Thu May 16 11:15:10 2024 +0200
description:
Configure: fixed building libatomic test.

Using "long *" instead of "AO_t *" leads either to -Wincompatible-pointer-types
or -Wpointer-sign warnings, depending on whether long and size_t are compatible
types (e.g., ILP32 versus LP64 data models).  Notably, -Wpointer-sign warnings
are enabled by default in Clang only, and -Wincompatible-pointer-types is an
error starting from GCC 14.

Signed-off-by: Edgar Bonet <bo...@grenoble.cnrs.fr>

diffstat:

 auto/lib/libatomic/conf |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 89093b003fcb -r f58b6f636238 auto/lib/libatomic/conf
--- a/auto/lib/libatomic/conf   Fri May 03 20:26:05 2024 +0400
+++ b/auto/lib/libatomic/conf   Thu May 16 11:15:10 2024 +0200
@@ -19,7 +19,7 @@ else
                       #include <atomic_ops.h>"
     ngx_feature_path=
     ngx_feature_libs="-latomic_ops"
-    ngx_feature_test="long  n = 0;
+    ngx_feature_test="AO_t  n = 0;
                       if (!AO_compare_and_swap(&n, 0, 1))
                           return 1;
                       if (AO_fetch_and_add(&n, 1) != 1)
_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
https://mailman.nginx.org/mailman/listinfo/nginx-devel

Reply via email to