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
3d949420
Commit
3d949420
authored
Apr 20, 2002
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#546163, fix link problem on Solaris 8 for makedev when using mknod
parent
a4eb14b7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
Modules/posixmodule.c
Modules/posixmodule.c
+3
-0
configure
configure
+2
-1
configure.in
configure.in
+1
-1
pyconfig.h.in
pyconfig.h.in
+3
-0
No files found.
Modules/posixmodule.c
View file @
3d949420
...
@@ -278,6 +278,9 @@ extern int lstat(const char *, struct stat *);
...
@@ -278,6 +278,9 @@ extern int lstat(const char *, struct stat *);
# define STRUCT_STAT struct stat
# define STRUCT_STAT struct stat
#endif
#endif
#if defined(HAVE_MKNOD) && defined(HAVE_SYS_MKDEV_H)
#include <sys/mkdev.h>
#endif
/* Return a dictionary corresponding to the POSIX environment table */
/* Return a dictionary corresponding to the POSIX environment table */
...
...
configure
View file @
3d949420
...
@@ -3852,12 +3852,13 @@ fi
...
@@ -3852,12 +3852,13 @@ fi
for
ac_header
in
dlfcn.h fcntl.h grp.h limits.h langinfo.h
\
for
ac_header
in
dlfcn.h fcntl.h grp.h limits.h langinfo.h
\
libintl.h locale.h ncurses.h poll.h pthread.h
\
libintl.h locale.h ncurses.h poll.h pthread.h
\
signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h termios.h
\
signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h termios.h
\
sys/audioio.h sys/file.h sys/lock.h sys/modem.h db_185.h db.h
\
sys/audioio.h sys/file.h sys/lock.h sys/m
kdev.h sys/m
odem.h db_185.h db.h
\
sys/param.h sys/poll.h sys/select.h sys/socket.h sys/time.h sys/times.h
\
sys/param.h sys/poll.h sys/select.h sys/socket.h sys/time.h sys/times.h
\
sys/un.h sys/utsname.h sys/wait.h pty.h term.h libutil.h
\
sys/un.h sys/utsname.h sys/wait.h pty.h term.h libutil.h
\
ndbm.h db1/ndbm.h gdbm/ndbm.h sys/resource.h netpacket/packet.h
ndbm.h db1/ndbm.h gdbm/ndbm.h sys/resource.h netpacket/packet.h
...
...
configure.in
View file @
3d949420
...
@@ -594,7 +594,7 @@ AC_HEADER_STDC
...
@@ -594,7 +594,7 @@ AC_HEADER_STDC
AC_CHECK_HEADERS(dlfcn.h fcntl.h grp.h limits.h langinfo.h \
AC_CHECK_HEADERS(dlfcn.h fcntl.h grp.h limits.h langinfo.h \
libintl.h locale.h ncurses.h poll.h pthread.h \
libintl.h locale.h ncurses.h poll.h pthread.h \
signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h termios.h \
signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h termios.h \
sys/audioio.h sys/file.h sys/lock.h sys/modem.h db_185.h db.h \
sys/audioio.h sys/file.h sys/lock.h sys/m
kdev.h sys/m
odem.h db_185.h db.h \
sys/param.h sys/poll.h sys/select.h sys/socket.h sys/time.h sys/times.h \
sys/param.h sys/poll.h sys/select.h sys/socket.h sys/time.h sys/times.h \
sys/un.h sys/utsname.h sys/wait.h pty.h term.h libutil.h \
sys/un.h sys/utsname.h sys/wait.h pty.h term.h libutil.h \
ndbm.h db1/ndbm.h gdbm/ndbm.h sys/resource.h netpacket/packet.h)
ndbm.h db1/ndbm.h gdbm/ndbm.h sys/resource.h netpacket/packet.h)
...
...
pyconfig.h.in
View file @
3d949420
...
@@ -475,6 +475,9 @@
...
@@ -475,6 +475,9 @@
/* Define to 1 if you have the <sys/lock.h> header file. */
/* Define to 1 if you have the <sys/lock.h> header file. */
#undef HAVE_SYS_LOCK_H
#undef HAVE_SYS_LOCK_H
/* Define to 1 if you have the <sys/mkdev.h> header file. */
#undef HAVE_SYS_MKDEV_H
/* Define to 1 if you have the <sys/modem.h> header file. */
/* Define to 1 if you have the <sys/modem.h> header file. */
#undef HAVE_SYS_MODEM_H
#undef HAVE_SYS_MODEM_H
...
...
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