diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-14 14:57:53 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-14 14:57:53 +0000 |
commit | 7862a89c564005b4f2c0eed1308ebd193dcbcd14 (patch) | |
tree | 78b0af99dcf7b739c0afaa59f53c338fdec6cdd9 /wince | |
parent | afdbd6fc5264ad548370ade033daa8fa318ca8ab (diff) |
* 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/branches/ruby_1_8@8455 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'wince')
-rw-r--r-- | wince/Makefile.sub | 2 | ||||
-rw-r--r-- | wince/sys/types.h | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/wince/Makefile.sub b/wince/Makefile.sub index 829ce48c58..1930d23be8 100644 --- a/wince/Makefile.sub +++ b/wince/Makefile.sub @@ -223,8 +223,6 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/wince/Makefile.sub #define HAVE_FCNTL_H 1 #define HAVE_SYS_UTIME_H 1 #define HAVE_FLOAT_H 1 -#define uid_t int -#define gid_t int #define HAVE_STRUCT_STAT_ST_RDEV 1 #define HAVE_ST_RDEV 1 #define GETGROUPS_T int diff --git a/wince/sys/types.h b/wince/sys/types.h index 214bd4a9b9..541d5e8361 100644 --- a/wince/sys/types.h +++ b/wince/sys/types.h @@ -19,8 +19,6 @@ typedef unsigned long ino_t; #define _MODE_T_DEFINED_ #endif -//typedef unsigned short gid_t; -//typedef unsigned short uid_t; typedef long clock_t; #ifndef _PTRDIFF_T_DEFINED @@ -59,9 +57,4 @@ typedef unsigned int size_t; //#define _TIME_T_DEFINED_ //#endif -#ifndef _PID_T_DEFINED_ -typedef unsigned long pid_t; -#define _PID_T_DEFINED_ -#endif - #endif |