mirror of
git://git.sv.gnu.org/autoconf
synced 2024-11-21 01:01:48 +08:00
* autoheader.sh (checking completeness): Be ready to recognize
patterns with a value, and spaces between `#' and the directive, e.g. # define FOO FIXME: Reported by John Fortin.
This commit is contained in:
parent
d1291b2ea1
commit
f684a9be3d
@ -1,3 +1,10 @@
|
||||
2000-03-25 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* autoheader.sh (checking completeness): Be ready to recognize
|
||||
patterns with a value, and spaces between `#' and the directive, e.g.
|
||||
# define FOO FIXME:
|
||||
Reported by John Fortin.
|
||||
|
||||
2000-03-25 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* acgeneral.m4 (AC_RUN_IFELSE): New macro.
|
||||
|
3
THANKS
3
THANKS
@ -52,6 +52,7 @@ Jim Blandy jimb@wookumz.gnu.ai.mit.edu
|
||||
Jim Meyering meyering@ascend.com
|
||||
Jiro Takabatake jiro@din.or.jp
|
||||
John David Anglin dave@hiauly1.hia.nrc.ca
|
||||
John Fortin fortinj@attglobal.net
|
||||
John Interrante interran@uluru.stanford.edu
|
||||
John W. Eaton jwe@bevo.che.wisc.edu
|
||||
J"orn Rennecke amylaar@cygnus.co.uk
|
||||
@ -65,8 +66,8 @@ Ken Raeburn raeburn@cygnus.com
|
||||
Koji Arai JCA02266@nifty.ne.jp
|
||||
Kurt D. Zeilenga kurt@openldap.org
|
||||
Larry Schwimmer rosebud@cyclone.stanford.edu
|
||||
Lars J. Aas larsa@sim.no
|
||||
Lars Hecking lhecking@nmrc.ucc.ie
|
||||
Lars J. Aas larsa@sim.no
|
||||
Marcus Daniels marcus@sysc.pdx.edu
|
||||
Marcus Thiessel marcus@xemacs.org
|
||||
Mark Elbrecht snowball3@usa.net
|
||||
|
@ -259,12 +259,14 @@ test -r $localdir/acconfig.h &&
|
||||
sed -n '/@BOTTOM@/,${/@BOTTOM@/!p;}' $localdir/acconfig.h >>$tmpout
|
||||
test -f ${config_h}.bot && cat ${config_h}.bot >>$tmpout
|
||||
|
||||
# Check that all the symbols have a template
|
||||
status=0
|
||||
|
||||
# Check that all the symbols have a template.
|
||||
status=0
|
||||
# Regexp for a white space.
|
||||
w='[ ]'
|
||||
if test -n "$syms"; then
|
||||
for sym in $syms; do
|
||||
if grep "^#[a-z]*[ ][ ]*$sym[ ]*$" $tmpout >/dev/null; then
|
||||
if egrep "^#$w*[a-z]*$w$w*$sym($w*|$w.*)$" $tmpout >/dev/null; then
|
||||
: # All is well.
|
||||
else
|
||||
echo "$0: No template for symbol \`$sym'" >&2
|
||||
@ -273,6 +275,7 @@ if test -n "$syms"; then
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
# If the run was successful, output the result.
|
||||
if test $status = 0; then
|
||||
if test $# = 0; then
|
||||
|
@ -259,12 +259,14 @@ test -r $localdir/acconfig.h &&
|
||||
sed -n '/@BOTTOM@/,${/@BOTTOM@/!p;}' $localdir/acconfig.h >>$tmpout
|
||||
test -f ${config_h}.bot && cat ${config_h}.bot >>$tmpout
|
||||
|
||||
# Check that all the symbols have a template
|
||||
status=0
|
||||
|
||||
# Check that all the symbols have a template.
|
||||
status=0
|
||||
# Regexp for a white space.
|
||||
w='[ ]'
|
||||
if test -n "$syms"; then
|
||||
for sym in $syms; do
|
||||
if grep "^#[a-z]*[ ][ ]*$sym[ ]*$" $tmpout >/dev/null; then
|
||||
if egrep "^#$w*[a-z]*$w$w*$sym($w*|$w.*)$" $tmpout >/dev/null; then
|
||||
: # All is well.
|
||||
else
|
||||
echo "$0: No template for symbol \`$sym'" >&2
|
||||
@ -273,6 +275,7 @@ if test -n "$syms"; then
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
# If the run was successful, output the result.
|
||||
if test $status = 0; then
|
||||
if test $# = 0; then
|
||||
|
@ -259,12 +259,14 @@ test -r $localdir/acconfig.h &&
|
||||
sed -n '/@BOTTOM@/,${/@BOTTOM@/!p;}' $localdir/acconfig.h >>$tmpout
|
||||
test -f ${config_h}.bot && cat ${config_h}.bot >>$tmpout
|
||||
|
||||
# Check that all the symbols have a template
|
||||
status=0
|
||||
|
||||
# Check that all the symbols have a template.
|
||||
status=0
|
||||
# Regexp for a white space.
|
||||
w='[ ]'
|
||||
if test -n "$syms"; then
|
||||
for sym in $syms; do
|
||||
if grep "^#[a-z]*[ ][ ]*$sym[ ]*$" $tmpout >/dev/null; then
|
||||
if egrep "^#$w*[a-z]*$w$w*$sym($w*|$w.*)$" $tmpout >/dev/null; then
|
||||
: # All is well.
|
||||
else
|
||||
echo "$0: No template for symbol \`$sym'" >&2
|
||||
@ -273,6 +275,7 @@ if test -n "$syms"; then
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
# If the run was successful, output the result.
|
||||
if test $status = 0; then
|
||||
if test $# = 0; then
|
||||
|
Loading…
Reference in New Issue
Block a user