This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
taint.c fix for VMS
[perl5.git] / myconfig
CommitLineData
a0d0e21e
LW
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
b5d6801c 5# are requesting help from comp.lang.perl.misc on usenet or via mail.
a0d0e21e
LW
6
7if test -f config.sh; then TOP=.;
8elif test -f ../config.sh; then TOP=..;
9elif test -f ../../config.sh; then TOP=../..;
10elif test -f ../../../config.sh; then TOP=../../..;
11elif test -f ../../../../config.sh; then TOP=../../../..;
12else
13 echo "Can't find the perl config.sh file produced by Configure"; exit 1
14fi
15. $TOP/config.sh
16
3c81428c 17# Note that the text lines /^Summary of/ .. /^\s*$/ are copied into Config.pm.
3c81428c 18
a0d0e21e 19$spitshell <<!GROK!THIS!
ca29cf18 20Summary of my $package ($baserev patchlevel $PATCHLEVEL subversion $SUBVERSION) configuration:
a0d0e21e 21 Platform:
365675d5 22 osname=$osname, osvers=$osvers, archname=$archname
a0d0e21e 23 uname='$myuname'
4c8f623d 24 config_args='$config_args'
ca29cf18 25 hint=$hint, useposix=$useposix, d_sigaction=$d_sigaction
693762b4 26 usethreads=$usethreads useperlio=$useperlio d_sfio=$d_sfio
cf0d5662 27 use64bits=$use64bits usemultiplicity=$usemultiplicity
a0d0e21e 28 Compiler:
3c81428c 29 cc='$cc', optimize='$optimize', gccversion=$gccversion
a0d0e21e
LW
30 cppflags='$cppflags'
31 ccflags ='$ccflags'
a0d0e21e 32 stdchar='$stdchar', d_stdstdio=$d_stdstdio, usevfork=$usevfork
cb66d7b2 33 intsize=$intsize, longsize=$longsize, ptrsize=$ptrsize, doublesize=$doublesize
dc45a647 34 d_longlong=$d_longlong, longlongsize=$longlongsize, d_longdbl=$d_longdbl, longdblsize=$longdblsize
cb66d7b2 35 alignbytes=$alignbytes, usemymalloc=$usemymalloc, prototype=$prototype
3c81428c 36 Linker and Libraries:
37 ld='$ld', ldflags ='$ldflags'
a0d0e21e
LW
38 libpth=$libpth
39 libs=$libs
dc45a647 40 libc=$libc, so=$so, useshrplib=$useshrplib, libperl=$libperl
a0d0e21e 41 Dynamic Linking:
3c81428c 42 dlsrc=$dlsrc, dlext=$dlext, d_dlsymun=$d_dlsymun, ccdlflags='$ccdlflags'
43 cccdlflags='$cccdlflags', lddlflags='$lddlflags'
a1896f58 44
a0d0e21e 45!GROK!THIS!