Display use64bits and usemultiplicity but only if necessary.
[p5sagit/p5-mst-13.2.git] / myconfig
1 #!/bin/sh
2
3 # This script is designed to provide a handy summary of the configuration
4 # information being used to build perl. This is especially useful if you
5 # are requesting help from comp.lang.perl.misc on usenet or via mail.
6
7 if test -f config.sh; then TOP=.;
8 elif test -f ../config.sh; then TOP=..;
9 elif test -f ../../config.sh; then TOP=../..;
10 elif test -f ../../../config.sh; then TOP=../../..;
11 elif test -f ../../../../config.sh; then TOP=../../../..;
12 else
13         echo "Can't find the perl config.sh file produced by Configure"; exit 1
14 fi
15 . $TOP/config.sh
16
17 # Note that the text lines /^Summary of/ .. /^\s*$/ are copied into Config.pm.
18
19 $spitshell <<!GROK!THIS!
20 Summary of my $package ($baserev patchlevel $PATCHLEVEL subversion $SUBVERSION) configuration:
21   Platform:
22     osname=$osname, osvers=$osvers, archname=$archname
23     uname='$myuname'
24     hint=$hint, useposix=$useposix, d_sigaction=$d_sigaction
25     usethreads=$usethreads useperlio=$useperlio d_sfio=$d_sfio
26 !GROK!THIS!
27 case "$use64bits$usemultiplicity" in
28 *define*)
29   $spitshell <<!GROK!THIS!
30     use64bits=$use64bits usemultiplicity=$usemultiplicity
31 !GROK!THIS!
32   ;;
33 esac
34 $spitshell <<!GROK!THIS!
35   Compiler:
36     cc='$cc', optimize='$optimize', gccversion=$gccversion
37     cppflags='$cppflags'
38     ccflags ='$ccflags'
39     stdchar='$stdchar', d_stdstdio=$d_stdstdio, usevfork=$usevfork
40     intsize=$intsize, longsize=$longsize, ptrsize=$ptrsize, doublesize=$doublesize
41     d_longlong=$d_longlong, longlongsize=$longlongsize, d_longdbl=$d_longdbl, longdblsize=$longdblsize
42     alignbytes=$alignbytes, usemymalloc=$usemymalloc, prototype=$prototype
43   Linker and Libraries:
44     ld='$ld', ldflags ='$ldflags'
45     libpth=$libpth
46     libs=$libs
47     libc=$libc, so=$so, useshrplib=$useshrplib, libperl=$libperl
48   Dynamic Linking:
49     dlsrc=$dlsrc, dlext=$dlext, d_dlsymun=$d_dlsymun, ccdlflags='$ccdlflags'
50     cccdlflags='$cccdlflags', lddlflags='$lddlflags'
51
52 !GROK!THIS!