This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Configure: eliminate some left over debug output
[metaconfig.git] / U / modified / Findhdr.U
1 ?RCS: $Id: Findhdr.U,v 3.0.1.2 1994/10/29 15:53:08 ram Exp $
2 ?RCS:
3 ?RCS: Copyright (c) 1991-1993, Raphael Manfredi
4 ?RCS:
5 ?RCS: You may redistribute only under the terms of the Artistic License,
6 ?RCS: as specified in the README file that comes with the distribution.
7 ?RCS: You may reuse parts of this distribution only within the terms of
8 ?RCS: that same Artistic License; a copy of which may be found at the root
9 ?RCS: of the source tree for dist 3.0.
10 ?RCS:
11 ?RCS: Original Author: Thomas Neumann <tom@smart.bo.open.de>
12 ?RCS:
13 ?RCS: $Log: Findhdr.U,v $
14 ?RCS: Revision 3.0.1.2  1994/10/29  15:53:08  ram
15 ?RCS: patch36: added ?F: line for metalint file checking
16 ?RCS:
17 ?RCS: Revision 3.0.1.1  1994/05/06  14:03:56  ram
18 ?RCS: patch23: cppminus must be after other cppflags, not before
19 ?RCS:
20 ?RCS: Revision 3.0  1993/08/18  12:04:54  ram
21 ?RCS: Baseline for dist 3.0 netwide release.
22 ?RCS:
23 ?X:
24 ?X: This unit produces a findhdr script which is used to locate the header
25 ?X: files in $usrinc or other stranger places using cpp capabilities. The
26 ?X: script is given an include file base name, like 'stdio.h' or 'sys/file.h'
27 ?X: and it returns the full path of the include file and a zero status or an
28 ?X: empty string with an error status if the file could not be located.
29 ?X:
30 ?MAKE:Findhdr: grep test tr rm incpth awk cat startsh \
31         cppstdin cppminus +cppflags osname
32 ?MAKE:  -pick add $@ %<
33 ?LINT:extern cppfilter
34 ?LINT:define fieldn
35 ?S:fieldn:
36 ?S:     This variable is used internally by Configure. It contains the position
37 ?S:     of the included file name in cpp output. That is to say, when cpp
38 ?S:     pre-processes a #include <file> line, it replaces it by a # line which
39 ?S:     contains the original position in the input file and the full name of
40 ?S:     included file, between "quotes".
41 ?S:.
42 ?V:fieldn
43 ?F:./findhdr !fieldn
44 ?T:cline pos wanted name awkprg usrincdir status testaccess
45 : determine filename position in cpp output
46 echo " "
47 echo "Computing filename position in cpp output for #include directives..." >&4
48 case "$osname" in
49 amigaos) fieldn=3 ;;  # Workaround for a bug in abc (pdksh).
50 esac
51 case "$fieldn" in
52 '')
53 case "$osname" in
54 vos) testaccess=-e ;;
55 *)   testaccess=-r ;;
56 esac
57 echo '#include <stdio.h>' > foo.c
58 $cat >fieldn <<EOF
59 $startsh
60 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
61 $grep '^[       ]*#.*stdio\.h' | \
62 while read cline; do
63         pos=1
64         set \$cline
65         while $test \$# -gt 0; do
66                 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
67                         echo "\$pos"
68                         exit 0
69                 fi
70                 shift
71                 pos=\`expr \$pos + 1\`
72         done
73 done
74 EOF
75 chmod +x fieldn
76 fieldn=`./fieldn`
77 $rm -f foo.c fieldn
78 ;;
79 esac
80 case $fieldn in
81 '') pos='???';;
82 1) pos=first;;
83 2) pos=second;;
84 3) pos=third;;
85 *) pos="${fieldn}th";;
86 esac
87 echo "Your cpp writes the filename in the $pos field of the line."
88
89 ?X: To locate a header file, we cannot simply check for $usrinc/file.h, since
90 ?X: some machine have the headers in weird places and our only hope is that
91 ?X: the C pre-processor will know how to find those headers. Thank you NexT!
92 : locate header file
93 $cat >findhdr <<EOF
94 $startsh
95 wanted=\$1
96 name=''
97 for usrincdir in $incpth
98 do
99         if test -f \$usrincdir/\$wanted; then
100                 echo "\$usrincdir/\$wanted"
101                 exit 0
102         fi
103 done
104 awkprg='{ print \$$fieldn }'
105 echo "#include <\$wanted>" > foo\$\$.c
106 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
107 $cppfilter $grep "^[    ]*#.*\$wanted" | \
108 while read cline; do
109         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
110         case "\$name" in
111         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
112         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
113         *) exit 2;;
114         esac;
115 done;
116 #
117 # status = 0: grep returned 0 lines, case statement not executed
118 # status = 1: headerfile found
119 # status = 2: while loop executed, no headerfile found
120 #
121 status=\$?
122 $rm -f foo\$\$.c;
123 if test \$status -eq 1; then
124         exit 0;
125 fi
126 exit 1
127 EOF
128 chmod +x findhdr
129