From 462a34d4018664e17307bea72b0d1f7436992cc4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Mon, 4 Apr 2011 22:28:39 +0200 Subject: [PATCH] Undefine HAVE_FORK on OS/2. Implementation of fork() is imperfect on OS/2. Pointed-out-by: KO Myung-Hun --- include/vlc_fixups.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/vlc_fixups.h b/include/vlc_fixups.h index cc6863630c..1e4336c046 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 */ -- 2.39.2