From dc61a30bcc26b19a74e6c24a77316079e87b13d3 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Thu, 3 Jun 2004 00:09:54 +0000 Subject: [PATCH] MinGW portability fix. --- include/wine/port.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wine/port.h b/include/wine/port.h index bff0ed336a9..aea28f15b37 100644 --- a/include/wine/port.h +++ b/include/wine/port.h @@ -188,7 +188,7 @@ struct statvfs /* Macros to define assembler functions somewhat portably */ -#ifdef __GNUC__ +#if defined(__GNUC__) && !defined(__MINGW32__) # define __ASM_GLOBAL_FUNC(name,code) \ __asm__( ".text\n\t" \ ".align 4\n\t" \ @@ -197,7 +197,7 @@ struct statvfs __ASM_NAME(#name) ":\n\t" \ code \ "\n\t.previous" ); -#else /* __GNUC__ */ +#else /* defined(__GNUC__) && !defined(__MINGW32__) */ # define __ASM_GLOBAL_FUNC(name,code) \ void __asm_dummy_##name(void) { \ asm( ".align 4\n\t" \