mirror of https://github.com/python/cpython.git
Get rid of --with-check-import-case. (Jason Tishler, SF #409924)
This commit is contained in:
parent
a1351fbd88
commit
6abce91a34
|
@ -19,9 +19,6 @@
|
||||||
/* Define if you have the Mach cthreads package */
|
/* Define if you have the Mach cthreads package */
|
||||||
#undef C_THREADS
|
#undef C_THREADS
|
||||||
|
|
||||||
/* Defined when case of imported modules are checked against case of file. */
|
|
||||||
#undef CHECK_IMPORT_CASE
|
|
||||||
|
|
||||||
/* Define to `long' if <time.h> doesn't define. */
|
/* Define to `long' if <time.h> doesn't define. */
|
||||||
#undef clock_t
|
#undef clock_t
|
||||||
|
|
||||||
|
|
|
@ -84,9 +84,6 @@
|
||||||
/* Define if you have the Mach cthreads package */
|
/* Define if you have the Mach cthreads package */
|
||||||
#undef C_THREADS
|
#undef C_THREADS
|
||||||
|
|
||||||
/* Defined when case of imported modules are checked against case of file. */
|
|
||||||
#undef CHECK_IMPORT_CASE
|
|
||||||
|
|
||||||
/* Define to `long' if <time.h> doesn't define. */
|
/* Define to `long' if <time.h> doesn't define. */
|
||||||
#undef clock_t
|
#undef clock_t
|
||||||
|
|
||||||
|
|
12
configure.in
12
configure.in
|
@ -1188,18 +1188,6 @@ else AC_ERROR(proper usage is --with-libc=STRING)
|
||||||
fi],
|
fi],
|
||||||
[AC_MSG_RESULT(default LIBC=\"$LIBC\")])
|
[AC_MSG_RESULT(default LIBC=\"$LIBC\")])
|
||||||
|
|
||||||
# check for --with-check-import-case
|
|
||||||
AC_ARG_WITH(check-import-case,
|
|
||||||
[ --with-check-import-case enable imported module name case checking],,)
|
|
||||||
AC_MSG_CHECKING(for --with-check-import-case)
|
|
||||||
if test "$with_check_import_case"
|
|
||||||
then
|
|
||||||
AC_DEFINE(CHECK_IMPORT_CASE)
|
|
||||||
AC_MSG_RESULT(yes)
|
|
||||||
else
|
|
||||||
AC_MSG_RESULT(no)
|
|
||||||
fi
|
|
||||||
|
|
||||||
# check for hypot() in math library
|
# check for hypot() in math library
|
||||||
LIBS_SAVE=$LIBS
|
LIBS_SAVE=$LIBS
|
||||||
LIBS="$LIBS $LIBM"
|
LIBS="$LIBS $LIBM"
|
||||||
|
|
Loading…
Reference in New Issue