/[autoconf]/autoconf/bin/autoscan.in
ViewVC logotype

Diff of /autoconf/bin/autoscan.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.87 by akim, Sat Sep 28 14:03:14 2002 UTC revision 1.88 by akim, Fri Oct 25 08:22:52 2002 UTC
# Line 73  my %macro = (); Line 73  my %macro = ();
73  # $NEEDED_MACROS{MACRO} is an array of locations requiring MACRO.  # $NEEDED_MACROS{MACRO} is an array of locations requiring MACRO.
74  # E.g., $NEEDED_MACROS{AC_FUNC_ALLOC} the list of `file:line' containing  # E.g., $NEEDED_MACROS{AC_FUNC_ALLOC} the list of `file:line' containing
75  # `alloca (...)'.  # `alloca (...)'.
76  my %needed_macros = ();  my %needed_macros =
77      (
78       'AC_PREREQ' => [$me],
79      );
80    
81  my $configure_scan = 'configure.scan';  my $configure_scan = 'configure.scan';
82  my $log = new Autom4te::XFile ">$me.log";  my $log = new Autom4te::XFile ">$me.log";
# Line 98  preliminary `configure.ac' for that pack Line 101  preliminary `configure.ac' for that pack
101    -V, --version       print version number, then exit    -V, --version       print version number, then exit
102    -v, --verbose       verbosely report processing    -v, --verbose       verbosely report processing
103    -d, --debug         don't remove temporary files    -d, --debug         don't remove temporary files
104    
105    Library directories:
106    -B, --prepend-include=DIR  prepend directory DIR to search path    -B, --prepend-include=DIR  prepend directory DIR to search path
107    -I, --include=DIR          append directory DIR to search path    -I, --include=DIR          append directory DIR to search path
108    
# Line 496  sub output ($) Line 501  sub output ($)
501    my $file = new Autom4te::XFile ">$configure_scan";    my $file = new Autom4te::XFile ">$configure_scan";
502    
503    print $file    print $file
504      ("# Process this file with autoconf to produce a configure script.\n"      ("#                                               -*- Autoconf -*-\n" .
505       . "AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)\n");       "# Process this file with autoconf to produce a configure script.\n" .
506         "\n" .
507         "AC_PREREQ(@VERSION@)\n" .
508         "AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)\n");
509    if (defined $cfiles[0])    if (defined $cfiles[0])
510      {      {
511        print $file "AC_CONFIG_SRCDIR([$cfiles[0]])\n";        print $file "AC_CONFIG_SRCDIR([$cfiles[0]])\n";

Legend:
Removed from v.1.87  
changed lines
  Added in v.1.88

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26