summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes2
-rw-r--r--MANIFEST2
-rw-r--r--Makefile.in4
-rw-r--r--README9
4 files changed, 12 insertions, 5 deletions
diff --git a/Changes b/Changes
index 6d770a9..5b78b86 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+Release 1.95.1 Sun Oct 22 15:11:36 EDT 2000
+ - Changes to get expat to build under Microsoft compiler
- Removed all aborts and instead return an UNEXPECTED_STATE error.
- Fixed a bug where a stray '%' in an entity value would cause an
abort.
diff --git a/MANIFEST b/MANIFEST
index 8215f5c..645bfd9 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -21,6 +21,7 @@ examples/outline.c
lib/Makefile.in
lib/ascii.h
lib/asciitab.h
+lib/expat.dsp
lib/expat.h
lib/iasciitab.h
lib/latin1tab.h
@@ -34,6 +35,7 @@ lib/xmltok.h
lib/xmltok_impl.c
lib/xmltok_impl.h
lib/xmltok_ns.c
+lib/winconfig.h
xmlwf/Makefile.in
xmlwf/codepage.c
xmlwf/codepage.h
diff --git a/Makefile.in b/Makefile.in
index 34fe326..ce0a987 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -126,10 +126,6 @@ maintainer-clean: distclean
rm -rf $(DISTDIR)
distdir: MANIFEST
- if head -3 README | grep -q "Release $(VERSION)"; then \
- sed -e "1,3s/Release .*/Release $(VERSION)/" README > README.tmp; \
- mv -f README.tmp README; \
- fi; \
test -d $(DISTDIR) && rm -rf $(DISTDIR); \
mkdir $(DISTDIR); \
flist=`sed -e "s/[ ]:.*$$//" MANIFEST`; for file in $$flist; do \
diff --git a/README b/README
index 96e3a7c..d1c6874 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
- Expat, Release 1.95.0
+ Expat, Release 1.95.1
This is expat, the C library for parsing XML, written by James Clark. Expat
is a stream oriented XML parser. This means that you register handlers with
@@ -37,6 +37,13 @@ After running the configure script, the "make" command will build things and
you need to have write permission into the directories into which things
will be installed.
+Alternatively, on Win32 systems with Microsoft's Developer's Studio installed,
+you can simply double-click on lib/expat.dsp from Windows Explorer and build
+and install in the usual way from with DevStudio.
+
+As a third alternative you may choose to download expat_win32bin which has
+a pre-compiled dll in it.
+
A reference manual is available in the doc/reference.html in this
distribution.