IO::Socket::INET patch
[p5sagit/p5-mst-13.2.git] / hints / hpux.sh
CommitLineData
a28b458a 1#! /bin/sh
2
8e07c86e 3# hints/hpux.sh
90248788 4# Perl Configure hints file for Hewlett-Packard's HP-UX 9.x and 10.x
a28b458a 5# (Hopefully, 7.x through 11.x.)
6#
7# This file is based on hints/hpux_9.sh, Perl Configure hints file for
8# Hewlett Packard HP-UX 9.x
9#
8e07c86e 10# Use Configure -Dcc=gcc to use gcc.
a28b458a 11#
8ebc5c01 12# From: Jeff Okamoto <okamoto@corp.hp.com>
8e07c86e 13# and
023707f0 14# hints/hpux_10.sh, Perl Configure hints file for Hewlett Packard HP-UX 10.x
8e07c86e 15# From: Giles Lean <giles@nemeton.com.au>
a28b458a 16# and
17# Use #define CPU_* instead of comments for >= 10.x.
18# Support PA1.2 under 10.x.
19# Distinguish between PA2.0, PA2.1, etc.
20# Distinguish between MC68020, MC68030, MC68040
21# Don't assume every OS != 10 is < 10, (e.g., 11).
22# From: Chuck Phillips <cdp@fc.hp.com>
5ff3f7a4 23# HP-UX 10 pthreads hints: Matthew T Harden <mthard@mthard1.monsanto.com>
f1bed316 24# From: Dominic Dunlop <domo@computer.org>
25# Abort and offer advice if bundled (non-ANSI) C compiler selected
c7d9b096 26# From: H.Merijn Brand <h.m.brand@hccnet.nl>
27# ccversion detection
28# perl/64/HP-UX wants libdb-3.0 to be shared ELF 64
29# generic pthread support detection for PTH package
30
023707f0 31
f1bed316 32# This version: March 8, 2000
8ebc5c01 33# Current maintainer: Jeff Okamoto <okamoto@corp.hp.com>
8e07c86e 34
68dc0745 35#--------------------------------------------------------------------
8e07c86e 36# Use Configure -Dcc=gcc to use gcc.
37# Use Configure -Dprefix=/usr/local to install in /usr/local.
68dc0745 38#
a28b458a 39# You may have dynamic loading problems if the environment variable
40# LDOPTS='-a archive'. Under >= 10.x, you can instead LDOPTS='-a
41# archive_shared' to prefer archive libraries without requiring them.
42# Regardless of HPUX release, in the "libs" variable or the ext.libs
43# file, you can always give explicit path names to archive libraries
44# that may not exist on the target machine. E.g., /usr/lib/libndbm.a
45# instead of -lndbm. See also note below on ndbm.
46#
47# ALSO, bear in mind that gdbm and Berkely DB contain incompatible
48# replacements for ndbm (and dbm) routines. If you want concurrent
49# access to ndbm files, you need to make sure libndbm is linked in
50# *before* gdbm and Berkely DB. Lastly, remember to check the
51# "ext.libs" file which is *probably* messing up the order. Often,
52# you can replace ext.libs with an empty file to fix the problem.
68dc0745 53#
491527d0 54# If you get a message about "too much defining", as may happen
55# in HPUX < 10, you might have to append a single entry to your
56# ccflags: '-Wp,-H256000'
57# NOTE: This is a single entry (-W takes the argument 'p,-H256000').
68dc0745 58#--------------------------------------------------------------------
4633a7c4 59
8e07c86e 60# Turn on the _HPUX_SOURCE flag to get many of the HP add-ons
a28b458a 61# regardless of compiler. For the HP ANSI C compiler, you may also
62# want to include +e to enable "long long" and "long double".
63#
64# HP compiler flags to include (if at all) *both* as part of ccflags
65# and cc itself so Configure finds (and builds) everything
66# consistently:
67# -Aa -D_HPUX_SOURCE +e
68#
69# Lastly, you may want to include the "-z" HP linker flag so that
70# reading from a NULL pointer causes a SEGV.
d5374cbf 71ccflags="$ccflags -D_HPUX_SOURCE"
023707f0 72
8e07c86e 73# Check if you're using the bundled C compiler. This compiler doesn't support
f1bed316 74# ANSI C (the -Aa flag) and so is not suitable for perl 5.5 and later.
8e07c86e 75case "$cc" in
a5f75d66 76'') if cc $ccflags -Aa 2>&1 | $contains 'option' >/dev/null
8e07c86e 77 then
68dc0745 78 cat <<'EOM' >&4
8e07c86e 79
f1bed316 80The bundled C compiler is not ANSI-compliant, and so cannot be used to
81build perl. Please see the file README.hpux for advice on alternative
82compilers.
8e07c86e 83
f1bed316 84Cannot continue, aborting.
8e07c86e 85EOM
f1bed316 86 exit 1
8e07c86e 87 else
88 ccflags="$ccflags -Aa" # The add-on compiler supports ANSI C
959c26a4 89 # cppstdin and cpprun need the -Aa option if you use the unbundled
90 # ANSI C compiler (*not* the bundled K&R compiler or gcc)
91 # [XXX this should be set automatically by Configure, but isn't yet.]
92 # [XXX This is reported not to work. You may have to edit config.sh.
93 # After running Configure, set cpprun and cppstdin in config.sh,
94 # run "Configure -S" and then "make".]
95 cpprun="${cc:-cc} -E -Aa"
96 cppstdin="$cpprun"
97 cppminus='-'
98 cpplast='-'
8e07c86e 99 fi
24ef6058 100 case "$optimize" in
101 # For HP's ANSI C compiler, up to "+O3" is safe for everything
102 # except shared libraries (PIC code). Max safe for PIC is "+O2".
103 # Setting both causes innocuous warnings.
104 '') optimize='-O'
105 #optimize='+O3'
106 #cccdlflags='+z +O2'
107 ;;
108 esac
6cc5f3e7 109 cc=cc
8e07c86e 110 ;;
111esac
112
5e4c82f0 113cc=${cc:-cc}
114
b36fec95 115case `$cc -v 2>&1`"" in
116*gcc*) ccisgcc="$define" ;;
9a7d309c 117*) ccisgcc=''
ba6d005f 118 ccversion=`which cc | xargs what | awk '/Compiler/{print $2}'`
9a7d309c 119 ;;
b36fec95 120esac
121
4633a7c4 122# Determine the architecture type of this system.
fa89f053 123# Keep leading tab below -- Configure Black Magic -- RAM, 03/02/97
a28b458a 124 xxOsRevMajor=`uname -r | sed -e 's/^[^0-9]*//' | cut -d. -f1`;
125 #xxOsRevMinor=`uname -r | sed -e 's/^[^0-9]*//' | cut -d. -f2`;
126if [ "$xxOsRevMajor" -ge 10 ]
4633a7c4 127then
a28b458a 128 # This system is running >= 10.x
129
130 # Tested on 10.01 PA1.x and 10.20 PA[12].x. Idea: Scan
131 # /usr/include/sys/unistd.h for matches with "#define CPU_* `getconf
132 # CPU_VERSION`" to determine CPU type. Note the part following
133 # "CPU_" is used, *NOT* the comment.
134 #
135 # ASSUMPTIONS: Numbers will continue to be defined in hex -- and in
136 # /usr/include/sys/unistd.h -- and the CPU_* #defines will be kept
137 # up to date with new CPU/OS releases.
138 xxcpu=`getconf CPU_VERSION`; # Get the number.
139 xxcpu=`printf '0x%x' $xxcpu`; # convert to hex
140 archname=`sed -n -e "s/^#[ \t]*define[ \t]*CPU_//p" /usr/include/sys/unistd.h |
141 sed -n -e "s/[ \t]*$xxcpu[ \t].*//p" |
142 sed -e s/_RISC/-RISC/ -e s/HP_// -e s/_/./`;
4633a7c4 143else
a28b458a 144 # This system is running <= 9.x
145 # Tested on 9.0[57] PA and [78].0 MC680[23]0. Idea: After removing
146 # MC6888[12] from context string, use first CPU identifier.
147 #
148 # ASSUMPTION: Only CPU identifiers contain no lowercase letters.
149 archname=`getcontext | tr ' ' '\012' | grep -v '[a-z]' | grep -v MC688 |
150 sed -e 's/HP-//' -e 1q`;
90248788 151 selecttype='int *'
4633a7c4 152fi
153
140a4568 154# Do this right now instead of the delayed callback unit approach.
ec7b9793 155case "$use64bitall" in
156$define|true|[yY]*) use64bitint="$define" ;;
157esac
6d5d7abf 158case "$usemorebits" in
159$define|true|[yY]*) use64bitint="$define"; uselongdouble="$define" ;;
160esac
10cc9d2a 161case "$use64bitint" in
bf0c440f 162$define|true|[yY]*)
163 if [ "$xxOsRevMajor" -lt 11 ]; then
164 cat <<EOM >&4
165
16664-bit compilation is not supported on HP-UX $xxOsRevMajor.
167You need at least HP-UX 11.0.
168Cannot continue, aborting.
bf0c440f 169EOM
170 exit 1
171 fi
172
173 # Without the 64-bit libc we cannot do much.
ec7b9793 174 libc='/lib/pa20_64/libc.sl'
175 if [ ! -f "$libc" ]; then
bf0c440f 176 cat <<EOM >&4
177
ec7b9793 178*** You do not seem to have the 64-bit libraries in /lib/pa20_64.
179*** Most importantly, I cannot find the $libc.
180*** Cannot continue, aborting.
bf0c440f 181EOM
182 exit 1
183 fi
184
185 ccflags="$ccflags +DD64"
186 ldflags="$ldflags +DD64"
09ea5ba9 187 test -d /lib/pa20_64 && loclibpth="$loclibpth /lib/pa20_64"
6aedb45f 188 libswanted="$libswanted pthread"
b1b472cb 189 libscheck='case "`/usr/bin/file $xxx`" in
bf0c440f 190*LP64*|*PA-RISC2.0*) ;;
191*) xxx=/no/64-bit$xxx ;;
192esac'
43bf06b7 193 if test -n "$ccisgcc" -o -n "$gccversion"; then
194 ld="$cc"
195 else
196 ld=/usr/bin/ld
197 fi
bf0c440f 198 ar=/usr/bin/ar
199 full_ar=$ar
200
43bf06b7 201 if test -z "$ccisgcc" -a -z "$gccversion"; then
202 # The strict ANSI mode (-Aa) doesn't like the LL suffixes.
adc81979 203 ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
b36fec95 204 case "$ccflags" in
adc81979 205 *-Ae*) ;;
b36fec95 206 *) ccflags="$ccflags -Ae" ;;
207 esac
43bf06b7 208 fi
bf0c440f 209
210 set `echo " $libswanted " | sed -e 's@ dl @ @'`
211 libswanted="$*"
212
bf0c440f 213 ;;
214esac
215
b36fec95 216case "$ccisgcc" in
217# Even if you use gcc, prefer the HP math library over the GNU one.
218"$define") test -d /lib/pa1.1 && ccflags="$ccflags -L/lib/pa1.1" ;;
219esac
220
b36fec95 221case "$ccisgcc" in
222"$define") ;;
223*) case "`getconf KERNEL_BITS 2>/dev/null`" in
224 *64*) ldflags="$ldflags -Wl,+vnocompatwarnings" ;;
225 esac
226 ;;
bf0c440f 227esac
228
8e07c86e 229# Remove bad libraries that will cause problems
230# (This doesn't remove libraries that don't actually exist)
231# -lld is unneeded (and I can't figure out what it's used for anyway)
232# -ldbm is obsolete and should not be used
233# -lBSD contains BSD-style duplicates of SVR4 routines that cause confusion
234# -lPW is obsolete and should not be used
8e07c86e 235# The libraries crypt, malloc, ndir, and net are empty.
0ca047c2 236# Although -lndbm should be included, it will make perl blow up if you should
237# copy the binary to a system without libndbm.sl. See ccdlflags below.
a28b458a 238set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ dbm @ @' -e 's@ BSD @ @' -e 's@ PW @ @'`
8e07c86e 239libswanted="$*"
240
a28b458a 241# By setting the deferred flag below, this means that if you run perl
242# on a system that does not have the required shared library that you
243# linked it with, it will die when you try to access a symbol in the
244# (missing) shared library. If you would rather know at perl startup
245# time that you are missing an important shared library, switch the
246# comments so that immediate, rather than deferred loading is
247# performed. Even with immediate loading, you can postpone errors for
248# undefined (or multiply defined) routines until actual access by
249# adding the "nonfatal" option.
250# ccdlflags="-Wl,-E -Wl,-B,immediate $ccdlflags"
251# ccdlflags="-Wl,-E -Wl,-B,immediate,-B,nonfatal $ccdlflags"
214989af 252ccdlflags="-Wl,-E -Wl,-B,deferred $ccdlflags"
8e07c86e 253
f1c70a39 254case "$usemymalloc" in
255'') usemymalloc='y' ;;
256esac
257
8e07c86e 258alignbytes=8
a28b458a 259# For native nm, you need "-p" to produce BSD format output.
260nm_opt='-p'
8ebc5c01 261
774d564b 262# When HP-UX runs a script with "#!", it sets argv[0] to the script name.
263toke_cflags='ccflags="$ccflags -DARG_ZERO_IS_SCRIPT"'
264
8e07c86e 265# If your compile complains about FLT_MIN, uncomment the next line
266# POSIX_cflags='ccflags="$ccflags -DFLT_MIN=1.17549435E-38"'
267
4633a7c4 268# Comment this out if you don't want to follow the SVR4 filesystem layout
8e07c86e 269# that HP-UX 10.0 uses
270case "$prefix" in
08a33705 271'') prefix='/opt/perl5' ;;
8e07c86e 272esac
4137488c 273
dc45a647 274# HP-UX can't do setuid emulation offered by Configure
275case "$d_dosuid" in
276'') d_dosuid="$undef" ;;
277esac
278
5cf1d1f1 279# HP-UX 11 groks also LD_LIBRARY_PATH but SHLIB_PATH
280# is recommended for compatibility.
281case "$ldlibpthname" in
282'') ldlibpthname=SHLIB_PATH ;;
283esac
284
716026f9 285# HP-UX 10.20 and gcc 2.8.1 break UINT32_MAX.
b36fec95 286case "$ccisgcc" in
287"$define") ccflags="$ccflags -DUINT32_MAX_BROKEN" ;;
716026f9 288esac
289
fa2879fb 290cat > UU/cc.cbu <<'EOSH'
291# XXX This script UU/cc.cbu will get 'called-back' by Configure after it
292# XXX has prompted the user for the C compiler to use.
293# Get gcc to share its secrets.
294echo 'main() { return 0; }' > try.c
295 # Indent to avoid propagation to config.sh
296 verbose=`${cc:-cc} -v -o try try.c 2>&1`
297if echo "$verbose" | grep '^Reading specs from' >/dev/null 2>&1; then
298 # Using gcc.
299 : nothing to see here, move on.
300else
301 # Using cc.
302 ar=${ar:-ar}
303 case "`$ar -V 2>&1`" in
304 *GNU*)
305 if test -x /usr/bin/ar; then
306 cat <<END >&2
307
9c3309b4 308*** You are using HP cc(1) but GNU ar(1). This might lead into trouble
309*** later on, I'm switching to HP ar to play safe.
310
fa2879fb 311END
312 ar=/usr/bin/ar
313 fi
314 ;;
315 esac
316fi
317
318EOSH
319
4137488c 320# Date: Fri, 6 Sep 96 23:15:31 CDT
321# From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
322# I looked through the gcc.info and found this:
323# * GNU CC compiled code sometimes emits warnings from the HP-UX
324# assembler of the form:
325# (warning) Use of GR3 when frame >= 8192 may cause conflict.
326# These warnings are harmless and can be safely ignored.
104d25b7 327
de6124c8 328cat > UU/usethreads.cbu <<'EOCBU'
104d25b7 329# This script UU/usethreads.cbu will get 'called-back' by Configure
330# after it has prompted the user for whether to use threads.
104d25b7 331case "$usethreads" in
332$define|true|[yY]*)
333 if [ "$xxOsRevMajor" -lt 10 ]; then
334 cat <<EOM >&4
f1ee07ac 335
104d25b7 336HP-UX $xxOsRevMajor cannot support POSIX threads.
337Consider upgrading to at least HP-UX 11.
338Cannot continue, aborting.
339EOM
340 exit 1
341 fi
342 case "$xxOsRevMajor" in
343 10)
c7d9b096 344 # Under 10.X, a threaded perl can be built
345 if [ -f /usr/include/pthread.h ]; then
346 if [ -f /usr/lib/libcma.sl ]; then
347 # DCE (from Core OS CD) is installed
348
349 # It needs # libcma and OLD_PTHREADS_API. Also <pthread.h>
350 # needs to be #included before any other includes
351 # (in perl.h)
352
353 # HP-UX 10.X uses the old pthreads API
354 d_oldpthreads="$define"
355
356 # include libcma before all the others
357 libswanted="cma $libswanted"
358
359 # tell perl.h to include <pthread.h> before other include files
360 ccflags="$ccflags -DPTHREAD_H_FIRST"
361
362 # CMA redefines select to cma_select, and cma_select expects int *
363 # instead of fd_set * (just like 9.X)
364 selecttype='int *'
365
366 elif [ -f /usr/lib/libpthread.sl ]; then
367 # PTH package is installed
368 libswanted="pthread $libswanted"
369 else
370 libswanted="no_threads_available"
371 fi
372 else
373 libswanted="no_threads_available"
374 fi
375
376 if [ $libswanted = "no_threads_available" ]; then
104d25b7 377 cat <<EOM >&4
f1ee07ac 378
104d25b7 379In HP-UX 10.X for POSIX threads you need both of the files
c7d9b096 380/usr/include/pthread.h and either /usr/lib/libcma.sl or /usr/lib/libpthread.sl.
381Either you must upgrade to HP-UX 11 or install a posix thread library:
f1ee07ac 382
383 DCE-CoreTools from HP-UX 10.20 Hardware Extensions 3.0 CD (B3920-13941)
384
385or
386
387 PTH package from http://hpux.tn.tudelft.nl/hppd/hpux/alpha.html
388
104d25b7 389Cannot continue, aborting.
390EOM
391 exit 1
c7d9b096 392 fi
104d25b7 393
104d25b7 394 ;;
227c31c3 395 11 | 12) # 12 may want upping the _POSIX_C_SOURCE datestamp...
396 ccflags=" -D_POSIX_C_SOURCE=199506L $ccflags"
397 set `echo X "$libswanted "| sed -e 's/ c / pthread c /'`
398 shift
399 libswanted="$*"
104d25b7 400 ;;
401 esac
227c31c3 402 usemymalloc='n'
104d25b7 403 ;;
404esac
405EOCBU
406
5e3f8698 407case "$uselargefiles-$ccisgcc" in
408"$define-$define"|'-define')
409 cat <<EOM >&4
410
411*** I'm ignoring large files for this build because
412*** I don't know how to do use large files in HP-UX using gcc.
413
414EOM
415 uselargefiles="$undef"
416 ;;
417esac
418
8a647129 419cat > UU/uselargefiles.cbu <<'EOCBU'
420# This script UU/uselargefiles.cbu will get 'called-back' by Configure
de6124c8 421# after it has prompted the user for whether to use large files.
bd9b35c9 422case "$uselargefiles" in
10cc9d2a 423''|$define|true|[yY]*)
7b0dd49d 424 # there are largefile flags available via getconf(1)
9422c00b 425 # but we cheat for now. (Keep that in the left margin.)
45c9e83b 426ccflags_uselargefiles="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
9422c00b 427
45c9e83b 428 ccflags="$ccflags $ccflags_uselargefiles"
43999f95 429
43bf06b7 430 if test -z "$ccisgcc" -a -z "$gccversion"; then
431 # The strict ANSI mode (-Aa) doesn't like large files.
a0147706 432 ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
433 case "$ccflags" in
434 *-Ae*) ;;
435 *) ccflags="$ccflags -Ae" ;;
436 esac
43bf06b7 437 fi
adc81979 438
bd9b35c9 439 ;;
440esac
441EOCBU
6b8eaf93 442
b36fec95 443# keep that leading tab.
444 ccisgcc=''
f7dd4e7f 445
afd0dee8 446# Until we figure out what to be probe for in Configure (ditto for irix_6.sh)
8b3f2640 447case "$d_casti32" in
448'') d_casti32='undef' ;;
db3030c0 449esac
450