5 eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac'
8 # aclocal - create aclocal.m4 by scanning configure.ac
10 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
11 # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
14 # This program is free software; you can redistribute it and/or modify
15 # it under the terms of the GNU General Public License as published by
16 # the Free Software Foundation; either version 2, or (at your option)
19 # This program is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with this program. If not, see <http://www.gnu.org/licenses/>.
27 # Written by Tom Tromey <tromey@redhat.com>, and
28 # Alexandre Duret-Lutz <adl@gnu.org>.
32 my $perllibdir = $ENV{'perllibdir'} || '@datadir@/@PACKAGE@-@APIVERSION@';
33 unshift @INC, (split '@PATH_SEPARATOR@', $perllibdir);
39 use Automake::General;
40 use Automake::Configure_ac;
41 use Automake::Channels;
42 use Automake::ChannelDefs;
44 use Automake::FileUtils;
51 # We do not operate in threaded mode.
54 # Include paths for searching macros. We search macros in this order:
55 # user-supplied directories first, then the directory containing the
56 # automake macros, and finally the system-wide directories for
58 # @user_includes can be augmented with -I.
59 # @automake_includes can be reset with the `--automake-acdir' option.
60 # @system_includes can be augmented with the `dirlist' file or the
61 # ACLOCAL_PATH environment variable, and reset with the `--system-acdir'
63 my @user_includes = ();
64 my @automake_includes = ("@datadir@/aclocal-$APIVERSION");
65 my @system_includes = ('@datadir@/aclocal');
67 # Whether we should copy M4 file in $user_includes[0].
76 # configure.ac or configure.in.
80 my $output_file = 'aclocal.m4';
85 # Modification time of the youngest dependency.
86 my $greatest_mtime = 0;
88 # Which macros have been seen.
91 # Remember the order into which we scanned the files.
92 # It's important to output the contents of aclocal.m4 in the opposite order.
93 # (Definitions in first files we have scanned should override those from
94 # later files. So they must appear last in the output.)
97 # Map macro names to file names.
100 # Ditto, but records the last definition of each macro as returned by --trace.
101 my %map_traced_defs = ();
103 # Map basenames to macro names.
106 # Map file names to file contents.
107 my %file_contents = ();
109 # Map file names to file types.
111 use constant FT_USER => 1;
112 use constant FT_AUTOMAKE => 2;
113 use constant FT_SYSTEM => 3;
115 # Map file names to included files (transitively closed).
116 my %file_includes = ();
118 # Files which have already been added.
121 # Files that have already been scanned.
122 my %scanned_configure_dep = ();
124 # Serial numbers, for files that have one.
125 # The key is the basename of the file,
126 # the value is the serial number represented as a list.
129 # Matches a macro definition.
130 # AC_DEFUN([macroname], ...)
132 # AC_DEFUN(macroname, ...)
133 # When macroname is `['-quoted , we accept any character in the name,
134 # except `]'. Otherwise macroname stops on the first `]', `,', `)',
135 # or `\n' encountered.
137 "(?:AU_ALIAS|A[CU]_DEFUN|AC_DEFUN_ONCE)\\((?:\\[([^]]+)\\]|([^],)\n]+))";
139 # Matches an AC_REQUIRE line.
140 my $ac_require_rx = "AC_REQUIRE\\((?:\\[([^]]+)\\]|([^],)\n]+))\\)";
142 # Matches an m4_include line.
143 my $m4_include_rx = "(m4_|m4_s|s)include\\((?:\\[([^]]+)\\]|([^],)\n]+))\\)";
145 # Match a serial number.
146 my $serial_line_rx = '^#\s*serial\s+(\S*)';
147 my $serial_number_rx = '^\d+(?:\.\d+)*$';
150 # Set by trace_used_macros.
153 # If set, names a temporary file that must be erased on abnormal exit.
156 ################################################################
158 # Erase temporary file ERASE_ME. Handle signals.
165 verb "caught SIG$sig, bailing out";
167 if (defined $erase_me && -e $erase_me && !unlink ($erase_me))
169 fatal "could not remove `$erase_me': $!";
173 # reraise default handler.
176 $SIG{$sig} = 'DEFAULT';
181 $SIG{'INT'} = $SIG{'TERM'} = $SIG{'QUIT'} = $SIG{'HUP'} = 'unlink_tmp';
184 # Check macros in acinclude.m4. If one is not used, warn.
185 sub check_acinclude ()
187 foreach my $key (keys %map)
189 # FIXME: should print line number of acinclude.m4.
190 msg ('syntax', "warning: macro `$key' defined in "
191 . "acinclude.m4 but never used")
192 if $map{$key} eq 'acinclude.m4' && ! exists $macro_seen{$key};
202 %map_traced_defs = ();
207 %scanned_configure_dep = ();
213 # install_file ($SRC, $DEST)
214 sub install_file ($$)
216 my ($src, $dest) = @_;
220 || !exists $file_contents{$dest}
221 || $file_contents{$src} ne $file_contents{$dest})
225 msg 'note', "overwriting `$dest' with `$src'";
230 msg 'note', "installing `$dest' from `$src'";
235 if (! defined $diff_dest)
237 # $dest does not exist. We create an empty one just to
238 # run diff, and we erase it afterward. Using the real
239 # the destination file (rather than a temporary file) is
240 # good when diff is run with options that display the
243 # If creating $dest fails, fall back to /dev/null. At
244 # least one diff implementation (Tru64's) cannot deal
245 # with /dev/null. However working around this is not
246 # worth the trouble since nobody run aclocal on a
247 # read-only tree anyway.
249 my $f = new IO::File "> $dest";
253 $diff_dest = '/dev/null';
261 my @cmd = (@diff_command, $diff_dest, $src);
263 verb "running: @cmd";
264 my $res = system (@cmd);
265 Automake::FileUtils::handle_exec_errors "@cmd", 1
271 xsystem ('cp', $src, $dest);
276 # Compare two lists of numbers.
277 sub list_compare (\@\@)
285 return (0 == @r) ? 0 : -1;
291 elsif ($l[0] < $r[0])
295 elsif ($l[0] > $r[0])
304 ################################################################
306 # scan_m4_dirs($TYPE, @DIRS)
307 # --------------------------
308 # Scan all M4 files installed in @DIRS for new macro definitions.
309 # Register each file as of type $TYPE (one of the FT_* constants).
310 sub scan_m4_dirs ($@)
312 my ($type, @dirlist) = @_;
314 foreach my $m4dir (@dirlist)
316 if (! opendir (DIR, $m4dir))
318 fatal "couldn't open directory `$m4dir': $!";
321 # We reverse the directory contents so that foo2.m4 gets
322 # used in preference to foo1.m4.
323 foreach my $file (reverse sort grep (! /^\./, readdir (DIR)))
325 # Only examine .m4 files.
326 next unless $file =~ /\.m4$/;
328 # Skip some files when running out of srcdir.
329 next if $file eq 'aclocal.m4';
331 my $fullfile = File::Spec->canonpath ("$m4dir/$file");
332 &scan_file ($type, $fullfile, 'aclocal');
338 # Scan all the installed m4 files and construct a map.
341 # First, scan configure.ac. It may contain macro definitions,
342 # or may include other files that define macros.
343 &scan_file (FT_USER, $configure_ac, 'aclocal');
345 # Then, scan acinclude.m4 if it exists.
346 if (-f 'acinclude.m4')
348 &scan_file (FT_USER, 'acinclude.m4', 'aclocal');
351 # Finally, scan all files in our search paths.
352 scan_m4_dirs (FT_USER, @user_includes);
353 scan_m4_dirs (FT_AUTOMAKE, @automake_includes);
354 scan_m4_dirs (FT_SYSTEM, @system_includes);
356 # Construct a new function that does the searching. We use a
357 # function (instead of just evaluating $search in the loop) so that
358 # "die" is correctly and easily propagated if run.
359 my $search = "sub search {\nmy \$found = 0;\n";
360 foreach my $key (reverse sort keys %map)
362 $search .= ('if (/\b\Q' . $key . '\E(?!\w)/) { & add_macro ("' . $key
363 . '"); $found = 1; }' . "\n");
365 $search .= "return \$found;\n};\n";
367 prog_error "$@\n search is $search" if $@;
370 ################################################################
372 # Add a macro to the output.
377 # Ignore unknown required macros. Either they are not really
378 # needed (e.g., a conditional AC_REQUIRE), in which case aclocal
379 # should be quiet, or they are needed and Autoconf itself will
380 # complain when we trace for macro usage later.
381 return unless defined $map{$macro};
383 verb "saw macro $macro";
384 $macro_seen{$macro} = 1;
385 &add_file ($map{$macro});
388 # scan_configure_dep ($file)
389 # --------------------------
390 # Scan a configure dependency (configure.ac, or separate m4 files)
391 # for uses of known macros and AC_REQUIREs of possibly unknown macros.
392 # Recursively scan m4_included files.
393 sub scan_configure_dep ($)
396 # Do not scan a file twice.
398 if exists $scanned_configure_dep{$file};
399 $scanned_configure_dep{$file} = 1;
401 my $mtime = mtime $file;
402 $greatest_mtime = $mtime if $greatest_mtime < $mtime;
404 my $contents = exists $file_contents{$file} ?
405 $file_contents{$file} : contents $file;
410 foreach (split ("\n", $contents))
413 # Remove comments from current line.
416 # Avoid running all the following regexes on white lines.
419 while (/$m4_include_rx/go)
421 my $ifile = $2 || $3;
422 # Skip missing `sinclude'd files.
423 next if $1 ne 'm4_' && ! -f $ifile;
427 while (/$ac_require_rx/go)
429 push (@rlist, $1 || $2);
432 # The search function is constructed dynamically by
433 # scan_m4_files. The last parenthetical match makes sure we
434 # don't match things that look like macro assignments or
436 if (! &search && /(^|\s+)(AM_[A-Z0-9_]+)($|[^\]\)=A-Z0-9_])/)
438 # Macro not found, but AM_ prefix found.
439 # Make this just a warning, because we do not know whether
440 # the macro is actually used (it could be called conditionally).
441 msg ('unsupported', "$file:$line",
442 "warning: macro `$2' not found in library");
446 add_macro ($_) foreach (@rlist);
447 &scan_configure_dep ($_) foreach @ilist;
452 # Add $FILE to output.
457 # Only add a file once.
458 return if ($file_added{$file});
459 $file_added{$file} = 1;
461 scan_configure_dep $file;
464 # Point to the documentation for underquoted AC_DEFUN only once.
465 my $underquoted_manual_once = 0;
467 # scan_file ($TYPE, $FILE, $WHERE)
468 # --------------------------------
469 # Scan a single M4 file ($FILE), and all files it includes.
470 # Return the list of included files.
471 # $TYPE is one of FT_USER, FT_AUTOMAKE, or FT_SYSTEM, depending
472 # on where the file comes from.
473 # $WHERE is the location to use in the diagnostic if the file
477 my ($type, $file, $where) = @_;
478 my $basename = basename $file;
480 # Do not scan the same file twice.
481 return @{$file_includes{$file}} if exists $file_includes{$file};
482 # Prevent potential infinite recursion (if two files include each other).
483 return () if exists $file_contents{$file};
485 unshift @file_order, $file;
487 $file_type{$file} = $type;
489 fatal "$where: file `$file' does not exist" if ! -e $file;
491 my $fh = new Automake::XFile $file;
498 my $serial_older = 0;
500 while ($_ = $fh->getline)
508 if ($line =~ /$serial_line_rx/go)
511 if ($number !~ /$serial_number_rx/go)
513 msg ('syntax', "$file:$.",
514 "warning: ill-formed serial number `$number', "
515 . "expecting a version string with only digits and dots");
519 # aclocal removes all definitions from M4 file with the
520 # same basename if a greater serial number is found.
521 # Encountering a serial after some macros will undefine
523 msg ('syntax', "$file:$.",
524 'the serial number must appear before any macro definition');
526 # We really care about serials only for non-automake macros
527 # and when --install is used. But the above diagnostics are
528 # made regardless of this, because not using --install is
529 # not a reason not the fix macro files.
530 elsif ($install && $type != FT_AUTOMAKE)
533 my @new = split (/\./, $number);
535 verb "$file:$.: serial $number";
537 if (!exists $serial{$basename}
538 || list_compare (@new, @{$serial{$basename}}) > 0)
540 # Delete any definition we knew from the old macro.
541 foreach my $def (@{$invmap{$basename}})
543 verb "$file:$.: ignoring previous definition of $def";
546 $invmap{$basename} = [];
547 $serial{$basename} = \@new;
556 # Remove comments from current line.
557 # Do not do it earlier, because the serial line is a comment.
558 $line =~ s/\bdnl\b.*$//;
561 while ($line =~ /$ac_defun_rx/go)
566 msg ('syntax', "$file:$.", "warning: underquoted definition of $2"
567 . "\n run info '(automake)Extending aclocal'\n"
568 . " or see http://www.gnu.org/software/automake/manual/"
569 . "automake.html#Extending-aclocal")
570 unless $underquoted_manual_once;
571 $underquoted_manual_once = 1;
574 # If this macro does not have a serial and we have already
575 # seen a macro with the same basename earlier, we should
576 # ignore the macro (don't exit immediately so we can still
577 # diagnose later #serial numbers and underquoted macros).
578 $serial_older ||= ($type != FT_AUTOMAKE
579 && !$serial_seen && exists $serial{$basename});
581 my $macro = $1 || $2;
582 if (!$serial_older && !defined $map{$macro})
584 verb "found macro $macro in $file: $.";
585 $map{$macro} = $file;
586 push @{$invmap{$basename}}, $macro;
590 # Note: we used to give an error here if we saw a
591 # duplicated macro. However, this turns out to be
592 # extremely unpopular. It causes actual problems which
593 # are hard to work around, especially when you must
594 # mix-and-match tool versions.
595 verb "ignoring macro $macro in $file: $.";
599 while ($line =~ /$m4_include_rx/go)
601 my $ifile = $2 || $3;
602 # Skip missing `sinclude'd files.
603 next if $1 ne 'm4_' && ! -f $ifile;
604 push (@inc_files, $ifile);
605 $inc_lines{$ifile} = $.;
609 # Ignore any file that has an old serial (or no serial if we know
610 # another one with a serial).
613 ($type != FT_AUTOMAKE && !$serial_seen && exists $serial{$basename}));
615 $file_contents{$file} = $contents;
617 # For some reason I don't understand, it does not work
618 # to do `map { scan_file ($_, ...) } @inc_files' below.
619 # With Perl 5.8.2 it undefines @inc_files.
620 my @copy = @inc_files;
621 my @all_inc_files = (@inc_files,
622 map { scan_file ($type, $_,
623 "$file:$inc_lines{$_}") } @copy);
624 $file_includes{$file} = \@all_inc_files;
625 return @all_inc_files;
628 # strip_redundant_includes (%FILES)
629 # ---------------------------------
630 # Each key in %FILES is a file that must be present in the output.
631 # However some of these files might already include other files in %FILES,
632 # so there is no point in including them another time.
633 # This removes items of %FILES which are already included by another file.
634 sub strip_redundant_includes (%)
638 # Always include acinclude.m4, even if it does not appear to be used.
639 $files{'acinclude.m4'} = 1 if -f 'acinclude.m4';
640 # File included by $configure_ac are redundant.
641 $files{$configure_ac} = 1;
643 # Files at the end of @file_order should override those at the beginning,
644 # so it is important to preserve these trailing files. We can remove
645 # a file A if it is going to be output before a file B that includes
646 # file A, not the converse.
647 foreach my $file (reverse @file_order)
649 next unless exists $files{$file};
650 foreach my $ifile (@{$file_includes{$file}})
652 next unless exists $files{$ifile};
653 delete $files{$ifile};
654 verb "$ifile is already included by $file";
658 # configure.ac is implicitly included.
659 delete $files{$configure_ac};
664 sub trace_used_macros ()
666 my %files = map { $map{$_} => 1 } keys %macro_seen;
667 %files = strip_redundant_includes %files;
669 my $traces = ($ENV{AUTOM4TE} || '@am_AUTOM4TE@');
670 $traces .= " --language Autoconf-without-aclocal-m4 ";
671 # All candidate files.
672 $traces .= join (' ',
674 (grep { exists $files{$_} } @file_order))) . " ";
675 # All candidate macros.
676 $traces .= join (' ',
677 (map { "--trace='$_:\$f::\$n::\$1'" }
681 '_AM_AUTOCONF_VERSION')),
682 # Do not trace $1 for all other macros as we do
683 # not need it and it might contains harmful
684 # characters (like newlines).
685 (map { "--trace='$_:\$f::\$n'" } (keys %macro_seen)));
687 verb "running $traces $configure_ac";
689 my $tracefh = new Automake::XFile ("$traces $configure_ac |");
693 while ($_ = $tracefh->getline)
696 my ($file, $macro, $arg1) = split (/::/);
698 $traced{$macro} = 1 if exists $macro_seen{$macro};
700 $map_traced_defs{$arg1} = $file
701 if ($macro eq 'AC_DEFUN'
702 || $macro eq 'AC_DEFUN_ONCE'
703 || $macro eq 'AU_DEFUN');
705 $ac_version = $arg1 if $macro eq '_AM_AUTOCONF_VERSION';
713 sub scan_configure ()
715 # Make sure we include acinclude.m4 if it exists.
716 if (-f 'acinclude.m4')
718 add_file ('acinclude.m4');
720 scan_configure_dep ($configure_ac);
723 ################################################################
726 # Return 0 iff some files were installed locally.
727 sub write_aclocal ($@)
729 my ($output_file, @macros) = @_;
733 # Get the list of files containing definitions for the macros used.
734 # (Filter out unused macro definitions with $map_traced_defs. This
735 # can happen when an Autoconf macro is conditionally defined:
736 # aclocal sees the potential definition, but this definition is
737 # actually never processed and the Autoconf implementation is used
742 if (exists $map_traced_defs{$m}
743 && $map{$m} eq $map_traced_defs{$m});
745 # Do not explicitly include a file that is already indirectly included.
746 %files = strip_redundant_includes %files;
750 for my $file (grep { exists $files{$_} } @file_order)
752 # Check the time stamp of this file, and of all files it includes.
753 for my $ifile ($file, @{$file_includes{$file}})
755 my $mtime = mtime $ifile;
756 $greatest_mtime = $mtime if $greatest_mtime < $mtime;
759 # If the file to add looks like outside the project, copy it
760 # to the output. The regex catches filenames starting with
761 # things like `/', `\', or `c:\'.
762 if ($file_type{$file} != FT_USER
763 || $file =~ m,^(?:\w:)?[\\/],)
765 if (!$install || $file_type{$file} != FT_SYSTEM)
767 # Copy the file into aclocal.m4.
768 $output .= $file_contents{$file} . "\n";
772 # Install the file (and any file it includes).
774 for my $ifile (@{$file_includes{$file}}, $file)
776 $dest = "$user_includes[0]/" . basename $ifile;
777 verb "installing $ifile to $dest";
778 install_file ($ifile, $dest);
785 # Otherwise, simply include the file.
786 $output .= "m4_include([$file])\n";
792 verb "running aclocal anew, because some files were installed locally";
796 # Nothing to output?!
797 # FIXME: Shouldn't we diagnose this?
798 return 1 if ! length ($output);
802 # Do not use "$output_file" here for the same reason we do not
803 # use it in the header below. autom4te will output the name of
804 # the file in the diagnostic anyway.
805 $output = "m4_ifndef([AC_AUTOCONF_VERSION],
806 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
807 m4_if(m4_defn([AC_AUTOCONF_VERSION]), [$ac_version],,
808 [m4_warning([this file was generated for autoconf $ac_version.
809 You have another version of autoconf. It may work, but is not guaranteed to.
810 If you have problems, you may need to regenerate the build system entirely.
811 To do so, use the procedure documented by the package, typically `autoreconf'.])])
816 # We used to print `# $output_file generated automatically etc.' But
817 # this creates spurious differences when using autoreconf. Autoreconf
818 # creates aclocal.m4t and then rename it to aclocal.m4, but the
819 # rebuild rules generated by Automake create aclocal.m4 directly --
820 # this would gives two ways to get the same file, with a different
821 # name in the header.
822 $output = "# generated automatically by aclocal $VERSION -*- Autoconf -*-
824 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
825 # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
827 # This file is free software; the Free Software Foundation
828 # gives unlimited permission to copy and/or distribute it,
829 # with or without modifications, as long as this notice is preserved.
831 # This program is distributed in the hope that it will be useful,
832 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
833 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
834 # PARTICULAR PURPOSE.
838 # We try not to update $output_file unless necessary, because
839 # doing so invalidate Autom4te's cache and therefore slows down
840 # tools called after aclocal.
842 # We need to overwrite $output_file in the following situations.
843 # * The --force option is in use.
844 # * One of the dependencies is younger.
845 # (Not updating $output_file in this situation would cause
846 # make to call aclocal in loop.)
847 # * The contents of the current file are different from what
850 && $greatest_mtime < mtime ($output_file)
851 && $output eq contents ($output_file))
853 verb "$output_file unchanged";
857 verb "writing $output_file";
861 if (-e $output_file && !unlink $output_file)
863 fatal "could not remove `$output_file': $!";
865 my $out = new Automake::XFile "> $output_file";
871 ################################################################
873 # Print usage and exit.
878 print "Usage: aclocal [OPTIONS] ...
880 Generate `aclocal.m4' by scanning `configure.ac' or `configure.in'
883 --automake-acdir=DIR directory holding automake-provided m4 files
884 --system-acdir=DIR directory holding third-party system-wide files
885 --diff[=COMMAND] run COMMAND [diff -u] on M4 files that would be
886 changed (implies --install and --dry-run)
887 --dry-run pretend to, but do not actually update any file
888 --force always update output file
889 --help print this help, then exit
890 -I DIR add directory to search list for .m4 files
891 --install copy third-party files to the first -I directory
892 --output=FILE put output in FILE (default aclocal.m4)
893 --print-ac-dir print name of directory holding system-wide
894 third-party m4 files, then exit
895 --verbose don't be silent
896 --version print version number, then exit
897 -W, --warnings=CATEGORY report the warnings falling in CATEGORY
899 Warning categories include:
900 `syntax' dubious syntactic constructs (default)
901 `unsupported' unknown macros (default)
902 `all' all the warnings (default)
903 `no-CATEGORY' turn off warnings in CATEGORY
904 `none' turn off all the warnings
905 `error' treat warnings as errors
907 " . 'Report bugs to <@PACKAGE_BUGREPORT@>.
908 GNU Automake home page: <@PACKAGE_URL@>.
909 General help using GNU software: <http://www.gnu.org/gethelp/>.
915 # Print version and exit.
919 aclocal (GNU $PACKAGE) $VERSION
920 Copyright (C) 2011 Free Software Foundation, Inc.
921 License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl-2.0.html>
922 This is free software: you are free to change and redistribute it.
923 There is NO WARRANTY, to the extent permitted by law.
925 Written by Tom Tromey <tromey\@redhat.com>
926 and Alexandre Duret-Lutz <adl\@gnu.org>.
931 # Using --acdir overrides both the automake (versioned) directory and
932 # the public (unversioned) system directory. This usage is obsolete.
933 sub handle_acdir_option ($$)
935 msg 'obsolete', '', "`--acdir' is deprecated\n";
936 @system_includes = ($_[1]);
937 @automake_includes = ();
940 # Parse command line.
941 sub parse_arguments ()
943 my $print_and_exit = 0;
948 'help' => sub { usage(0); },
949 'version' => \&version,
950 'acdir=s' => \&handle_acdir_option,
951 'system-acdir=s' => sub { shift; @system_includes = @_; },
952 'automake-acdir=s' => sub { shift; @automake_includes = @_; },
953 'diff:s' => \$diff_command,
954 'dry-run' => \$dry_run,
955 'force' => \$force_output,
956 'I=s' => \@user_includes,
957 'install' => \$install,
958 'output=s' => \$output_file,
959 'print-ac-dir' => \$print_and_exit,
960 'verbose' => sub { setup_channel 'verb', silent => 0; },
961 'W|warnings=s' => \&parse_warnings,
964 use Automake::Getopt ();
965 Automake::Getopt::parse_options %cli_options;
969 print "@system_includes\n";
973 if (defined $diff_command)
975 $diff_command = 'diff -u' if $diff_command eq '';
976 @diff_command = split (' ', $diff_command);
981 if ($install && !@user_includes)
983 fatal ("--install should copy macros in the directory indicated by the"
984 . "\nfirst -I option, but no -I was supplied.");
987 # Finally, adds any directory listed in the `dirlist' file.
988 if (open (DIRLIST, "$system_includes[0]/dirlist"))
994 # strip off newlines and end-of-line comments
997 foreach my $dir (glob)
999 push (@system_includes, $dir) if -d $dir;
1006 # Add any directory listed in the `ACLOCAL_PATH' environment variable
1007 # to the list of system include directories.
1008 sub parse_ACLOCAL_PATH ()
1010 return if not defined $ENV{"ACLOCAL_PATH"};
1011 # Directories in ACLOCAL_PATH should take precedence over system
1012 # directories, so we use unshift. However, directories that
1013 # come first in ACLOCAL_PATH take precedence over directories
1014 # coming later, which is why the result of split is reversed.
1015 foreach my $dir (reverse split /:/, $ENV{"ACLOCAL_PATH"})
1017 unshift (@system_includes, $dir) if $dir ne '' && -d $dir;
1021 ################################################################
1023 parse_WARNINGS; # Parse the WARNINGS environment variable.
1026 $configure_ac = require_configure_ac;
1028 # We may have to rerun aclocal if some file have been installed, but
1029 # it should not happen more than once. The reason we must run again
1030 # is that once the file has been moved from /usr/share/aclocal/ to the
1031 # local m4/ directory it appears at a new place in the search path,
1032 # hence it should be output at a different position in aclocal.m4. If
1033 # we did not rerun aclocal, the next run of aclocal would produce a
1034 # different aclocal.m4.
1039 prog_error "Too many loops." if $loop > 2;
1045 my %macro_traced = trace_used_macros;
1046 last if write_aclocal ($output_file, keys %macro_traced);
1053 ### Setup "GNU" style for perl-mode and cperl-mode.
1055 ## perl-indent-level: 2
1056 ## perl-continued-statement-offset: 2
1057 ## perl-continued-brace-offset: 0
1058 ## perl-brace-offset: 0
1059 ## perl-brace-imaginary-offset: 0
1060 ## perl-label-offset: -2
1061 ## cperl-indent-level: 2
1062 ## cperl-brace-offset: 0
1063 ## cperl-continued-brace-offset: 0
1064 ## cperl-label-offset: -2
1065 ## cperl-extra-newline-before-brace: t
1066 ## cperl-merge-trailing-else: nil
1067 ## cperl-continued-statement-offset: 2