Factor the PERL_SYS_INIT() code, from Hugo van der Sanden.
[p5sagit/p5-mst-13.2.git] / hints / posix-bc.sh
1 #! /usr/bin/bash -norc
2 # hints/posix-bc.sh
3 #
4 # BS2000 (Posix Subsystem) hints by Thomas Dorner <Thomas.Dorner@start.de>
5 #
6 #  thanks to the authors of the os390.sh
7 #
8
9 # To get ANSI C, we need to use c89, and ld does not exist
10 # You can override this with Configure -Dcc=gcc -Dld=ld.
11 case "$cc" in
12 '') cc='c89' ;;
13 esac
14 case "$ld" in
15 '') ld='c89' ;;
16 esac
17
18 # C-Flags:
19 # -DPOSIX_BC
20 # -DUSE_PURE_BISON
21 # -D_XOPEN_SOURCE_EXTENDED alters system headers.
22 # -DPERL_IGNORE_FPUSIG=SIGFPE
23 # Prepend your favorites with Configure -Dccflags=your_favorites
24 case "$ccflags" in
25 '') ccflags='-K enum_long,llm_case_lower,llm_keep,no_integer_overflow -DPOSIX_BC -DUSE_PURE_BISON -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED -DPERL_IGNORE_FPUSIG=SIGFPE' ;;
26 *) ccflags='$ccflags -Kenum_long,llm_case_lower,llm_keep,no_integer_overflow -DPOSIX_BC -DUSE_PURE_BISON -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED -DPERL_IGNORE_FPUSIG=SIGFPE' ;;
27 esac
28
29 # ccdlflags have yet to be determined.
30 #case "$ccdlflags" in
31 #'') ccdlflags='-c' ;;
32 #esac
33
34 # cccdlflags have yet to be determined.
35 #case "$cccdlflags" in
36 #'') cccdlflags='' ;;
37 #esac
38
39 # ldflags have yet to be determined.
40 #case "$ldflags" in
41 #'') ldflags='' ;;
42 #esac
43
44 # lddlflags have yet to be determined.
45 #case "$lddlflags" in
46 #'') lddlflags='' ;;
47 #esac
48
49 # Flags on a RISC-Host (SUNRISE):
50 if [ -n "`bs2cmd SHOW-SYSTEM-INFO | egrep 'HSI-ATT.*TYPE.*SR'`" ]; then
51     echo
52     echo "Congratulations, you are running a machine with Sunrise CPUs."
53     echo "Let's hope you have the matching RISC compiler as well."
54     ccflags="-K risc_4000 $ccflags"
55     ldflags='-K risc_4000'
56 fi
57
58 # Turning on optimization breaks perl (CORE-DUMP):
59 # You can override this with Configure -Doptimize='-O' or somesuch.
60 case "$optimize" in
61 '') optimize='none' ;;
62 esac
63
64 # we don''t use dynamic memorys (yet):
65 case "$so" in
66 '') so='none' ;;
67 esac
68
69 case "$usemymalloc" in
70 '') usemymalloc='n' ;;
71 esac
72
73 # On BS2000/Posix, libc.a does not really hold anything at all,
74 # so running nm on it is pretty useless.
75 # You can override this with Configure -Dusenm.
76 case "$usenm" in
77 '') usenm='false' ;;
78 esac
79
80 # Dynamic loading doesn't work on OS/390 quite yet.
81 # You can override this with
82 #  Configure -Dusedl -Ddlext=.so -Ddlsrc=dl_dllload.xs.
83 case "$usedl" in
84 '') usedl='n' ;;
85 esac
86 case "$dlext" in
87 '') dlext='none' ;;
88 esac
89 #case "$dlsrc" in
90 #'') dlsrc='none' ;;
91 #esac
92 #case "$ldlibpthname" in
93 #'') ldlibpthname=LIBPATH ;;
94 #esac
95