Commit | Line | Data |
---|---|---|
396e9e6f PP |
1 | #!/bin/rc |
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 | #This script is the "myconfig" script altered to run on Plan 9. | |
8 | #Last Modified: 28-Jun-96 Luther Huffman lutherh@stratcom.com | |
9 | ||
10 | ||
11 | . config.sh | |
12 | ||
13 | # Note that the text lines /^Summary of/ .. /^\s*$/ are copied into Config.pm. | |
14 | # XXX Add d_sigaction (?) once it's defined. | |
15 | ||
16 | $spitshell<<!GROK!THIS! | |
17 | ||
cceca5ed | 18 | Summary of my $package ($baserev version $PERL_VERSION subversion $PERL_SUBVERSION) configuration: |
396e9e6f PP |
19 | Platform: |
20 | osname=$osname, osver=$osvers, archname=$archname | |
21 | uname='$myuname' | |
22 | hint=$hint, useposix=$useposix | |
23 | Compiler: | |
24 | cc='$cc', optimize='$optimize', gccversion=$gccversion | |
25 | cppflags='$cppflags' | |
26 | ccflags ='$ccflags' | |
27 | stdchar='$stdchar', d_stdstdio=$d_stdstdio, usevfork=$usevfork | |
a05353bf | 28 | castflags=$castflags, d_casti32=$d_casti32, d_castneg=$d_castneg |
396e9e6f PP |
29 | intsize=$intsize, alignbytes=$alignbytes, usemymalloc=$usemymalloc, randbits=$randbits |
30 | Linker and Libraries: | |
31 | ld='$ld', ldflags ='$ldflags' | |
32 | libpth=$libpth | |
33 | libs=$libs | |
34 | libc=$libc, so=$so | |
35 | Dynamic Linking: | |
36 | dlsrc=$dlsrc, dlext=$dlext, d_dlsymun=$d_dlsymun, ccdlflags='$ccdlflags' | |
37 | cccdlflags='$cccdlflags', lddlflags='$lddlflags' | |
38 | ||
39 | !GROK!THIS! |