diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-05-08 07:16:37 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-05-08 07:16:37 (GMT) |
commit | 000e37c3c433f42bafc68eee78633da147734808 (patch) | |
tree | 1f9c9254bb873a91f14e3c48e8e35fa6f1a2f31b /Modules/expat | |
parent | 5ad6f7a3a9190df03583ff9c0426a97e15a63ada (diff) | |
download | cpython-000e37c3c433f42bafc68eee78633da147734808.zip cpython-000e37c3c433f42bafc68eee78633da147734808.tar.gz cpython-000e37c3c433f42bafc68eee78633da147734808.tar.bz2 |
Patch #551011: Fix compilation problems with Cygwin.
Diffstat (limited to 'Modules/expat')
-rw-r--r-- | Modules/expat/expat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/expat/expat.h b/Modules/expat/expat.h index 9259a45..123b6e5 100644 --- a/Modules/expat/expat.h +++ b/Modules/expat/expat.h @@ -9,7 +9,7 @@ See the file COPYING for copying permission. #include <stdlib.h> #ifndef XMLPARSEAPI -# if defined(__declspec) && !defined(__BEOS__) +# if defined(__declspec) && !defined(__BEOS__) && !defined(__CYGWIN__) # define XMLPARSEAPI(type) __declspec(dllimport) type __cdecl # else # define XMLPARSEAPI(type) type |