mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in: Check for the availability of pid_t, gid_t and uid_t and
remove AC_TYPE_UID_T. fixed: [ruby-core:04745]
* defines.h: Remove pid_t typedef.
* ruby.h: Define rb_pid_t, rb_gid_t and rb_uid_t in accordance with
the available system types.
* process.c: Change instances of pid_t and gid_t to their rb_*
counterparts.
* ext/pty/pty.c: Change pid_t to rb_pid_t.
* vms/config.h: Define HAVE_{P,G,U}ID_T to 1.
* win32/Makefile.sub: Remove #define for {g,u}id_t.
* win32/win32.c: Change pid_t to rb_pid_t.
* wince/Makefile.sub: Remove #define for {g,u}id_t.
* wince/sys/types.h: Remove definitions of {p,g,u}id_t.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8455 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9bbb8406cb
commit
642ddf7201
11 changed files with 65 additions and 30 deletions
|
|
@ -23,6 +23,9 @@
|
|||
#define HAVE_GETPGRP 1
|
||||
/* #define HAVE_GETPRIORITY 1 */
|
||||
/* #define HAVE_GETRLIMIT 1 */
|
||||
#define HAVE_PID_T 1
|
||||
#define HAVE_GID_T 1
|
||||
#define HAVE_UID_T 1
|
||||
#define HAVE_HYPOT 1
|
||||
#define HAVE_ISASCII 1
|
||||
/* #define HAVE_ISINF 1 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue