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
59903fe2
Commit
59903fe2
authored
Apr 24, 2000
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added tests for socklen_t
parent
b33aa1a5
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
257 additions
and
217 deletions
+257
-217
acconfig.h
acconfig.h
+3
-0
config.h.in
config.h.in
+3
-0
configure
configure
+250
-217
configure.in
configure.in
+1
-0
No files found.
acconfig.h
View file @
59903fe2
...
...
@@ -84,6 +84,9 @@
/* sizeof(void *) */
#undef SIZEOF_VOID_P
/* Define to `int' if <sys/types.h> doesn't define. */
#undef socklen_t
/* Define for SOLARIS 2.x */
#undef SOLARIS
...
...
config.h.in
View file @
59903fe2
...
...
@@ -149,6 +149,9 @@
/* Define to empty if the keyword does not work. */
#undef signed
/* Define to `int' if <sys/types.h> doesn't define. */
#undef socklen_t
/* Define if you can safely include both <sys/select.h> and <sys/time.h>
(which you can't on SCO ODT 3.0). */
#undef SYS_SELECT_WITH_SYS_TIME
...
...
configure
View file @
59903fe2
This diff is collapsed.
Click to expand it.
configure.in
View file @
59903fe2
...
...
@@ -380,6 +380,7 @@ AC_TYPE_PID_T
AC_TYPE_SIGNAL
AC_TYPE_SIZE_T
AC_TYPE_UID_T
AC_CHECK_TYPE(socklen_t, int)
# Sizes of various common basic types
AC_CHECK_SIZEOF(int)
...
...
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