diff options
author | berkeviktor@aol.com <berkeviktor@aol.com> | 2010-09-29 03:34:42 +0200 |
---|---|---|
committer | berkeviktor@aol.com <berkeviktor@aol.com> | 2010-09-29 03:34:42 +0200 |
commit | 3d8d13c3667a98d8aaf823df60ac6a08300d98c9 (patch) | |
tree | 4f17a3c46b60419e4471e743f5d8edabb7daefa7 | |
parent | 6e62006b26ccc0e46e5250a017ec539957780ec8 (diff) |
add patch for glibconfig.h
-rw-r--r-- | glibconfig.h.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/glibconfig.h.patch b/glibconfig.h.patch new file mode 100644 index 00000000..b4e10ed1 --- /dev/null +++ b/glibconfig.h.patch @@ -0,0 +1,16 @@ +--- glibconfig.h.orig 2010-09-27 22:23:56 +0000 ++++ glibconfig.h 2010-09-29 01:31:32 +0000 +@@ -107,9 +107,13 @@ + #ifdef __cplusplus + #define G_HAVE_INLINE 1 + #else /* !__cplusplus */ ++#ifndef _MSC_VER + #define G_HAVE_INLINE 1 ++#endif /* _MSC_VER */ + #define G_HAVE___INLINE 1 ++#if !defined(_MSC_VER) && !defined(__DMC__) + #define G_HAVE___INLINE__ 1 ++#endif /* !_MSC_VER and !__DMC__ */ + #endif /* !__cplusplus */ + + #ifdef __cplusplus |