bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH gnulib 4/4] RFC stat: x86_64 mingw64 #define stat as _stat64.


From: Bruno Haible
Subject: Re: [PATCH gnulib 4/4] RFC stat: x86_64 mingw64 #define stat as _stat64.
Date: Mon, 30 Jan 2012 21:44:55 +0100
User-agent: KMail/4.7.4 (Linux/3.1.0-1.2-desktop; KDE/4.7.4; x86_64; ; )

Marc-André Lureau wrote:
> I tested this patch, it works with mingw64 both i686 and x86_64, thanks!

Good, thanks. I'm committing it:


2012-01-29  Bruno Haible  <address@hidden>

        sys_stat: Fix support for mingw64 and MSVC.
        * lib/sys_stat.in.h (stat) [AIX]: Don't redefine 'stat' if the system
        header files already do it.
        (stat) [mingw, msvc]: Redefine the symbol to which stat is defined, not
        stat itself.
        Reported by Marc-André Lureau <address@hidden>.

--- lib/sys_stat.in.h.orig      Mon Jan 30 21:40:59 2012
+++ lib/sys_stat.in.h   Mon Jan 30 21:39:47 2012
@@ -616,14 +616,33 @@
 /* We can't use the object-like #define stat rpl_stat, because of
    struct stat.  This means that rpl_stat will not be used if the user
    does (stat)(a,b).  Oh well.  */
-#  undef stat
-#  ifdef _LARGE_FILES
+#  if defined _AIX && defined stat && defined _LARGE_FILES
     /* With _LARGE_FILES defined, AIX (only) defines stat to stat64,
        so we have to replace stat64() instead of stat(). */
-#   define stat stat64
 #   undef stat64
 #   define stat64(name, st) rpl_stat (name, st)
-#  else /* !_LARGE_FILES */
+#  elif defined __MINGW32__ && defined stat
+#   ifdef _USE_32BIT_TIME_T
+     /* The system headers define stat to _stat32i64.  */
+#    undef _stat32i64
+#    define _stat32i64(name, st) rpl_stat (name, st)
+#   else
+     /* The system headers define stat to _stat64.  */
+#    undef _stat64
+#    define _stat64(name, st) rpl_stat (name, st)
+#   endif
+#  elif defined _MSC_VER && defined stat
+#   ifdef _USE_32BIT_TIME_T
+     /* The system headers define stat to _stat32.  */
+#    undef _stat32
+#    define _stat32(name, st) rpl_stat (name, st)
+#   else
+     /* The system headers define stat to _stat64i32.  */
+#    undef _stat64i32
+#    define _stat64i32(name, st) rpl_stat (name, st)
+#   endif
+#  else /* !(_AIX ||__MINGW32__ ||  _MSC_VER) */
+#   undef stat
 #   define stat(name, st) rpl_stat (name, st)
 #  endif /* !_LARGE_FILES */
 _GL_EXTERN_C int stat (const char *name, struct stat *buf)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]