diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1998-08-01 15:03:02 +0300 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-08-02 05:20:12 +0000 |
commit | 9d116dd7c895b17badf4ad422ae44da0c4df7bc2 (patch) | |
tree | 6e0cd77e3539952c892983238473264f672472b9 /hints/os390.sh | |
parent | e6df7ed16ebd06f5315f3016c00996876580109c (diff) | |
download | perl-9d116dd7c895b17badf4ad422ae44da0c4df7bc2.tar.gz |
support OE/MVS
Message-Id: <199808010903.MAA09371@alpha.hut.fi>
Subject: [PATCH] 5.005_01: OE MVS
p4raw-id: //depot/maint-5.005/perl@1697
Diffstat (limited to 'hints/os390.sh')
-rw-r--r-- | hints/os390.sh | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/hints/os390.sh b/hints/os390.sh index fd590eaa4e..1cf945dca3 100644 --- a/hints/os390.sh +++ b/hints/os390.sh @@ -1,4 +1,7 @@ # hints/os390.sh +# +# OS/390 hints by David J. Fiander <davidf@mks.com> +# # OS/390 OpenEdition Release 3 Mon Sep 22 1997 thanks to: # # John Pfuntner <pfuntner@vnet.ibm.com> @@ -11,23 +14,43 @@ # as well as the authors of the aix.sh file # +# To get ANSI C, we need to use c89, and ld doesn't exist cc='c89' -ccflags='-DMAXSIG=38 -DOEMVS -D_OE_SOCKETS -D_XOPEN_SOURCE_EXTENDED -D_ALL_SOURCE' +ld='c89' +# c89 hides most of the useful header stuff, _ALL_SOURCE turns it on again, +# YYDYNAMIC ensures that the OS/390 yacc generated parser is reentrant. +# -DEBCDIC should come from Configure. +ccflags='-DMAXSIG=38 -DOEMVS -D_OE_SOCKETS -D_XOPEN_SOURCE_EXTENDED -D_ALL_SOURCE -DYYDYNAMIC' +# Turning on optimization breaks perl optimize='none' + alignbytes=8 -usemymalloc='y' + +usemymalloc='n' + so='a' + +# On OS/390, libc.a doesn't really hold anything at all, +# so running nm on it is pretty useless. +usenm='n' + +# Dynamic loading doesn't work on OS/390 quite yet +usedl='n' dlext='none' + +# Configure can't figure this out for some reason d_shmatprototype='define' + usenm='false' i_time='define' i_systime='define' -d_select='undef' # (from aix.sh) # uname -m output is too specific and not appropriate here +# osname should come from Configure # case "$archname" in '') archname="$osname" ;; esac +archobjs=ebcdic.o |