Re: [PATCH B::Deparse] fix string uninterpretation
[p5sagit/p5-mst-13.2.git] / hints / hpux.sh
1 #!/usr/bin/sh
2
3 ### SYSTEM ARCHITECTURE
4
5 # Determine the architecture type of this system.
6 # Keep leading tab below -- Configure Black Magic -- RAM, 03/02/97
7         xxOsRevMajor=`uname -r | sed -e 's/^[^0-9]*//' | cut -d. -f1`;
8 if [ "$xxOsRevMajor" -ge 10 ]; then
9     # This system is running >= 10.x
10
11     # Tested on 10.01 PA1.x and 10.20 PA[12].x.
12     # Idea: Scan /usr/include/sys/unistd.h for matches with
13     # "#define CPU_* `getconf # CPU_VERSION`" to determine CPU type.
14     # Note the text following "CPU_" is used, *NOT* the comment.
15     #
16     # ASSUMPTIONS: Numbers will continue to be defined in hex -- and in
17     # /usr/include/sys/unistd.h -- and the CPU_* #defines will be kept
18     # up to date with new CPU/OS releases.
19     xxcpu=`getconf CPU_VERSION`; # Get the number.
20     xxcpu=`printf '0x%x' $xxcpu`; # convert to hex
21     archname=`sed -n -e "s/^#[ \t]*define[ \t]*CPU_//p" /usr/include/sys/unistd.h |
22         sed -n -e "s/[ \t]*$xxcpu[ \t].*//p" |
23         sed -e s/_RISC/-RISC/ -e s/HP_// -e s/_/./`;
24 else
25     # This system is running <= 9.x
26     # Tested on 9.0[57] PA and [78].0 MC680[23]0.  Idea: After removing
27     # MC6888[12] from context string, use first CPU identifier.
28     #
29     # ASSUMPTION: Only CPU identifiers contain no lowercase letters.
30     archname=`getcontext | tr ' ' '\012' | grep -v '[a-z]' | grep -v MC688 |
31         sed -e 's/HP-//' -e 1q`;
32     selecttype='int *'
33     fi
34
35 echo "Archname is $archname"
36
37
38 ### HP-UX OS specific behaviour
39
40 case "$ccflags" in
41 '') cc_cppflags='' ;;
42 *)  set `echo " $ccflags " | sed -e 's/ -A[ea] / /g' -e 's/ -D_HPUX_SOURCE / /'`
43     cc_cppflags="$* -D_HPUX_SOURCE"
44     ;;
45 esac
46 ccflags="-Ae $cc_cppflags"
47 cppflags="-Aa -D__STDC_EXT__ $cc_cppflags"
48
49 case "$prefix" in
50     "") prefix='/opt/perl5' ;;
51     esac
52
53 # -ldbm is obsolete and should not be used
54 # -lBSD contains BSD-style duplicates of SVR4 routines that cause confusion
55 # -lPW is obsolete and should not be used
56 # The libraries crypt, malloc, ndir, and net are empty.
57 set `echo " $libswanted " | sed -e 's/ ld / /' -e 's/ dbm / /' -e 's/ BSD / /' -e 's/ PW / /'`
58 libswanted="$*"
59
60 # By setting the deferred flag below, this means that if you run perl
61 # on a system that does not have the required shared library that you
62 # linked it with, it will die when you try to access a symbol in the
63 # (missing) shared library.  If you would rather know at perl startup
64 # time that you are missing an important shared library, switch the
65 # comments so that immediate, rather than deferred loading is
66 # performed.  Even with immediate loading, you can postpone errors for
67 # undefined (or multiply defined) routines until actual access by
68 # adding the "nonfatal" option.
69 # ccdlflags="-Wl,-E -Wl,-B,immediate $ccdlflags"
70 # ccdlflags="-Wl,-E -Wl,-B,immediate,-B,nonfatal $ccdlflags"
71 ccdlflags="-Wl,-E -Wl,-B,deferred $ccdlflags"
72
73 cc=${cc:-cc}
74
75 ar=/usr/bin/ar # Yes, truly override.  We do not want the GNU ar.
76 full_ar=$ar    # I repeat, no GNU ar.  arrr.
77
78 case `$cc -v 2>&1`"" in
79     *gcc*)  ccisgcc="$define" ;;
80     *)      ccisgcc=''
81             ccversion=`which cc | xargs what | awk '/Compiler/{print $2}'`
82             case "`getconf KERNEL_BITS 2>/dev/null`" in
83                 *64*) ldflags="$ldflags -Wl,+vnocompatwarnings" ;;
84                 esac
85             case "$d_casti32" in
86                 "") d_casti32='undef' ;;
87                 esac
88             ;;
89     esac
90
91 # When HP-UX runs a script with "#!", it sets argv[0] to the script name.
92 toke_cflags='ccflags="$ccflags -DARG_ZERO_IS_SCRIPT"'
93
94
95 ### 64 BITNESS
96
97 case "$use64bitall" in
98     $define|true|[yY]*) use64bitint="$define" ;;
99     esac
100
101 case "$usemorebits" in
102     $define|true|[yY]*) use64bitint="$define"; uselongdouble="$define" ;;
103     esac
104
105 case "$uselongdouble" in
106     $define|true|[yY]*)
107         cat <<EOM >&4
108
109 *** long doubles are not (yet) supported on HP-UX (any version)
110 *** Until it does, we cannot continue, aborting.
111 EOM
112         exit 1 ;;
113     esac
114
115 case "$use64bitint" in
116     $define|true|[Yy])
117
118         if [ "$xxOsRevMajor" -lt 11 ]; then
119             cat <<EOM >&4
120
121 *** 64-bit compilation is not supported on HP-UX $xxOsRevMajor.
122 *** You need at least HP-UX 11.0.
123 *** Cannot continue, aborting.
124 EOM
125             exit 1
126             fi
127
128         # Set libc and the library paths
129         case "$archname" in
130             PA-RISC*)
131                 loclibpth="$loclibpth /lib/pa20_64"
132                 libc='/lib/pa20_64/libc.sl' ;;
133             IA64*) 
134                 loclibpth="$loclibpth /usr/lib/hpux64"
135                 libc='/usr/lib/hpux64/libc.so' ;;
136             esac
137         if [ ! -f "$libc" ]; then
138             cat <<EOM >&4
139
140 *** You do not seem to have the 64-bit libc.
141 *** I cannot find the file $libc.
142 *** Cannot continue, aborting.
143 EOM
144             exit 1
145             fi
146
147         ccflags="$ccflags +DD64"
148         ldflags="$ldflags +DD64"
149
150         # Reset the library checker to make sure libraries
151         # are the right type
152         libscheck='case "`/usr/bin/file $xxx`" in
153                        *ELF-64*|*LP64*|*PA-RISC2.0*) ;;
154                        *) xxx=/no/64-bit$xxx ;;
155                        esac'
156
157         ;;
158
159     *)  # Not in 64-bit mode
160
161         case "$archname" in
162             PA-RISC*)
163                 libc='/lib/libc.sl' ;;
164             IA64*) 
165                 loclibpth="$loclibpth /usr/lib/hpux32"
166                 libc='/usr/lib/hpux32/libc.so' ;;
167             esac
168         ;;
169     esac
170
171
172 ### COMPILER SPECIFICS
173
174 case "$ccisgcc" in
175     $define|true|[Yy])
176         
177         case "$optimize" in
178             "") optimize="-g -O" ;;
179             esac
180         ld="$cc"
181         cccdlflags='-fPIC'
182         lddlflags='-shared'
183         ;;
184
185     *)  # HP's compiler cannot combine -g and -O
186         case "$optimize" in
187             "") optimize="-O" ;;
188             esac
189         ld=/usr/bin/ld
190         cccdlflags='+Z'
191         lddlflags='-b'
192         ;;
193     esac
194
195
196 ## LARGEFILES
197
198 case "$uselargefiles-$ccisgcc" in
199     "$define-$define"|'-define') 
200         cat <<EOM >&4
201
202 *** I'm ignoring large files for this build because
203 *** I don't know how to do use large files in HP-UX using gcc.
204
205 EOM
206         uselargefiles="$undef"
207         ;;
208     esac
209
210 cat >UU/uselargefiles.cbu <<'EOCBU'
211 # This script UU/uselargefiles.cbu will get 'called-back' by Configure 
212 # after it has prompted the user for whether to use large files.
213 case "$uselargefiles" in
214     ""|$define|true|[yY]*)
215         # there are largefile flags available via getconf(1)
216         # but we cheat for now.  (Keep that in the left margin.)
217 ccflags_uselargefiles="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
218
219         ccflags="$ccflags $ccflags_uselargefiles"
220
221         if test -z "$ccisgcc" -a -z "$gccversion"; then
222             # The strict ANSI mode (-Aa) doesn't like large files.
223             ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
224             case "$ccflags" in
225                 *-Ae*) ;;
226                 *)     ccflags="$ccflags -Ae" ;;
227                 esac
228             fi
229         ;;
230     esac
231 EOCBU
232
233 # THREADING
234
235 # This script UU/usethreads.cbu will get 'called-back' by Configure 
236 # after it has prompted the user for whether to use threads.
237 cat >UU/usethreads.cbu <<'EOCBU'
238 case "$usethreads" in
239     $define|true|[yY]*)
240         if [ "$xxOsRevMajor" -lt 10 ]; then
241             cat <<EOM >&4
242
243 HP-UX $xxOsRevMajor cannot support POSIX threads.
244 Consider upgrading to at least HP-UX 11.
245 Cannot continue, aborting.
246 EOM
247             exit 1
248             fi
249
250         if [ "$xxOsRevMajor" -eq 10 ]; then
251             # Under 10.X, a threaded perl can be built
252             if [ -f /usr/include/pthread.h ]; then
253                 if [ -f /usr/lib/libcma.sl ]; then
254                     # DCE (from Core OS CD) is installed
255
256                     # It needs # libcma and OLD_PTHREADS_API. Also
257                     # <pthread.h> needs to be #included before any
258                     # other includes (in perl.h)
259
260                     # HP-UX 10.X uses the old pthreads API
261                     d_oldpthreads="$define"
262
263                     # include libcma before all the others
264                     libswanted="cma $libswanted"
265
266                     # tell perl.h to include <pthread.h> before other
267                     # include files
268                     ccflags="$ccflags -DPTHREAD_H_FIRST"
269
270                     # CMA redefines select to cma_select, and cma_select
271                     # expects int * instead of fd_set * (just like 9.X)
272                     selecttype='int *'
273
274                 elif [ -f /usr/lib/libpthread.sl ]; then
275                     # PTH package is installed
276                     libswanted="pthread $libswanted"
277                 else
278                     libswanted="no_threads_available"
279                     fi
280             else
281                 libswanted="no_threads_available"
282                 fi
283
284             if [ $libswanted = "no_threads_available" ]; then
285                 cat <<EOM >&4
286
287 In HP-UX 10.X for POSIX threads you need both of the files
288 /usr/include/pthread.h and either /usr/lib/libcma.sl or /usr/lib/libpthread.sl.
289 Either you must upgrade to HP-UX 11 or install a posix thread library:
290
291     DCE-CoreTools from HP-UX 10.20 Hardware Extensions 3.0 CD (B3920-13941)
292
293 or
294
295     PTH package from e.g. http://hpux.tn.tudelft.nl/hppd/hpux/alpha.html
296
297 Cannot continue, aborting.
298 EOM
299                 exit 1
300                 fi
301         else
302             # 12 may want upping the _POSIX_C_SOURCE datestamp...
303             ccflags=" -D_POSIX_C_SOURCE=199506L $ccflags"
304             set `echo X "$libswanted "| sed -e 's/ c / pthread c /'`
305             shift
306             libswanted="$*"
307             fi
308
309         usemymalloc='n'
310         ;;
311     esac
312 EOCBU