[vlc-commits] Undefine HAVE_FORK on OS/2.
Rémi Duraffort
git at videolan.org
Tue Apr 5 13:20:54 CEST 2011
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Mon Apr 4 22:28:39 2011 +0200| [462a34d4018664e17307bea72b0d1f7436992cc4] | committer: Rémi Duraffort
Undefine HAVE_FORK on OS/2.
Implementation of fork() is imperfect on OS/2.
Pointed-out-by: KO Myung-Hun
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=462a34d4018664e17307bea72b0d1f7436992cc4
---
include/vlc_fixups.h | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/vlc_fixups.h b/include/vlc_fixups.h
index cc68636..1e4336c 100644
--- a/include/vlc_fixups.h
+++ b/include/vlc_fixups.h
@@ -316,4 +316,8 @@ long nrand48 (unsigned short subi[3]);
char *tempnam(const char *, const char *);
#endif // ANDROID
+#ifdef __OS2__
+# undef HAVE_FORK /* Implementation of fork() is imperfect on OS/2 */
+#endif
+
#endif /* !LIBVLC_FIXUPS_H */
More information about the vlc-commits
mailing list