>>>>> Stephen Lee writes:
Stephen> Thanks. Do you know if Foxpro has any issues running under
Stephen> 0.99.13? I want to run it in a production environment.
Not FoxPro, but DPMI or PIC, exactly saying. Other stuff you
have to attend are $_keybint and $_ipxsupport config
options. For the rest FoxPro working fine.
And one more thing. I'm not sure for detail, but that's helped
me with fox:
--- dosemu-0.99.13.orig/src/dosext/mfs/mfs.c
+++ dosemu-0.99.13/src/dosext/mfs/mfs.c
@@ -2892,7 +2892,10 @@
ret = dos_write(fd, dta, cnt);
if ((ret + s_pos) > sft_size(sft)) {
sft_size(sft) = ret + s_pos;
- }
+#if 1 /* XXX (by solt) zero-lenght writes beyond eof */
+ if (ret == 0) dos_write(fd,"",1);
+#endif
+ }
}
Debug0((dbg_fd, "write operation done,ret=%x\n", ret));
if (us_debug_level > Debug_Level_0)
Maybe someone will fix that stuff rightly.
--
Sergey Suleymanov
P.S. Sorry for my English
-
To unsubscribe from this list: send the line "unsubscribe linux-msdos" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html