# HG changeset patch # User jhar # Date 1019522670 0 # Node ID ece8c2170578d2da5044ab17a6097e536b080ae4 # Parent 39b1580316c88673af8bfa26b5de15e91b2d6187 [xemacs-hg @ 2002-04-23 00:44:29 by jhar] Default to using MSVCRT as the C runtime for xpm diff -r 39b1580316c8 -r ece8c2170578 nt/ChangeLog --- a/nt/ChangeLog Mon Apr 15 09:42:19 2002 +0000 +++ b/nt/ChangeLog Tue Apr 23 00:44:30 2002 +0000 @@ -1,3 +1,8 @@ +2002-04-23 Jonathan Harris + + * README: Document build for latest versions of zlib & png + * xpm.mak: Default to using MSVCRT as the C runtime + 2002-04-14 Ben Wing * config.inc.samp (HAVE_MS_WINDOWS): diff -r 39b1580316c8 -r ece8c2170578 nt/README --- a/nt/README Mon Apr 15 09:42:19 2002 +0000 +++ b/nt/README Tue Apr 23 00:44:30 2002 +0000 @@ -120,16 +120,15 @@ xpm sources, cd to that directory and build xpm with 'nmake -f xpm.mak'. 2. You probably also want PNG image support. Grab the latest versions of zlib - and libpng (zlib-1.1.3 and libpng-1.0.2 at time of writing) from + and libpng (zlib-1.1.4 and libpng-1.0.9 at time of writing) from ftp://ftp.xemacs.org/pub/xemacs/aux/, unpack them somewhere and read the respective READMEs for details on how to build them. The following - build procedure works for zlib-1.1.3 and libpng-1.0.2: + build procedure works for zlib-1.1.4 and libpng-1.0.9: - cd to the zlib directory, type 'copy msdos\makefile.w32 Makefile' and - then type 'nmake'. + cd to the zlib directory and type 'nmake -f msdos\makefile.w32'. cd to the libpng directory, rename or move the zlib directory to ..\zlib - and type 'nmake -f scripts\makefile.w32'. + and type 'nmake -f scripts\makefile.vcwin32'. 3. If you want TIFF support, grap the latest version of libtiff (tiff-v3.4 at time of writing) from ftp://ftp.xemacs.org/pub/xemacs/aux/ and unpack diff -r 39b1580316c8 -r ece8c2170578 nt/xpm.mak --- a/nt/xpm.mak Mon Apr 15 09:42:19 2002 +0000 +++ b/nt/xpm.mak Tue Apr 23 00:44:30 2002 +0000 @@ -10,7 +10,7 @@ !endif !if !defined(USE_CRTDLL) -USE_CRTDLL=0 +USE_CRTDLL=1 !endif !if $(DEBUG) @@ -67,9 +67,4 @@ mkdir ..\X11 Xpm.lib: $(OBJS) -!if $(USE_CRTDLL) -# Target is ok, link builds lib as a side effect. - link -nologo -dll -def:xpm.def -out:Xpm.dll gdi32.lib $(OBJS) -!else lib -nologo -out:$@ $(OBJS) -!endif