1 | case $CONFIGDOTSH in |
---|
2 | '') |
---|
3 | if test -f config.sh; then TOP=.; |
---|
4 | elif test -f ../config.sh; then TOP=..; |
---|
5 | elif test -f ../../config.sh; then TOP=../..; |
---|
6 | elif test -f ../../../config.sh; then TOP=../../..; |
---|
7 | elif test -f ../../../../config.sh; then TOP=../../../..; |
---|
8 | else |
---|
9 | echo "Can't find the perl config.sh file produced by Configure"; |
---|
10 | exit 1 |
---|
11 | fi |
---|
12 | . $TOP/config.sh |
---|
13 | ;; |
---|
14 | esac |
---|
15 | : This forces SH files to create target in same directory as SH file. |
---|
16 | : This is so that make depend always knows where to find SH derivatives. |
---|
17 | case "$0" in |
---|
18 | */*) cd `expr X$0 : 'X\(.*\)/'` ;; |
---|
19 | esac |
---|
20 | echo "Extracting myconfig (with variable substitutions)" |
---|
21 | $spitshell >myconfig <<!GROK!THIS! |
---|
22 | $startsh |
---|
23 | |
---|
24 | # This script is designed to provide a handy summary of the configuration |
---|
25 | # information being used to build perl. This is especially useful if you |
---|
26 | # are requesting help from comp.lang.perl.misc on usenet or via mail. |
---|
27 | |
---|
28 | # Note that the text lines /^Summary of/ .. /^\s*$/ are copied into Config.pm. |
---|
29 | cat <<'!NO!SUBS!' |
---|
30 | Summary of my $package (revision $baserev version $PERL_VERSION subversion $PERL_SUBVERSION) configuration: |
---|
31 | Platform: |
---|
32 | osname=$osname, osvers=$osvers, archname=$archname |
---|
33 | uname='$myuname' |
---|
34 | config_args='$config_args' |
---|
35 | hint=$hint, useposix=$useposix, d_sigaction=$d_sigaction |
---|
36 | usethreads=$usethreads use5005threads=$use5005threads useithreads=$useithreads usemultiplicity=$usemultiplicity |
---|
37 | useperlio=$useperlio d_sfio=$d_sfio uselargefiles=$uselargefiles usesocks=$usesocks |
---|
38 | use64bitint=$use64bitint use64bitall=$use64bitall uselongdouble=$uselongdouble |
---|
39 | Compiler: |
---|
40 | cc='$cc', ccflags ='$ccflags', |
---|
41 | optimize='$optimize', |
---|
42 | cppflags='$cppflags' |
---|
43 | ccversion='$ccversion', gccversion='$gccversion', gccosandvers='$gccosandvers' |
---|
44 | intsize=$intsize, longsize=$longsize, ptrsize=$ptrsize, doublesize=$doublesize, byteorder=$byteorder |
---|
45 | d_longlong=$d_longlong, longlongsize=$longlongsize, d_longdbl=$d_longdbl, longdblsize=$longdblsize |
---|
46 | ivtype='$ivtype', ivsize=$ivsize, nvtype='$nvtype', nvsize=$nvsize, Off_t='$lseektype', lseeksize=$lseeksize |
---|
47 | alignbytes=$alignbytes, usemymalloc=$usemymalloc, prototype=$prototype |
---|
48 | Linker and Libraries: |
---|
49 | ld='$ld', ldflags ='$ldflags' |
---|
50 | libpth=$libpth |
---|
51 | libs=$libs |
---|
52 | perllibs=$perllibs |
---|
53 | libc=$libc, so=$so, useshrplib=$useshrplib, libperl=$libperl |
---|
54 | Dynamic Linking: |
---|
55 | dlsrc=$dlsrc, dlext=$dlext, d_dlsymun=$d_dlsymun, ccdlflags='$ccdlflags' |
---|
56 | cccdlflags='$cccdlflags', lddlflags='$lddlflags' |
---|
57 | |
---|
58 | !NO!SUBS! |
---|
59 | !GROK!THIS! |
---|
60 | chmod 755 myconfig |
---|
61 | $eunicefix myconfig |
---|