remove configure check for memmove (#3716)

Python requires C implementations provide memmove, so we shouldn't need to check for it. The only place using this configure check was expat, where we can simply always define HAVE_MEMMOVE.
This commit is contained in:
Benjamin Peterson 2017-09-24 12:08:40 -07:00 committed by GitHub
parent 5b9299d8c7
commit b1d1c422cc
4 changed files with 2 additions and 19 deletions

View file

@ -3684,9 +3684,6 @@ AC_CHECK_FUNCS(forkpty,,
)
)
# Stuff for expat.
AC_CHECK_FUNCS(memmove)
# check for long file support functions
AC_CHECK_FUNCS(fseek64 fseeko fstatvfs ftell64 ftello statvfs)