Get rid of --with-check-import-case. (Jason Tishler, SF #409924)

This commit is contained in:
Guido van Rossum 2001-03-20 13:09:14 +00:00
parent a1351fbd88
commit 6abce91a34
4 changed files with 343 additions and 383 deletions

View file

@ -19,9 +19,6 @@
/* Define if you have the Mach cthreads package */
#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. */
#undef clock_t

View file

@ -84,9 +84,6 @@
/* Define if you have the Mach cthreads package */
#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. */
#undef clock_t

708
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -1188,18 +1188,6 @@ else AC_ERROR(proper usage is --with-libc=STRING)
fi],
[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
LIBS_SAVE=$LIBS
LIBS="$LIBS $LIBM"