This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Yet another HP-UX hints version from Merijn.
[perl5.git] / hints / os390.sh
1 # hints/os390.sh
2 #
3 # OS/390 hints by David J. Fiander <davidf@mks.com>
4 #
5 # OS/390 OpenEdition Release 3 Mon Sep 22 1997 thanks to:
6
7 #     John Goodyear <johngood@us.ibm.com>
8 #     John Pfuntner <pfuntner@vnet.ibm.com>
9 #     Len Johnson <lenjay@ibm.net>
10 #     Bud Huff  <BAHUFF@us.oracle.com>
11 #     Peter Prymmer <pvhp@forte.com>
12 #     Andy Dougherty  <doughera@lafcol.lafayette.edu>
13 #     Tim Bunce  <Tim.Bunce@ig.co.uk>
14 #
15 #  as well as the authors of the aix.sh file
16 #
17
18 # To get ANSI C, we need to use c89, and ld doesn't exist
19 # You can override this with Configure -Dcc=gcc -Dld=ld.
20 case "$cc" in
21 '') cc='c89' ;;
22 esac
23 case "$ld" in
24 '') ld='c89' ;;
25 esac
26
27 # -DMAXSIG=38 maximum signal number
28 # -DOEMVS is used in place of #ifdef __MVS__ in certain places.
29 # -D_OE_SOCKETS alters system headers.
30 # -D_XOPEN_SOURCE_EXTENDEDA alters system headers.
31 # c89 hides most of the useful header stuff, _ALL_SOURCE turns it on again.
32 # YYDYNAMIC ensures that the OS/390 yacc generated parser is reentrant.
33 # -DEBCDIC should come from Configure and need not be mentioned here.
34 # Prepend your favorites with Configure -Dccflags=your_favorites
35 case "$ccflags" in
36 '') ccflags='-DMAXSIG=38 -DOEMVS -D_OE_SOCKETS -D_XOPEN_SOURCE_EXTENDED -D_ALL_SOURCE -DYYDYNAMIC' ;;
37 *) ccflags="$ccflags -DMAXSIG=38 -DOEMVS -D_OE_SOCKETS -D_XOPEN_SOURCE_EXTENDED -D_ALL_SOURCE -DYYDYNAMIC" ;;
38 esac
39
40 # Turning on optimization breaks perl.
41 # You can override this with Configure -Doptimize='-O' or somesuch.
42 case "$optimize" in
43 '') optimize='none' ;;
44 esac
45
46 # To link via definition side decks we need the dll option
47 # You can override this with Configure -Ucccdlflags or somesuch.
48 case "$cccdlflags" in
49 '') cccdlflags='-W 0,dll' ;;
50 esac
51
52 case "$so" in
53 '') so='a' ;;
54 esac
55
56 case "$alignbytes" in
57 '') alignbytes=8 ;;
58 esac
59
60 case "$usemymalloc" in
61 '') usemymalloc='n' ;;
62 esac
63
64 # On OS/390, libc.a doesn't really hold anything at all,
65 # so running nm on it is pretty useless.
66 # You can override this with Configure -Dusenm.
67 case "$usenm" in
68 '') usenm='false' ;;
69 esac
70
71 # Setting ldflags='-Wl,EDIT=NO' will get rid of the symbol
72 # information at the end of the executable (=> smaller binaries).
73 # Override this option with -Dldflags='whatever else you wanted'.
74 case "$ldflags" in
75 '') ldflags='-Wl,EDIT=NO' ;;
76 esac
77
78 # In order to build with dynamic be sure to specify:
79 #   Configure -Dusedl
80 # Do not forget to add $archlibexp/CORE to your LIBPATH.
81 # You might want to override some of this with things like:
82 #  Configure -Dusedl -Ddlext=so -Ddlsrc=dl_dllload.xs.
83 case "$usedl" in
84 '')
85     usedl='n' 
86     case "$dlext" in
87     '') dlext='none' ;;
88     esac
89     ;;
90 define)
91     case "$useshrplib" in
92     '') useshrplib='true' ;;
93     esac
94     case "$dlsrc" in
95     '') dlsrc='dl_dllload.xs' ;;
96     esac
97     # For performance use 'so' at or beyond v2.8, 'dll' for 2.7 and prior versions
98     case "`uname -v`x`uname -r`" in
99     02x0[89].*|02x1[0-9].*|[0-9][3-9]x*) 
100         so='so'
101         case "$dlext" in
102         '') dlext='so' ;;
103         esac
104         ;;
105     *) 
106         so='dll'
107         case "$dlext" in
108         '') dlext='dll' ;;
109         esac
110         ;;
111     esac
112     libperl="libperl.$so"
113     ccflags="$ccflags -D_SHR_ENVIRON -DPERL_EXTERNAL_GLOB -Wc,dll"
114     cccdlflags='-c -Wc,dll,EXPORTALL'
115     # The following will need to be modified for the installed libperl.x.
116     # The modification to Config.pm is done by the installperl script after the build and test.
117     ccdlflags="-W l,dll `pwd`/libperl.x"
118     lddlflags="-W l,dll `pwd`/libperl.x"
119     ;;
120 esac
121 # even on static builds using LIBPATH should be OK.
122 case "$ldlibpthname" in
123 '') ldlibpthname=LIBPATH ;;
124 esac
125
126 # Header files to include.
127 # You can override these with Configure -Ui_time -Ui_systime.
128 case "$i_time" in
129 '') i_time='define' ;;
130 esac
131 case "$i_systime" in
132 '') i_systime='define' ;;
133 esac
134
135 # (from aix.sh)
136 # uname -m output is too specific and not appropriate here
137 # osname should come from Configure
138 # You can override this with Configure -Darchname='s390' but please don't.
139 case "$archname" in
140 '') archname="$osname" ;;
141 esac
142
143 # We have our own cppstdin script.  This is not a variable since 
144 # Configure sees the presence of the script file.
145 # We put system header -D definitions in so that Configure
146 # can find the shmat() prototype in <sys/shm.h> and various
147 # other things.  Unfortunately, cppflags occurs too late to be of 
148 # value external to the script.  This may need to be revisited 
149 # under a compiler other than c89.
150 case "$usedl" in
151 define)
152 echo 'cat >.$$.c; '"$cc"' -D_OE_SOCKETS -D_XOPEN_SOURCE_EXTENDED -D_ALL_SOURCE -D_SHR_ENVIRON -E -Wc,NOLOC ${1+"$@"} .$$.c; rm .$$.c' > cppstdin
153     ;;
154 *)
155 echo 'cat >.$$.c; '"$cc"' -D_OE_SOCKETS -D_XOPEN_SOURCE_EXTENDED -D_ALL_SOURCE -E -Wc,NOLOC ${1+"$@"} .$$.c; rm .$$.c' > cppstdin
156     ;;
157 esac
158
159 #
160 # Note that Makefile.SH employs a bare yacc command to generate 
161 # perly.[hc] and a2p.[hc], hence you may wish to:
162 #
163 #    alias yacc='myyacc'
164 #
165 # Then if you would like to use myyacc and skip past the
166 # following warnings try invoking Configure like so: 
167 #
168 #    sh Configure -Dbyacc=yacc
169 #
170 # This trick ought to work even if your yacc is byacc.
171 #
172 if test "X$byacc" = "Xbyacc" ; then
173     if test -e /etc/yyparse.c ; then
174         : we should be OK - perhaps do a test -r?
175     else
176         cat <<EOWARN >&4
177
178 Warning.  You do not have a copy of yyparse.c, the default 
179 yacc parser template file, in place in /etc.
180 EOWARN
181         if test -e /samples/yyparse.c ; then
182             cat <<EOWARN >&4
183
184 There does appear to be a template file in /samples though.
185 Please run:
186
187       cp /samples/yyparse.c /etc
188
189 before attempting to Configure the build of $package.
190
191 EOWARN
192         else
193             cat <<EOWARN >&4
194
195 There does not appear to be one in /samples either.  
196 If you feel you can make use of an alternate yacc-like 
197 parser generator then please read the comments in the
198 hints/os390.sh file carefully.
199
200 EOWARN
201         fi
202         exit 1
203     fi
204 fi
205