MPE/iX tweaks from Mark Bixby.
Jarkko Hietaniemi [Tue, 12 Jun 2001 23:59:10 +0000 (23:59 +0000)]
p4raw-id: //depot/perl@10539

hints/mpeix.sh
mpeix/mpeixish.h
util.c

index d2ca5f0..f6fd44c 100644 (file)
@@ -92,6 +92,7 @@ d_link='undef'
 d_mblen='define'
 d_mbstowcs='define'
 d_mbtowc='define'
+d_memchr='define'
 d_memcmp='define'
 d_memcpy='define'
 d_memmove='define'
index 5624621..8dba0a8 100644 (file)
 #undef PRPASSWD
 #undef PWAGE
 #undef PWCOMMENT
+
+#define ITIMER_REAL 0
diff --git a/util.c b/util.c
index 81f413e..d9e9c65 100644 (file)
--- a/util.c
+++ b/util.c
@@ -4980,6 +4980,7 @@ Perl_sv_realpath(pTHX_ SV *sv, char *path, STRLEN len)
 
     return TRUE;
 #else
+    {
     DIR *parent;
     Direntry_t *dp;
     char dotdots[MAXPATHLEN] = { 0 };
@@ -5082,6 +5083,7 @@ Perl_sv_realpath(pTHX_ SV *sv, char *path, STRLEN len)
     SvPOK_only(sv);
 
     return TRUE;
+    }
 #endif
 #else
     return FALSE;