diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-12-31 03:17:18 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-12-31 03:17:18 (GMT) |
commit | 2c19674b51291c361842ec02f2ddbb9b472a2f5c (patch) | |
tree | 2556ec3112320aa096f1ae48f772169d41dfcf94 /configure.in | |
parent | df6f963f15824ad7553324648b5bcd221c221e15 (diff) | |
download | cpython-2c19674b51291c361842ec02f2ddbb9b472a2f5c.zip cpython-2c19674b51291c361842ec02f2ddbb9b472a2f5c.tar.gz cpython-2c19674b51291c361842ec02f2ddbb9b472a2f5c.tar.bz2 |
add a --with-system-expat option to build pyexpat against the system's lib #7609
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 59056b9..6f05f75 100644 --- a/configure.in +++ b/configure.in @@ -1964,6 +1964,13 @@ LIBS="$withval $LIBS" ], [AC_MSG_RESULT(no)]) +# Check for use of the system expat library +AC_MSG_CHECKING(for --with-system-expat) +AC_ARG_WITH(system_expat, + AC_HELP_STRING(--with-system-expat, build pyexpat module using an installed expat library)) + +AC_MSG_RESULT($with_system_expat) + # Check for use of the system libffi library AC_MSG_CHECKING(for --with-system-ffi) AC_ARG_WITH(system_ffi, |