diff options
author | Fabian Groffen <grobian@gentoo.org> | 2005-10-22 17:48:33 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2005-10-22 17:48:33 +0000 |
commit | fdc5672db858cd73c310f1ee6195937e3577e58c (patch) | |
tree | 09544dd08220c49712371e4bf2fe8604ee9a9f72 /dev-libs/glib/files | |
parent | Pruning old versions (diff) | |
download | gentoo-2-fdc5672db858cd73c310f1ee6195937e3577e58c.tar.gz gentoo-2-fdc5672db858cd73c310f1ee6195937e3577e58c.tar.bz2 gentoo-2-fdc5672db858cd73c310f1ee6195937e3577e58c.zip |
Added patch for ppc-macos that forces use of emulated poll()
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'dev-libs/glib/files')
-rw-r--r-- | dev-libs/glib/files/glib-2.8.3-macos.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-libs/glib/files/glib-2.8.3-macos.patch b/dev-libs/glib/files/glib-2.8.3-macos.patch new file mode 100644 index 000000000000..63445bb55e44 --- /dev/null +++ b/dev-libs/glib/files/glib-2.8.3-macos.patch @@ -0,0 +1,11 @@ +--- glib/gmain.c 2005-10-22 18:30:01.000000000 +0200 ++++ glib/gmain.c 2005-10-22 18:28:46.000000000 +0200 +@@ -52,7 +52,7 @@ + /* The poll() emulation on OS/X doesn't handle fds=NULL, nfds=0, + * so we prefer our own poll emulation. + */ +-#ifdef _POLL_EMUL_H_ ++#ifdef __APPLE__ + #undef HAVE_POLL + #endif + |