+Tue Jan 13 09:19:33 1998 Tom Tromey <tromey@cygnus.com>
+
+ * aclocal.in (add_file): Hack for Perl 4. From Seth Alves.
+
Thu Dec 11 12:29:46 1997 Ian Lance Taylor <ian@cygnus.com>
* scripts.am: Don't add @EXEEXT@ to installed scripts. Scripts
Ralph Schleicher rs@purple.UL.BaWue.DE
Ramón García Fernández ramon@jl1.quim.ucm.es
Rob Savoye rob@cygnus.com
+Seth Alves alves@hungry.com
Steve M. Robbins steve@nyongwa.montreal.qc.ca
Tatu Ylonen ylo@ssh.fi
The Crimson Binome steve@nyongwa.montreal.qc.ca
# @configure_input@
# aclocal - create aclocal.m4 by scanning configure.in
-# Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+# Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
$file_seen{$file} = 1;
$output .= $file_contents{$file} . "\n";
- local (@rlist);
+ local ($a, @rlist);
foreach (split ("\n", $file_contents{$file}))
{
- if (/$ac_require_rx/g)
+ # This is a hack for Perl 4.
+ $a = $_;
+ if ($a =~ /$ac_require_rx/g)
{
push (@rlist, $1);
}