Some aclocal bug fixes
[platform/upstream/automake.git] / aclocal.in
1 #!@PERL@
2 # -*- perl -*-
3 # @configure_input@
4
5 # aclocal - create aclocal.m4 by scanning configure.in
6 # Copyright (C) 1996 Free Software Foundation, Inc.
7
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option)
11 # any later version.
12
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 # 02111-1307, USA.
22
23 # Written by Tom Tromey <tromey@cygnus.com>.
24
25 eval 'exec @PERL@ -S $0 ${1+"$@"}'
26     if 0;
27
28 # aclocal - scan configure.in and generate aclocal.m4.
29
30 # Some constants.
31 $VERSION = "@VERSION@";
32 $PACKAGE = "@PACKAGE@";
33 $prefix = "@prefix@";
34 # Note that this isn't pkgdatadir, but a separate directory.
35 $acdir = "@datadir@/aclocal";
36
37 # Some globals.
38
39 # Exit status.
40 $exit_status = 0;
41
42 # Text to output.
43 $output = '';
44
45 # Output file name.
46 $output_file = 'aclocal.m4';
47
48 # Which macros have been seen.
49 %macro_seen = ();
50
51 # Which files have been seen.
52 %file_seen = ();
53
54 # Map macro names to file names.
55 %map = ();
56
57 # Map file names to file contents.
58 %file_contents = ();
59
60 # How much to say.
61 $verbosity = 0;
62
63 @obsolete_macros =
64     (
65      'AC_FEATURE_CTYPE',
66      'AC_FEATURE_ERRNO',
67      'AC_FEATURE_EXIT',
68      'AC_SYSTEM_HEADER',
69      'fp_C_PROTOTYPES',
70      'fp_FUNC_FNMATCH',
71      'fp_PROG_CC_STDC',
72      'fp_PROG_INSTALL',
73      'fp_WITH_DMALLOC',
74      'fp_WITH_REGEX',
75      'gm_PROG_LIBTOOL',
76      'jm_MAINTAINER_MODE',
77      'md_TYPE_PTRDIFF_T',
78      'ud_PATH_LISPDIR',
79 # These aren't quite obsolete.
80 #      'md_PATH_PROG',
81 #      'ud_GNU_GETTEXT',
82 #      'ud_LC_MESSAGES',
83 #      'ud_WITH_NLS'
84      );
85
86 $obsolete_rx = '(' . join ('|', @obsolete_macros) . ')';
87
88 # Matches a macro definition.
89 $ac_defun_rx = "AC_DEFUN\\(\\[?([^],)\n]+)\\]?";
90
91 # Matches an AC_REQUIRE line.
92 $ac_require_rx = "AC_REQUIRE\\(\\[?([^])]*)\\]?\\)";
93
94 \f
95
96 &parse_arguments (@ARGV);
97 &scan_m4_files ($acdir);
98 &scan_configure;
99 if (! $exit_status)
100 {
101     &write_aclocal;
102 }
103 &check_acinclude;
104
105 exit $exit_status;
106
107 ################################################################
108
109 # Print usage and exit.
110 sub usage
111 {
112     local ($status) = @_;
113
114     print "Usage: aclocal [OPTIONS] ...\n";
115     print "\
116   --acdir=DIR           directory holding config files
117   --help                print this help, then exit
118   --output=FILE         put output in FILE (default aclocal.m4)
119   --verbose             don't be silent
120   --version             print version number, then exit
121
122 Report bugs to <bug-gnu-utils\@prep.ai.mit.edu>\n";
123
124     exit $status;
125 }
126
127 # Parse command line.
128 sub parse_arguments
129 {
130     local (@arglist) = @_;
131
132     while (@arglist)
133     {
134         if ($arglist[0] =~ /^--acdir=(.+)$/)
135         {
136             $acdir = $1;
137         }
138         elsif ($arglist[0] =~/^--output=(.+)$/)
139         {
140             $output_file = $1;
141         }
142         elsif ($arglist[0] eq '--verbose')
143         {
144             ++$verbosity;
145         }
146         elsif ($arglist[0] eq '--version')
147         {
148             print "aclocal (GNU $PACKAGE) $VERSION\n";
149             print "Copyright (C) 1996 Free Software Foundation, Inc.\n";
150             print "aclocal comes with ABSOLUTELY NO WARRANTY.\n";
151             print "You may redistribute copies of aclocal\n";
152             print "under the terms of the GNU General Public License.\n";
153             print "For more information about these matters, see the file named COPYING.\n";
154             exit 0;
155         }
156         elsif ($arglist[0] eq '--help')
157         {
158             &usage (0);
159         }
160         else
161         {
162             die "aclocal: unrecognized option -- \`$arglist[0]'\nTry \`aclocal --help' for more information.\n";
163         }
164
165         shift (@arglist);
166     }
167 }
168
169 ################################################################
170
171 sub scan_configure
172 {
173     open (CONFIGURE, "configure.in")
174         || die "aclocal: couldn't open \`configure.in': $!\n";
175
176     # Make sure we include acinclude.m4 if it exists.
177     if (-f 'acinclude.m4')
178     {
179         &add_file ('acinclude.m4');
180     }
181
182     while (<CONFIGURE>)
183     {
184         # Remove comments from current line.
185         s/\bdnl\b.*$//;
186         s/\#.*$//;
187
188         if (/$obsolete_rx/o)
189         {
190             chop;
191             warn "aclocal: configure.in: $.: obsolete macro \`$_'\n";
192             $exit_status = 1;
193             next;
194         }
195
196         # Search for things we know about.  The "search" sub is
197         # constructed dynamically, above.
198         &search;
199     }
200
201     close (CONFIGURE);
202 }
203
204 ################################################################
205
206 # Check macros in acinclude.m4.  If one is not used, warn.
207 sub check_acinclude
208 {
209     local ($key);
210
211     foreach $key (keys %map)
212     {
213         next unless $map{$key} eq 'acinclude.m4';
214         if (! $macro_seen{$key})
215         {
216             warn "aclocal: macro \`$key' defined in acinclude.m4 but never used\n";
217         }
218     }
219 }
220
221 ################################################################
222
223 # Scan all the installed m4 files and construct a map.
224 sub scan_m4_files
225 {
226     local ($m4dir) = @_;
227
228     # First, scan acinclude.m4 if it exists.
229     if (-f 'acinclude.m4')
230     {
231         $file_contents{'acinclude.m4'} = &scan_file ('acinclude.m4');
232     }
233
234     opendir (DIR, $m4dir)
235         || die "aclocal: couldn't open directory \`$m4dir': $!\n";
236     local ($file, $fullfile, $expr);
237     foreach $file (sort grep (! /^\./, readdir (DIR)))
238     {
239         # Only examine .m4 files.
240         next unless $file =~ /\.m4$/;
241
242         # Skip some files when running out of srcdir.
243         next if $file eq 'aclocal.m4';
244
245         $fullfile = $m4dir . '/' . $file;
246         $file_contents{$fullfile} = &scan_file ($fullfile);
247     }
248     closedir (DIR);
249
250     # Construct a new function that does the searching.  We use a
251     # function (instead of just evalling $search in the loop) so that
252     # "die" is correctly and easily propagated if run.
253     local ($search, $expr, $key);
254     foreach $key (keys %map)
255     {
256         # EXPR is a regexp matching the name of the macro.
257         ($expr = $key) =~ s/(\W)/\\$1/g;
258         $search .= "&add_macro ('" . $key . "') if /" . $expr . "/;\n";
259     }
260     eval 'sub search { ' . $search . '};';
261     die "internal error: $@\n search is $search " if $@;
262 }
263
264 ################################################################
265
266 # Add a macro to the output.
267 sub add_macro
268 {
269     local ($macro) = @_;
270
271     # Ignore AC_ macros.
272     return if $macro =~ /^AC_/;
273
274     if (! defined $map{$macro})
275     {
276         warn "aclocal: macro \`$macro' required but not defined\n";
277         $exit_status = 1;
278         return;
279     }
280
281     print STDERR "saw macro $macro\n" if $verbosity;
282     $macro_seen{$macro} = 1;
283     &add_file ($map{$macro});
284 }
285
286 # Add a file to output.
287 sub add_file
288 {
289     local ($file) = @_;
290
291     # Only add a file once.
292     return if ($file_seen{$file});
293     $file_seen{$file} = 1;
294
295     $output .= $file_contents{$file} . "\n";
296     local (@rlist);
297     foreach (split ("\n", $file_contents{$file}))
298     {
299         if (/$ac_require_rx/g)
300         {
301             push (@rlist, $1);
302         }
303
304         # This function constructed dynamically.
305         &search;
306     }
307
308     local ($macro);
309     foreach $macro (@rlist)
310     {
311         &add_macro ($macro);
312     }
313 }
314
315 # Scan a single M4 file.  Return contents.
316 sub scan_file
317 {
318     local ($file) = @_;
319
320     open (FILE, $file)
321         || die "aclocal: couldn't open \`$file': $!\n";
322     local ($contents) = '';
323     while (<FILE>)
324     {
325         # Ignore `##' lines.
326         next if /^##/;
327
328         $contents .= $_;
329
330         if (/$ac_defun_rx/)
331         {
332             if (defined $map{$1})
333             {
334                 warn "aclocal: $file: $.: duplicated macro \`$1'\n";
335                 $exit_status = 1;
336             }
337             print STDERR "Found macro $1 in $file\n" if $verbosity;
338             $map{$1} = $file;
339         }
340     }
341     close (FILE);
342
343     return $contents;
344 }
345
346 ################################################################
347
348 # Write output.
349 sub write_aclocal
350 {
351     return if ! length ($output);
352
353     print STDERR "Writing aclocal.m4\n" if $verbosity;
354
355     open (ACLOCAL, "> aclocal.m4")
356         || die "aclocal: couldn't open \`aclocal.m4' for writing: $!\n";
357     print ACLOCAL "dnl aclocal.m4 generated automatically by aclocal $VERSION\n\n";
358     print ACLOCAL $output;
359     close (ACLOCAL);
360 }