[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#165358: workaround for __libc_fork and winex 2.0



Hi,

if I add the following patch to the debian/patches dir
and the debian/patches/0list, winex 2.0 works fine for me
again:


#! /bin/sh -e

if [ $# -ne 2 ]; then
    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
    exit 1
fi
case "$1" in
    -patch) patch -d "$2" -f --no-backup-if-mismatch -p0 < $0;;
    -unpatch) patch -d "$2" -f --no-backup-if-mismatch -R -p0 < $0;;
    *)
        echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
        exit 1
esac
exit 0

--- sysdeps/unix/sysv/linux/i386/Versions.orig       2002-10-25 20:52:36.000000000 +0200
+++ sysdeps/unix/sysv/linux/i386/Versions    2002-10-25 20:53:39.000000000 +0200
@@ -11,6 +11,9 @@
   }
   GLIBC_2.1 {
     modify_ldt;
   }
+  GLIBC_2.1.2 {
+    __libc_fork;
+  }
   GLIBC_2.2 {
     # functions used in other libraries
     __xstat64; __fxstat64; __lxstat64;


Greetings, Joost

-- 
openMSX: the MSX emulator that aims for perfection
         http://openmsx.sf.net/



Reply to: