Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
2910c580
Commit
2910c580
authored
Mar 20, 2001
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of --with-check-import-case. (Jason Tishler, SF #409924)
parent
8933d057
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
343 additions
and
383 deletions
+343
-383
acconfig.h
acconfig.h
+0
-3
config.h.in
config.h.in
+0
-3
configure
configure
+343
-365
configure.in
configure.in
+0
-12
No files found.
acconfig.h
View file @
2910c580
...
...
@@ -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
...
...
config.h.in
View file @
2910c580
...
...
@@ -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
...
...
configure
View file @
2910c580
This source diff could not be displayed because it is too large. You can
view the blob
instead.
configure.in
View file @
2910c580
...
...
@@ -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"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment