Commit b6ef6f69 authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

bpo-31374: expat doesn't include <pyconfig.h> on Windows (GH-11079)

parent fc662ac3
...@@ -30,7 +30,9 @@ ...@@ -30,7 +30,9 @@
USE OR OTHER DEALINGS IN THE SOFTWARE. USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <pyconfig.h> #if !defined(_WIN32) && defined(HAVE_EXPAT_CONFIG_H)
# include <pyconfig.h>
#endif
#include <stddef.h> #include <stddef.h>
#include <string.h> /* memcpy */ #include <string.h> /* memcpy */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment