Kaydet (Commit) 036144d2 authored tarafından Fred Drake's avatar Fred Drake

Test for and create Modules/Setup in the configure script if it does not

already exist.
üst cf3bc8c5
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -1294,6 +1294,14 @@ cat >> confdefs.h <<\EOF
EOF
AC_CHECK_TYPE(socklen_t, int)
AC_MSG_CHECKING(for Modules/Setup)
if test ! -f Modules/Setup ; then
cp "$srcdir/Modules/Setup.dist" Modules/Setup
AC_MSG_RESULT(creating)
else
AC_MSG_RESULT(already exists)
fi
# generate output files
AC_OUTPUT(Makefile \
Objects/Makefile \
......
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