diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-08-05 01:48:12 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-08-05 01:48:12 +0800 |
commit | 303215c32028bc806c2061bbbfa6913126225998 (patch) | |
tree | 3a7cc76d4baf2d3267c3ce6cff327f60eaedbff9 /devel/glib20/files | |
parent | d1b821bb6a81d3f15ec607fae1f3b85a0f503d02 (diff) | |
download | marcuscom-ports-303215c32028bc806c2061bbbfa6913126225998.tar marcuscom-ports-303215c32028bc806c2061bbbfa6913126225998.tar.gz marcuscom-ports-303215c32028bc806c2061bbbfa6913126225998.tar.bz2 marcuscom-ports-303215c32028bc806c2061bbbfa6913126225998.tar.lz marcuscom-ports-303215c32028bc806c2061bbbfa6913126225998.tar.xz marcuscom-ports-303215c32028bc806c2061bbbfa6913126225998.tar.zst marcuscom-ports-303215c32028bc806c2061bbbfa6913126225998.zip |
Fix an #ifdef problem that caused a build failure in gnomegames2.
Obtained from: GNOME CVS
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4382 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/glib20/files')
-rw-r--r-- | devel/glib20/files/patch-glib_gstdio.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/devel/glib20/files/patch-glib_gstdio.h b/devel/glib20/files/patch-glib_gstdio.h new file mode 100644 index 000000000..6431bae49 --- /dev/null +++ b/devel/glib20/files/patch-glib_gstdio.h @@ -0,0 +1,26 @@ +--- glib/gstdio.h.orig Thu Aug 4 13:44:25 2005 ++++ glib/gstdio.h Thu Aug 4 13:45:06 2005 +@@ -25,10 +25,10 @@ + + #include <sys/stat.h> + +-#if defined(G_OS_UNIX) && !defined(G_STDIO_NO_WRAP_ON_UNIX) +- + G_BEGIN_DECLS + ++#if defined(G_OS_UNIX) && !defined(G_STDIO_NO_WRAP_ON_UNIX) ++ + /* Just pass on to the system functions, so there's no potential for data + * format mismatches, especially with large file interfaces. + */ +@@ -100,8 +100,8 @@ FILE *g_freopen (const gchar *filename, + const gchar *mode, + FILE *stream); + +-G_END_DECLS +- + #endif /* G_OS_UNIX */ ++ ++G_END_DECLS + + #endif /* __G_STDIO_H__ */ |