On Wed, 16 Jul 2003, Justin Zygmont wrote:

[...]

> checking for X... no
> checking for XOpenDisplay in -lX11... no
> checking for XCloseDisplay in -lX11... no
> checking for main in -lXwindow... no

[...]

> configure: WARNING:
> configure: WARNING: Compiling without X support.
> configure: WARNING: Install the X development libraries if you want support for X.

was that the intent -- do you never compile DOSEMU with X support (ie.
does 1.1.5 do the same here?)

That explains it though; a small guard is needed in int10.c, as follows:

--- src/base/bios/int10.c.~1.4.~        Sun Jun 29 22:59:39 2003
+++ src/base/bios/int10.c       Wed Jul 16 09:21:11 2003
@@ -723,6 +723,7 @@
 /* helpers for font processing - [EMAIL PROTECTED]  11/2002 */
 /* only for TEXT mode: Otherwise, int 0x43 is used...         */

+#ifdef X_GRAPHICS
 static void vga_RAM_to_RAM(unsigned height, unsigned char chr, unsigned count,
                            unsigned seg, unsigned ofs, int bank)
 {
@@ -767,6 +768,7 @@
   }
   vga_RAM_to_RAM(height,0,256,seg,ofs,bank);
 }
+#endif /* X_GRAPHICS */

 /******************************************************************/




Bart

-
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

Reply via email to