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