changeset 386:cd421821ee7f

Win: Make x64 subfolder non-fatal on x86, since I can't build x64 on 2K/XP. Also add http=no and ftp=no to the libxml2 configuration command.
author Brian Smith <brian@dbsoft.org>
date Thu, 05 Jan 2023 22:54:42 -0600
parents 1a16cecc576c
children ad2ec2685b50
files install/dwib-x86.nsi readme.txt
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/install/dwib-x86.nsi	Tue Jan 03 14:10:30 2023 -0600
+++ b/install/dwib-x86.nsi	Thu Jan 05 22:54:42 2023 -0600
@@ -69,7 +69,7 @@
   File dwib.h
   ; Developer Libraries
   File /r x86
-  File /r x64
+  File /nonfatal /r x64
   ; Help
   File readme.txt
 
--- a/readme.txt	Tue Jan 03 14:10:30 2023 -0600
+++ b/readme.txt	Thu Jan 05 22:54:42 2023 -0600
@@ -25,7 +25,7 @@
 I have decided to use libxml2 to generate and load the XML. The reason for this choice is it is stable software written in C under a liberal MIT license. Additionally it is included on MacOS, almost any Linux and any Unix with Gnome by default. It will likely only need to be included or statically linked on Windows and OS/2.
 
 Notes for building libxml2 on Windows, these are the commands I use from the win32 directory: 
-cscript configure.js compiler=msvc prefix=\Work\GitHub\libxml2 include=\Work\GitHub\libxml2\include lib=\Work\GitHub\libxml2\lib iconv=no cruntime=/MT dynruntime=no
+cscript configure.js compiler=msvc prefix=\Work\GitHub\libxml2 include=\Work\GitHub\libxml2\include lib=\Work\GitHub\libxml2\lib iconv=no cruntime=/MT dynruntime=no http=no ftp=no
 nmake /f makefile.msvc /a
 nmake /f makefile.msvc install
 cd ..\lib
@@ -33,4 +33,4 @@
 copy * %VSCMD_ARG_TGT_ARCH%
 
 set XML2INCDIR=\Work\GitHub\libxml2\include
-set XML2LIBDIR=\Work\GitHub\libxml2\lib
\ No newline at end of file
+set XML2LIBDIR=\Work\GitHub\libxml2\lib