README 410 B

12345678910111213
  1. System.Windows.Forms wine-patch README
  2. After applying the patch to wine, run "autoconf" and then
  3. ./configure in the wine directory and 'make && make depend && make install'.
  4. Also, once the install is done you will need to create symbolic links for
  5. all the dlls you plan on using in System.Windows.Forms:
  6. cd /usr/local/lib
  7. for i in wine/*dll.so; do ln -s $i lib`basename $i`; done
  8. Peter
  9. [email protected]