Minor changes to ease port to MVS
Len Johnson [Fri, 5 Sep 1997 00:00:00 +0000 (00:00 +0000)]
private-msgid: 199709162058.NAA00952@mailsun2.us.oracle.com
Credited: Bud Huff <SMTP%"BAHUFF@us.oracle.com" >
Credited: John Pfuntner <SMTP%"pfuntner@vnet.ibm.com" >
Credited: Peter Prymmer <pvhp@forte.com>

miniperlmain.c
unixish.h

index 680b042..402f2ef 100644 (file)
@@ -2,6 +2,10 @@
  * "The Road goes ever on and on, down from the door where it began."
  */
 
+#ifdef OEMVS
+#pragma runopts(HEAP(1M,32K,ANYWHERE,KEEP,8K,4K))
+#endif
+
 #ifdef __cplusplus
 extern "C" {
 #endif
index 4968a38..a13e2bd 100644 (file)
--- a/unixish.h
+++ b/unixish.h
 #define Fflush(fp)         fflush(fp)
 #define Mkdir(path,mode)   mkdir((path),(mode))
 
+#ifndef PERL_SYS_INIT
 #ifdef PERL_SCO5
+/* this should be set in a hint file, not here */
 #  define PERL_SYS_INIT(c,v)   fpsetmask(0)
 #else
 #  define PERL_SYS_INIT(c,v)
 #endif
+#endif
+
+#ifndef PERL_SYS_TERM
 #define PERL_SYS_TERM()
+#endif
 
 #define BIT_BUCKET "/dev/null"