This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlexperiment: mark lvalue subroutines accepted
[perl5.git] / hints / solaris_2.sh
1 # hints/solaris_2.sh
2 # Contributions by (in alphabetical order) Alan Burlison, Andy Dougherty,
3 # Dean Roehrich, Jarkko Hietaniemi, Lupe Christoph, Richard Soderberg and
4 # many others.
5 #
6 # See README.solaris for additional information.
7 #
8 # For consistency with gcc, we do not adopt Sun Marketing's
9 # removal of the '2.' prefix from the Solaris version number.
10 # (Configure tries to detect an old fixincludes and needs
11 # this information.)
12
13 # If perl fails tests that involve dynamic loading of extensions, and
14 # you are using gcc, be sure that you are NOT using GNU as and ld.  One
15 # way to do that is to invoke Configure with
16 #
17 #     sh Configure -Dcc='gcc -B/usr/ccs/bin/'
18 #
19 #  (Note that the trailing slash is *required*.)
20 #  gcc will occasionally emit warnings about "unused prefix", but
21 #  these ought to be harmless.  See below for more details.
22
23 # Solaris has secure SUID scripts
24 d_suidsafe=${d_suidsafe:-define}
25
26 # Be paranoid about nm failing to find symbols
27 mistrustnm=${mistrustnm:-run}
28
29 # Several people reported problems with perl's malloc, especially
30 # when use64bitall is defined or when using gcc.
31 #     http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2001-01/msg01318.html
32 #     http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2001-01/msg00465.html
33 usemymalloc=${usemymalloc:-false}
34
35 # malloc wrap works
36 case "$usemallocwrap" in
37 '') usemallocwrap='define' ;;
38 esac
39
40 # Avoid all libraries in /usr/ucblib.
41 # /lib is just a symlink to /usr/lib
42 set `echo $glibpth | sed -e 's@/usr/ucblib@@' -e 's@ /lib @ @'`
43 glibpth="$*"
44
45 # Starting with Solaris 10, we don't want versioned shared libraries because
46 # those often indicate a private use only library.  Especially badly that would
47 # break things with SUNWbdb (Berkeley DB) being installed, which brings in
48 # /usr/lib/libdb.so.1, but that is not really meant for public consumption.
49 #  XXX Revisit after perl 5.10 -- should we apply this to older Solaris
50 # versions too?  (A.D. 11/2007).
51 case "`uname -r`" in
52 5.[0-9]) ;;
53 *) ignore_versioned_solibs=y ;;
54 esac
55
56 # Remove unwanted libraries.  -lucb contains incompatible routines.
57 # -lld and -lsec don't do anything useful. -lcrypt does not
58 # really provide anything we need over -lc, so we drop it, too.
59 # -lmalloc can cause a problem with GNU CC & Solaris.  Specifically,
60 # libmalloc.a may allocate memory that is only 4 byte aligned, but
61 # GNU CC on the Sparc assumes that doubles are 8 byte aligned.
62 # Thanks to  Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>
63 set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ malloc @ @' -e 's@ ucb @ @' -e 's@ sec @ @' -e 's@ crypt @ @'`
64 libswanted="$*"
65
66 # Look for architecture name.  We want to suggest a useful default.
67 case "$archname" in
68 '')
69     if test -f /usr/bin/arch; then
70         archname=`/usr/bin/arch`
71         archname="${archname}-${osname}"
72     elif test -f /usr/ucb/arch; then
73         archname=`/usr/ucb/arch`
74         archname="${archname}-${osname}"
75     fi
76     ;;
77 esac
78
79 #
80 # This extracts the library directories that will be searched by the Sun
81 # Workshop compiler, given the command-line supplied in $tryworkshopcc.
82 # Use thusly: loclibpth="`$getworkshoplibs` $loclibpth"
83 #
84         getworkshoplibs=`cat <<'END'
85 eval $tryworkshopcc -### 2>&1 | \
86 sed -n '/ -Y /s!.* -Y "P,\([^"]*\)".*!\1!p' | tr ':' ' ' | \
87 sed -e 's!/usr/lib/sparcv9!!' -e 's!/usr/ccs/lib/sparcv9!!' \
88     -e 's!/usr/lib!!g' -e 's!/usr/ccs/lib!!g'
89 END
90 `
91
92 case "$cc" in
93 '')     if test -f /opt/SUNWspro/bin/cc; then
94                 cc=/opt/SUNWspro/bin/cc
95                 cat <<EOF >&4
96
97 You specified no cc but you seem to have the Workshop compiler
98 ($cc) installed, using that.
99 If you want something else, specify that in the command line,
100 e.g. Configure -Dcc=gcc
101
102 EOF
103         fi
104         ;;
105 esac
106
107 ######################################################
108 # General sanity testing.  See below for excerpts from the Solaris FAQ.
109 #
110 # From roehrich@ironwood-fddi.cray.com Wed Sep 27 12:51:46 1995
111 # Date: Thu, 7 Sep 1995 16:31:40 -0500
112 # From: Dean Roehrich <roehrich@ironwood-fddi.cray.com>
113 # To: perl5-porters@africa.nicoh.com
114 # Subject: Re: On perl5/solaris/gcc
115 #
116 # Here's another draft of the perl5/solaris/gcc sanity-checker.
117
118 case `type ${cc:-cc}` in
119 */usr/ucb/cc*) cat <<END >&4
120
121 NOTE:  Some people have reported problems with /usr/ucb/cc.
122 If you have difficulties, please make sure the directory
123 containing your C compiler is before /usr/ucb in your PATH.
124
125 END
126 ;;
127 esac
128
129
130 # Check that /dev/fd is mounted.  If it is not mounted, let the
131 # user know that suid scripts may not work.
132 mount | grep '^/dev/fd ' 2>&1 > /dev/null
133 case $? in
134 0) ;;
135 *)
136         cat <<END >&4
137
138 NOTE: Your system does not have /dev/fd mounted.  If you want to
139 be able to use set-uid scripts you must ask your system administrator
140 to mount /dev/fd.
141
142 END
143         ;;
144 esac
145
146
147 # See if libucb can be found in /usr/lib.  If it is, warn the user
148 # that this may cause problems while building Perl extensions.
149 /usr/bin/ls /usr/lib/libucb* >/dev/null 2>&1
150 case $? in
151 0)
152         cat <<END >&4
153
154 NOTE: libucb has been found in /usr/lib.  libucb should reside in
155 /usr/ucblib.  You may have trouble while building Perl extensions.
156
157 END
158 ;;
159 esac
160
161 # Use shell built-in 'type' command instead of /usr/bin/which to
162 # avoid possible csh start-up problems and also to use the same shell
163 # we'll be using to Configure and make perl.
164 # The path name is the last field in the output, but the type command
165 # has an annoying array of possible outputs, e.g.:
166 #       make is hashed (/opt/gnu/bin/make)
167 #       cc is /usr/ucb/cc
168 #       foo not found
169 # use a command like type make | awk '{print $NF}' | sed 's/[()]//g'
170
171 # See if make(1) is GNU make(1).
172 # If it is, make sure the setgid bit is not set.
173 make -v > make.vers 2>&1
174 if grep GNU make.vers > /dev/null 2>&1; then
175     tmp=`type make | awk '{print $NF}' | sed 's/[()]//g'`
176     case "`/usr/bin/ls -lL $tmp`" in
177     ??????s*)
178             cat <<END >&2
179
180 NOTE: Your PATH points to GNU make, and your GNU make has the set-group-id
181 bit set.  You must either rearrange your PATH to put /usr/ccs/bin before the
182 GNU utilities or you must ask your system administrator to disable the
183 set-group-id bit on GNU make.
184
185 END
186             ;;
187     esac
188 fi
189 rm -f make.vers
190
191 cat > UU/cc.cbu <<'EOCBU'
192 # This script UU/cc.cbu will get 'called-back' by Configure after it
193 # has prompted the user for the C compiler to use.
194
195 # If the C compiler is gcc:
196 #   - check the fixed-includes
197 #   - check as(1) and ld(1), they should not be GNU
198 #       (GNU as and ld 2.8.1 and later are reportedly ok, however.)
199 # If the C compiler is not gcc:
200 #   - Check if it is the Workshop/Forte compiler.
201 #     If it is, prepare for 64 bit and long doubles.
202 #   - check as(1) and ld(1), they should not be GNU
203 #       (GNU as and ld 2.8.1 and later are reportedly ok, however.)
204 #
205 # Watch out in case they have not set $cc.
206
207 # Perl compiled with some combinations of GNU as and ld may not
208 # be able to perform dynamic loading of extensions.  If you have a
209 # problem with dynamic loading, be sure that you are using the Solaris
210 # /usr/ccs/bin/as and /usr/ccs/bin/ld.  You can do that with
211 #       sh Configure -Dcc='gcc -B/usr/ccs/bin/'
212 # (note the trailing slash is required).
213 # Combinations that are known to work with the following hints:
214 #
215 #  gcc-2.7.2, GNU as 2.7, GNU ld 2.7
216 #  egcs-1.0.3, GNU as 2.9.1 and GNU ld 2.9.1
217 #       --Andy Dougherty  <doughera@lafayette.edu>
218 #       Tue Apr 13 17:19:43 EDT 1999
219
220 # Get gcc to share its secrets.
221 echo 'int main() { return 0; }' > try.c
222         # Indent to avoid propagation to config.sh
223         verbose=`${cc:-cc} -v -o try try.c 2>&1`
224
225 # XXX TODO:  'specs' output changed from 'Reading specs from' in gcc-[23] to 'Using
226 # built-in specs' in gcc-4.  Perhaps we should just use the same gcc test as
227 # in Configure to see if we're using gcc.
228 if echo "$verbose" | egrep '(Reading specs from)|(Using built-in specs)' >/dev/null 2>&1; then
229         #
230         # Using gcc.
231         #
232         cc_name='gcc'
233
234         # See if as(1) is GNU as(1).  GNU as(1) might not work for this job.
235         if echo "$verbose" | grep ' /usr/ccs/bin/as ' >/dev/null 2>&1; then
236             :
237         else
238             cat <<END >&2
239
240 NOTE: You are using GNU as(1).  GNU as(1) might not build Perl.  If you
241 have trouble, you can use /usr/ccs/bin/as by including -B/usr/ccs/bin/
242 in your ${cc:-cc} command.  (Note that the trailing "/" is required.)
243
244 END
245             # Apparently not needed, at least for as 2.7 and later.
246             # cc="${cc:-cc} -B/usr/ccs/bin/"
247         fi
248
249         # See if ld(1) is GNU ld(1).  GNU ld(1) might not work for this job.
250         # Recompute $verbose since we may have just changed $cc.
251         verbose=`${cc:-cc} -v -o try try.c 2>&1 | grep ld 2>&1`
252
253         if echo "$verbose" | grep ' /usr/ccs/bin/ld ' >/dev/null 2>&1; then
254             # Ok, gcc directly calls the Solaris /usr/ccs/bin/ld.
255             :
256         elif echo "$verbose" | grep "ld: Software Generation Utilities" >/dev/null 2>&1; then
257             # Hmm.  gcc doesn't call /usr/ccs/bin/ld directly, but it
258             # does appear to be using it eventually.  egcs-1.0.3's ld
259             # wrapper does this.
260             # Most Solaris versions of ld I've seen contain the magic
261             # string used in the grep.
262             :
263         elif echo "$verbose" | grep "Solaris Link Editors" >/dev/null 2>&1; then
264             # However some Solaris 8 versions prior to ld 5.8-1.286 contain
265             # this string instead.
266             :
267         else
268             # No evidence yet of /usr/ccs/bin/ld.  Some versions
269             # of egcs's ld wrapper call /usr/ccs/bin/ld in turn but
270             # apparently don't reveal that unless you pass in -V.
271             # (This may all depend on local configurations too.)
272
273             # Recompute verbose with -Wl,-v to find GNU ld if present
274             verbose=`${cc:-cc} -Wl,-v -o try try.c 2>&1 | grep /ld 2>&1`
275
276             myld=`echo $verbose | awk '/\/ld/ {print $1}'`
277             # This assumes that gcc's output will not change, and that
278             # /full/path/to/ld will be the first word of the output.
279             # Thus myld is something like /opt/gnu/sparc-sun-solaris2.5/bin/ld
280
281             # Allow that $myld may be '', due to changes in gcc's output
282             if ${myld:-ld} -V 2>&1 |
283                 grep "ld: Software Generation Utilities" >/dev/null 2>&1; then
284                 # Ok, /usr/ccs/bin/ld eventually does get called.
285                 :
286             elif ${myld:-ld} -V 2>&1 |
287                 grep "Solaris Link Editors" >/dev/null 2>&1; then
288                 # Ok, /usr/ccs/bin/ld eventually does get called.
289                 :
290             else
291                 echo "Found GNU ld='$myld'" >&4
292                 cat <<END >&2
293
294 NOTE: You are using GNU ld(1).  GNU ld(1) might not build Perl.  If you
295 have trouble, you can use /usr/ccs/bin/ld by including -B/usr/ccs/bin/
296 in your ${cc:-cc} command.  (Note that the trailing "/" is required.)
297
298 I will try to use GNU ld by passing in the -Wl,-E flag, but if that
299 doesn't work, you should use -B/usr/ccs/bin/ instead.
300
301 END
302                 ccdlflags="$ccdlflags -Wl,-E"
303                 lddlflags="$lddlflags -Wl,-E -shared"
304             fi
305         fi
306
307 else
308         #
309         # Not using gcc.
310         #
311         cat > try.c << 'EOM'
312 #include <stdio.h>
313 int main() {
314 #if defined(__SUNPRO_C)
315         printf("workshop\n");
316 #else
317 #if defined(__SUNPRO_CC)
318         printf("workshop CC\n");
319 #else
320         printf("\n");
321 #endif
322 #endif
323 return(0);
324 }
325 EOM
326         tryworkshopcc="${cc:-cc} try.c -o try"
327         if $tryworkshopcc >/dev/null 2>&1; then
328                 cc_name=`./try`
329                 if test "$cc_name" = "workshop"; then
330                         ccversion="`${cc:-cc} -V 2>&1|sed -n -e '1s/^[Cc][Cc]: //p'`"
331                 fi
332                 if test "$cc_name" = "workshop CC"; then
333                         ccversion="`${cc:-CC} -V 2>&1|sed -n -e '1s/^[Cc][C]: //p'`"
334                 fi
335                 case "$cc_name" in
336                 workshop*)
337                         # Settings for either cc or CC
338                         if test ! "$use64bitall_done"; then
339                                 loclibpth="/usr/lib /usr/ccs/lib `$getworkshoplibs` $loclibpth"
340                         fi
341                         # Sun CC/cc don't support gcc attributes
342                         d_attribute_format='undef'
343                         d_attribute_malloc='undef'
344                         d_attribute_nonnull='undef'
345                         d_attribute_noreturn='undef'
346                         d_attribute_pure='undef'
347                         d_attribute_unused='undef'
348                         d_attribute_warn_unused_result='undef'
349                         ;;
350                 esac
351         fi
352
353         # See if as(1) is GNU as(1).  GNU might not work for this job.
354         case `as --version < /dev/null 2>&1` in
355         *GNU*)
356                 cat <<END >&2
357
358 NOTE: You are using GNU as(1).  GNU as(1) might not build Perl.
359 You must arrange to use /usr/ccs/bin/as, perhaps by adding /usr/ccs/bin
360 to the beginning of your PATH.
361
362 END
363                 ;;
364         esac
365
366         # See if ld(1) is GNU ld(1).  GNU ld(1) might not work for this job.
367         # ld --version doesn't properly report itself as a GNU tool,
368         # as of ld version 2.6, so we need to be more strict. TWP 9/5/96
369         # Sun's ld always emits the "Software Generation Utilities" string.
370         if ld -V 2>&1 | grep "ld: Software Generation Utilities" >/dev/null 2>&1; then
371             # Ok, ld is /usr/ccs/bin/ld.
372             :
373         else
374             cat <<END >&2
375
376 NOTE: You are apparently using GNU ld(1).  GNU ld(1) might not build Perl.
377 You should arrange to use /usr/ccs/bin/ld, perhaps by adding /usr/ccs/bin
378 to the beginning of your PATH.
379
380 END
381         fi
382 fi
383
384 # as --version or ld --version might dump core.
385 rm -f try try.c core
386 EOCBU
387
388 cat > UU/usethreads.cbu <<'EOCBU'
389 # This script UU/usethreads.cbu will get 'called-back' by Configure
390 # after it has prompted the user for whether to use threads.
391 case "$usethreads" in
392 $define|true|[yY]*)
393         ccflags="-D_REENTRANT $ccflags"
394
395         # -lpthread overrides some lib C functions, so put it before c.
396         set `echo X "$libswanted "| sed -e "s/ c / pthread c /"`
397         shift
398         libswanted="$*"
399
400         # sched_yield is available in the -lrt library.  However,
401         # we can also pick up the equivalent yield() function in the
402         # normal C library.  To avoid pulling in unnecessary
403         # libraries, we'll normally avoid sched_yield()/-lrt and
404         # just use yield().  However, we'll honor a command-line
405         # override : "-Dsched_yield=sched_yield".
406         # If we end up using sched_yield, we're going to need -lrt.
407         sched_yield=${sched_yield:-yield}
408         if test "$sched_yield" = "sched_yield"; then
409             set `echo X "$libswanted "| sed -e "s/ pthread / rt pthread /"`
410             shift
411             libswanted="$*"
412         fi
413
414         # On Solaris 2.6 x86 there is a bug with sigsetjmp() and siglongjmp()
415         # when linked with the threads library, such that whatever positive
416         # value you pass to siglongjmp(), sigsetjmp() returns 1.
417         # Thanks to Simon Parsons <S.Parsons@ftel.co.uk> for this report.
418         # Sun BugID is 4117946, "sigsetjmp always returns 1 when called by
419         # siglongjmp in a MT program". As of 19980622, there is no patch
420         # available.
421         cat >try.c <<'EOM'
422         /* Test for sig(set|long)jmp bug. */
423         #include <setjmp.h>
424
425         int main()
426         {
427             sigjmp_buf env;
428             int ret;
429
430             ret = sigsetjmp(env, 1);
431             if (ret) { return ret == 2; }
432             siglongjmp(env, 2);
433         }
434 EOM
435         if test "`arch`" = i86pc -a `uname -r` = 5.6 && \
436            ${cc:-cc} try.c -lpthread >/dev/null 2>&1 && ./a.out; then
437             d_sigsetjmp=$undef
438         fi
439
440         # These prototypes should be visible since we using
441         # -D_REENTRANT, but that does not seem to work.
442         # It does seem to work for getnetbyaddr_r, weirdly enough,
443         # and other _r functions. (Solaris 8)
444
445         d_ctermid_r_proto="$define"
446         d_gethostbyaddr_r_proto="$define"
447         d_gethostbyname_r_proto="$define"
448         d_getnetbyname_r_proto="$define"
449         d_getprotobyname_r_proto="$define"
450         d_getprotobynumber_r_proto="$define"
451         d_getservbyname_r_proto="$define"
452         d_getservbyport_r_proto="$define"
453
454         # Ditto. (Solaris 7)
455         d_readdir_r_proto="$define"
456         d_readdir64_r_proto="$define"
457         d_tmpnam_r_proto="$define"
458         d_ttyname_r_proto="$define"
459
460         ;;
461 esac
462 EOCBU
463
464 cat > UU/uselargefiles.cbu <<'EOCBU'
465 # This script UU/uselargefiles.cbu will get 'called-back' by Configure
466 # after it has prompted the user for whether to use large files.
467 case "$uselargefiles" in
468 ''|$define|true|[yY]*)
469
470 # Keep these in the left margin.
471 ccflags_uselargefiles="`getconf LFS_CFLAGS 2>/dev/null`"
472 ldflags_uselargefiles="`getconf LFS_LDFLAGS 2>/dev/null`"
473 libswanted_uselargefiles="`getconf LFS_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g'`"
474
475     ccflags="$ccflags $ccflags_uselargefiles"
476     ldflags="$ldflags $ldflags_uselargefiles"
477     libswanted="$libswanted $libswanted_uselargefiles"
478     ;;
479 esac
480 EOCBU
481
482 # This is truly a mess.
483 case "$usemorebits" in
484 "$define"|true|[yY]*)
485         use64bitint="$define"
486         uselongdouble="$define"
487         ;;
488 esac
489
490 if test `uname -p` = i386; then
491     case "$use64bitint" in
492     "$define"|true|[yY]*)
493             ccflags="$ccflags -DPTR_IS_LONG"
494             ;;
495     esac
496 fi
497
498 if test `uname -p` = sparc -o `uname -p` = i386; then
499     cat > UU/use64bitint.cbu <<'EOCBU'
500 # This script UU/use64bitint.cbu will get 'called-back' by Configure
501 # after it has prompted the user for whether to use 64 bit integers.
502 case "$use64bitint" in
503 "$define"|true|[yY]*)
504             case "`uname -r`" in
505             5.[0-4])
506                 cat >&4 <<EOM
507 Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit integers.
508 You should upgrade to at least Solaris 2.5.
509 EOM
510                 exit 1
511                 ;;
512             esac
513
514 # gcc-2.8.1 on Solaris 8 with -Duse64bitint fails op/pat.t test 822
515 # if we compile regexec.c with -O.  Turn off optimization for that one
516 # file.  See hints/README.hints , especially
517 # =head2 Propagating variables to config.sh, method 3.
518 #  A. Dougherty  May 24, 2002
519     case "${gccversion}-${optimize}" in
520     2.8*-O*)
521         # Honor a command-line override (rather unlikely)
522         case "$regexec_cflags" in
523         '') echo "Disabling optimization on regexec.c for gcc $gccversion" >&4
524             regexec_cflags='optimize='
525             echo "regexec_cflags='optimize=\"\"'" >> config.sh
526             ;;
527         esac
528         ;;
529     esac
530     ;;
531 esac
532 EOCBU
533
534     cat > UU/use64bitall.cbu <<'EOCBU'
535 # This script UU/use64bitall.cbu will get 'called-back' by Configure
536 # after it has prompted the user for whether to be maximally 64 bitty.
537 case "$use64bitall-$use64bitall_done" in
538 "$define-"|true-|[yY]*-)
539             case "`uname -r`" in
540             5.[0-6])
541                 cat >&4 <<EOM
542 Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit pointers.
543 You should upgrade to at least Solaris 2.7.
544 EOM
545                 exit 1
546                 ;;
547             esac
548             processor=`uname -p`;
549             if test "$processor" = sparc; then
550                 libc='/usr/lib/sparcv9/libc.so'
551                 if test ! -f $libc; then
552                     cat >&4 <<EOM
553
554 I do not see the 64-bit libc, $libc.
555 Cannot continue, aborting.
556
557 EOM
558                     exit 1
559                 fi
560             fi
561             case "${cc:-cc} -v 2>/dev/null" in
562             *gcc*)
563                 echo 'int main() { return 0; }' > try.c
564                 case "`${cc:-cc} -mcpu=v9 -m64 -S try.c 2>&1 | grep 'm64 is not supported by this configuration'`" in
565                 *"m64 is not supported"*)
566                     cat >&4 <<EOM
567
568 Full 64-bit build is not supported by this gcc configuration.
569 Check http://gcc.gnu.org/ for the latest news of availability
570 of gcc for 64-bit Sparc.
571
572 Cannot continue, aborting.
573
574 EOM
575                     exit 1
576                     ;;
577                 esac
578                 if test "$processor" = sparc; then
579                     loclibpth="/usr/lib/sparcv9 $loclibpth"
580                     ccflags="$ccflags -mcpu=v9"
581                 fi
582                 ccflags="$ccflags -m64"
583
584                 # This adds in -Wa,-xarch=v9.  I suspect that's superfluous,
585                 # since the -m64 above should do that already.  Someone
586                 # with gcc-3.x.x, please test with gcc -v.   A.D. 20-Nov-2003
587 #               if test $processor = sparc -a X`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null` != X; then
588 #                   ccflags="$ccflags -Wa,`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
589 #               fi
590                 ldflags="$ldflags -m64"
591
592                 # See [perl #66604]:  On Solaris 11, gcc -m64 on amd64
593                 # appears not to understand -G.  (gcc -G has not caused
594                 # problems on other platforms in the past.)  gcc versions
595                 # at least as old as 3.4.3 support -shared, so just
596                 # use that with Solaris 11 and later, but keep
597                 # the old behavior for older Solaris versions.
598                 case "$osvers" in
599                         2.?|2.10) lddlflags="$lddlflags -G -m64" ;;
600                         *) lddlflags="$lddlflags -shared -m64" ;;
601                 esac
602                 ;;
603             *)
604                 getconfccflags="`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
605                 getconfldflags="`getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
606                 getconflddlflags="`getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
607                 echo "int main() { return(0); } " > try.c
608                 case "`${cc:-cc} $getconfccflags try.c 2>&1 | grep 'deprecated'`" in
609                 *" -xarch=generic64 is deprecated, use -m64 "*)
610                     getconfccflags=`echo $getconfccflags | sed -e 's/xarch=generic64/m64/'`
611                     getconfldflags=`echo $getconfldflags | sed -e 's/xarch=generic64/m64/'`
612                     getconflddlflags=`echo $getconflddlflags | sed -e 's/xarch=generic64/m64/'`
613                     ;;
614                 esac
615                 ccflags="$ccflags $getconfccflags"
616                 ldflags="$ldflags $getconfldflags"
617                 lddlflags="$lddlflags -G $getconflddlflags"
618
619                 echo "int main() { return(0); } " > try.c
620                 tryworkshopcc="${cc:-cc} try.c -o try $ccflags"
621                 if test "$processor" = sparc; then
622                     loclibpth="/usr/lib/sparcv9 /usr/ccs/lib/sparcv9 $loclibpth"
623                 fi
624                 loclibpth="`$getworkshoplibs` $loclibpth"
625                 ;;
626             esac
627             unset processor
628             use64bitall_done=yes
629             archname64=64
630             ;;
631 esac
632 EOCBU
633
634     # Actually, we want to run this already now, if so requested,
635     # because we need to fix up things right now.
636     case "$use64bitall" in
637     "$define"|true|[yY]*)
638         # CBUs expect to be run in UU
639         cd UU; . ./use64bitall.cbu; cd ..
640         ;;
641     esac
642 fi
643
644 cat > UU/uselongdouble.cbu <<'EOCBU'
645 # This script UU/uselongdouble.cbu will get 'called-back' by Configure
646 # after it has prompted the user for whether to use long doubles.
647 case "$uselongdouble" in
648 "$define"|true|[yY]*)
649         if test "$cc_name" = "workshop"; then
650                 cat > try.c << 'EOM'
651 #include <sunmath.h>
652 int main() { (void) powl(2, 256); return(0); }
653 EOM
654                 if ${cc:-cc} try.c -lsunmath -o try > /dev/null 2>&1 && ./try; then
655                         libswanted="$libswanted sunmath"
656                 fi
657         else
658                 cat >&4 <<EOM
659
660 The Sun Workshop math library is either not available or not working,
661 so I do not know how to do long doubles, sorry.
662 I'm therefore disabling the use of long doubles.
663 EOM
664                 uselongdouble="$undef"
665         fi
666         ;;
667 esac
668 EOCBU
669
670 #
671 # If unsetenv is available, use it in conjunction with PERL_USE_SAFE_PUTENV to
672 # work around Sun bugid 6333830.  Both unsetenv and 6333830 only appear in
673 # Solaris 10, so we don't need to probe explicitly for an OS version.  We have
674 # to append this test to the end of config.over as it needs to run after
675 # Configure has probed for unsetenv, and this hints file is processed before
676 # that has happened.
677 #
678 cat >> config.over <<'EOOVER'
679 if test "$d_unsetenv" = "$define" -a \
680     `expr "$ccflags" : '.*-D_PERL_USE_SAFE_PUTENV'` -eq 0; then
681         ccflags="$ccflags -DPERL_USE_SAFE_PUTENV"
682 fi
683 EOOVER
684
685 rm -f try.c try.o try a.out
686
687 # If using C++, the Configure scan for dlopen() will fail in Solaris
688 # because one of the two (1) an extern "C" linkage definition is needed
689 # (2) #include <dlfcn.h> is needed, *and* a cast to (void*(*)())
690 # is needed for the &dlopen.  Adding any of these would require changing
691 # a delicate spot in Configure, so easier just to force our guess here
692 # for Solaris.  Much the same goes for dlerror().
693 case "$cc" in
694 *g++*|*CC*)
695   d_dlopen='define'
696   d_dlerror='define'
697   ;;
698 esac
699