|
|
Christoph Conrad wrote:
Current CVS emacs, Visual Studio .NET 2003.
.\configure.bat --with-msvc --without-png --without-jpeg --without-gif
--without-tiff --without-xpm
,----
| ifdef USE_FONTBACKEND
| FONTOBJ = $(BLD)/w32font.$(O)
| endif
`----
in "src\makefile" should be
,----
| !ifdef USE_FONTBACKEND
| FONTOBJ = $(BLD)/w32font.$(O)
| !endif
`----
'!' is missing at two places.
If someone can come up with a simple fix that does not break the build
when using GNU make/gcc, then it can be installed, but since that
conditional will eventually be removed before 23.1 goes into pretest, I
don't think it is worth spending a large amount of time overhauling the
build process for.
|
|