On 9 Aug 2001, Tijs van Bakel wrote:
> Seems my Xfree86 version is too old for libggi to compile the dga
> target. Should there be a new check in autoconf for this, or am I
> required to upgrade? IIRC beta3 compiled without problems.
Before we declare support for building with xlib 3.3.3 dead, maybe try
without the internal dga implementation and see if that works. Andy
turned it off before with the following patch to configure.in, but (note
to Thayne) this --without (?) option currently does not appear in
configure --help and it should.
if test "x$build_dga_target" != "xno"; then
AC_CHECK_HEADER(X11/extensions/xf86dga.h,[
! internal_xf86dga="yes"
AM_CONDITIONAL(INTERNAL_XF86DGA, test "x$internal_xf86dga" = "xyes")
if test "x$internal_xf86dga" = "xyes"; then
--- 443,447 ----
if test "x$build_dga_target" != "xno"; then
AC_CHECK_HEADER(X11/extensions/xf86dga.h,[
! # internal_xf86dga="yes"
AM_CONDITIONAL(INTERNAL_XF86DGA, test "x$internal_xf86dga" = "xyes")
if test "x$internal_xf86dga" = "xyes"; then
--
Brian