[Expat-checkins] expat/lib expat.h,1.18,1.19
gstein@users.sourceforge.net
gstein@users.sourceforge.net
Fri May 17 17:28:02 2002
Update of /cvsroot/expat/expat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv28608/lib
Modified Files:
expat.h
Log Message:
Add some cygwin fixes.
* Makefile.in:
- from cygwin: add -no-undefined to the library link line
* conftools/get-version.sh: (new file)
- script to extract the version number from expat.h
* configure.in:
(some from the cygwin patch)
- update the prereq to 2.52 instead of just 2.50
- update the AC_INIT line to 2.52 standards: include the package
name, version (with a lot of gunk to get this), and where to send
bugs)
- update the output file generation to 2.52 standards
* make-release.sh:
- update to use the new get-version.sh script
* lib/expat.h:
- from cygwin: add a little define for CYGWIN
Index: expat.h
===================================================================
RCS file: /cvsroot/expat/expat/lib/expat.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** expat.h 17 May 2002 21:23:35 -0000 1.18
--- expat.h 18 May 2002 00:26:59 -0000 1.19
***************
*** 9,13 ****
#ifndef XMLPARSEAPI
! # if defined(_MSC_EXTENSIONS) && !defined(__BEOS__)
# define XMLPARSEAPI(type) __declspec(dllimport) type __cdecl
# else
--- 9,13 ----
#ifndef XMLPARSEAPI
! # if defined(_MSC_EXTENSIONS) && !defined(__BEOS__) && !defined(__CYGWIN__)
# define XMLPARSEAPI(type) __declspec(dllimport) type __cdecl
# else