This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
IRIX 64-bitness fixes.
[metaconfig.git] / U / modified / Findhdr.U
CommitLineData
959f3c4c
JH
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 Licence,
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 Licence; 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 +usrinc awk cat startsh \
31 cppstdin cppminus +cppflags
32?MAKE: -pick add $@ %<
33?LINT:define fieldn
34?S:fieldn:
35?S: This variable is used internally by Configure. It contains the position
36?S: of the included file name in cpp output. That is to say, when cpp
37?S: pre-processes a #include <file> line, it replaces it by a # line which
38?S: contains the original position in the input file and the full name of
39?S: included file, between "quotes".
40?S:.
41?V:fieldn
42?F:./findhdr !fieldn
43?T:cline pos wanted name awkprg usrincdir status
44: determine filename position in cpp output
45echo " "
46echo "Computing filename position in cpp output for #include directives..." >&4
47echo '#include <stdio.h>' > foo.c
48$cat >fieldn <<EOF
49$startsh
50$cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
51$grep '^[ ]*#.*stdio\.h' | \
52while read cline; do
53 pos=1
54 set \$cline
55 while $test \$# -gt 0; do
56 if $test -r \`echo \$1 | $tr -d '"'\`; then
57 echo "\$pos"
58 exit 0
59 fi
60 shift
61 pos=\`expr \$pos + 1\`
62 done
63done
64EOF
65chmod +x fieldn
66fieldn=`./fieldn`
67$rm -f foo.c fieldn
68case $fieldn in
69'') pos='???';;
701) pos=first;;
712) pos=second;;
723) pos=third;;
73*) pos="${fieldn}th";;
74esac
75echo "Your cpp writes the filename in the $pos field of the line."
76
77?X: To locate a header file, we cannot simply check for $usrinc/file.h, since
78?X: some machine have the headers in weird places and our only hope is that
79?X: the C pre-processor will know how to find those headers. Thank you NexT!
80: locate header file
81$cat >findhdr <<EOF
82$startsh
83wanted=\$1
84name=''
85for usrincdir in $usrinc
86do
87 if test -f \$usrincdir/\$wanted; then
88 echo "\$usrincdir/\$wanted"
89 exit 0
90 fi
91done
92awkprg='{ print \$$fieldn }'
93echo "#include <\$wanted>" > foo\$\$.c
94$cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
95$grep "^[ ]*#.*\$wanted" | \
96while read cline; do
97 name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
98 case "\$name" in
99 *[/\\\\]\$wanted) echo "\$name"; exit 1;;
100 *[\\\\/]\$wanted) echo "\$name"; exit 1;;
101 *) exit 2;;
102 esac;
103done;
104#
105# status = 0: grep returned 0 lines, case statement not executed
106# status = 1: headerfile found
107# status = 2: while loop executed, no headerfile found
108#
109status=\$?
110$rm -f foo\$\$.c;
111if test \$status -eq 1; then
112 exit 0;
113fi
114exit 1
115EOF
116chmod +x findhdr
117