diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-12 11:51:25 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-12 11:51:25 +0000 |
commit | 2f42fcb0c2cd8c2699589848aee7b8ee07b30c4f (patch) | |
tree | ada8ea9f2ed4be699d066737eab622e87b4ba42c /uconfig.sh | |
parent | a25ef67de93be431e21193a0e7ed5fca8bc883f7 (diff) | |
download | perl-2f42fcb0c2cd8c2699589848aee7b8ee07b30c4f.tar.gz |
Apply much of Ilya's microperl patch, but instead of
implementing the opendir()/readdir()/closedir() using
external commands give up "ANSI-pureness" and define them
in uconfig.sh, also define other stuff like rename() and putenv().
Leave out the $| emulation in my_fork() since we are
not supposed to have fork() under microperl.
p4raw-id: //depot/perl@20646
Diffstat (limited to 'uconfig.sh')
-rwxr-xr-x | uconfig.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/uconfig.sh b/uconfig.sh index 93c41941ab..2060b43912 100755 --- a/uconfig.sh +++ b/uconfig.sh @@ -55,7 +55,7 @@ d_chown='undef' d_chroot='undef' d_chsize='undef' d_class='undef' -d_closedir='undef' +d_closedir='define' d_cmsghdr_s='undef' d_const='undef' d_copysignl='undef' @@ -271,12 +271,12 @@ d_qgcvt='undef' d_quad='undef' d_random_r='undef' d_readdir64_r='undef' -d_readdir='undef' +d_readdir='define' d_readdir_r='undef' d_readlink='undef' d_readv='undef' d_recvmsg='undef' -d_rename='undef' +d_rename='define' d_rewinddir='undef' d_rmdir='undef' d_safebcpy='undef' @@ -371,7 +371,7 @@ d_strtol='undef' d_strtold='undef' d_strtoll='undef' d_strtoq='undef' -d_strtoul='undef' +d_strtoul='define' d_strtoull='undef' d_strtouq='undef' d_strxfrm='undef' @@ -481,7 +481,7 @@ i_bsdioctl='' i_crypt='undef' i_db='undef' i_dbm='undef' -i_dirent='undef' +i_dirent='define' i_dld='undef' i_dlfcn='undef' i_fcntl='undef' @@ -517,7 +517,7 @@ i_shadow='undef' i_socks='undef' i_stdarg='define' i_stddef='undef' -i_stdlib='undef' +i_stdlib='define' i_string='define' i_sunmath='undef' i_sysaccess='undef' |