Re: 1.3.10 release candidates



Owen Taylor writes:
 > For now, I've gone with the following patch.
 > diff -u -p -r1.80 configure.in
 > --- configure.in	2001/10/25 18:56:05	1.80
 > +++ configure.in	2001/10/26 16:45:21
 > @@ -153,7 +153,12 @@ AM_CONDITIONAL(HAVE_XFT, $have_xft) 
 >  have_win32=false
 >  WIN32_LIBS=""
 >  WIN32_CFLAGS=""
 > -AC_CHECK_LIB(gdi32, GetTextMetricsA 8, have_win32=true, : )
 > +# The following doesn't work with autoconf-2.13, so we check $host instead
 > +# AC_CHECK_LIB(gdi32, GetTextMetricsA 8, have_win32=true, : )
 > +case "$host" in
 > +  *-*-mingw*|*-*-cygwin*) have_win32=true ;;
 > +esac
 > +
 >  

Yes, I agree. It was a bit unnecessary to check for the existence of
libgdi32 when targeting for Win32... if it wasn't there in some Win32
development environment, it would be a quite useless such.

--tml




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