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