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
35a092fe
Commit
35a092fe
authored
Dec 13, 1999
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added detection for getgroups(), fpathconf(), pathconf(),
confstr(), and sysconf().
parent
60429e05
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
131 additions
and
114 deletions
+131
-114
config.h.in
config.h.in
+15
-0
configure
configure
+110
-109
configure.in
configure.in
+6
-5
No files found.
config.h.in
View file @
35a092fe
...
...
@@ -269,6 +269,9 @@
/* Define if you have the getpeername function. */
#undef HAVE_GETPEERNAME
/* Define if you have the getgroups function. */
#undef HAVE_GETGROUPS
/* Define if you have the getpgrp function. */
#undef HAVE_GETPGRP
...
...
@@ -284,6 +287,18 @@
/* Define if you have the getwd function. */
#undef HAVE_GETWD
/* Define if you have the fpathconf function. */
#undef HAVE_FPATHCONF
/* Define if you have the pathconf function. */
#undef HAVE_PATHCONF
/* Define if you have the confstr function. */
#undef HAVE_CONFSTR
/* Define if you have the sysconf function. */
#undef HAVE_SYSCONF
/* Define if you have the hypot function. */
#undef HAVE_HYPOT
...
...
configure
View file @
35a092fe
This diff is collapsed.
Click to expand it.
configure.in
View file @
35a092fe
...
...
@@ -679,12 +679,13 @@ DLINCLDIR=${dldir}
LIBS="$LIBS -ldl -ldld"], AC_MSG_RESULT(no))
# checks for library functions
AC_CHECK_FUNCS(alarm chown clock ctermid ctermid_r dlopen execv flock fork \
fsync fdatasync ftime ftruncate \
getpeername getpgrp getpid getpwent gettimeofday getwd \
kill link lstat mkfifo mktime nice pause plock pthread_init putenv readlink \
AC_CHECK_FUNCS(alarm chown clock confstr ctermid ctermid_r dlopen execv \
flock fork fsync fdatasync fpathconf ftime ftruncate \
getgroups getpeername getpgrp getpid getpwent gettimeofday getwd \
kill link lstat mkfifo mktime nice pathconf pause plock pthread_init \
putenv readlink \
select setgid setlocale setuid setsid setpgid setpgrp setvbuf \
sigaction siginterrupt sigrelse strftime strptime symlink \
sigaction siginterrupt sigrelse strftime strptime symlink
sysconf
\
tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
truncate uname waitpid)
...
...
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