>>>> "Andy" == Andy Piper
<andyp(a)parallax.co.uk> writes:
Andy> The configure stuff is easy. Although I don't know whether Martin feels
Andy> like doing this since really all of the image detection (giff etc) needs to
Andy> be made dependent on a window system rather than X. Martin?
I'd prefer for this to be done by someone with access to both Unix/X
and NT. I'm not planning on starting any new projects in the next few
months, so I'm leaving this up to you.
There have been some changes in configure.in for window system
independence, but someone else will have to follow through on those.
In particular, I left the following template in for someone else to
flesh out, or nuke, as appropriate.
dnl ### Test for features that require mswindows support - currently none
dnl ### MS-Windows folks: add code here..... (martin)
if test "$with_msw" != "yes"; then
for feature in MARTIN_IS_CLUELESS_ABOUT_MSW_FEATURES
do
if eval "test -n \"\$with_${feature}\" -a
\"\$with_${feature}\" != no" ; then
AC_MSG_WARN([--with-$feature ignored: Not valid without MS-Windows support])
fi
eval "with_${feature}=no"
done
else
:
fi
Martin