From 41981cdca12b15e7ee25b1b145db1c8b150b051b Mon Sep 17 00:00:00 2001 From: Alex J Lennon Date: Wed, 29 Oct 2014 14:27:01 +0100 Subject: [libgc] Eliminate warning about redefinition of GC_WIN32_THREADS Makefile defines GC_WIN32_THREADS as 1 but gc_config_macros was redefining as defined but with no value. Signed-off-by: Alex J Lennon --- libgc/include/gc_config_macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgc') diff --git a/libgc/include/gc_config_macros.h b/libgc/include/gc_config_macros.h index c11caa7748e..caf8de527c3 100644 --- a/libgc/include/gc_config_macros.h +++ b/libgc/include/gc_config_macros.h @@ -32,7 +32,7 @@ # define GC_LINUX_THREADS #endif #if defined(WIN32_THREADS) -# define GC_WIN32_THREADS +# define GC_WIN32_THREADS 1 #endif #if defined(USE_LD_WRAP) # define GC_USE_LD_WRAP -- cgit v1.2.3