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