Autoconf-2.13
      
      
        
          Introduction to Autoconf-2.13
        
        
          Autoconf-2.13 is an old version of
          Autoconf . This old version
          accepts switches which are not valid in more recent versions. Now
          that firefox has started to use
          python2 for configuring, this old
          version is required even if configure files have not been changed.
        
        
          This package is known to build and work properly using an LFS-7.10
          platform.
        
        
          Package Information
        
        
        
          Additional Downloads
        
        
        
          Autoconf-2.13 Dependencies
        
        
          Optional
        
        
          DejaGnu-1.6 (Required for the tests)
        
        
          User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/autoconf213
        
       
      
        
          Installation of Autoconf-2.13
        
        
          Install Check by running the
          following commands:
        
        
patch -Np1 -i ../autoconf-2.13-consolidated_fixes-1.patch &&
mv -v autoconf.texi autoconf213.texi                      &&
rm -v autoconf.info                                       &&
./configure --prefix=/usr --program-suffix=2.13           &&
make
        
          To test the installation, if you have installed DejaGnu-1.6 issue
          make check (all 253
          tests should pass).
        
        
          Now, as the root user:
        
        
make install                                      &&
install -v -m644 autoconf213.info /usr/share/info &&
install-info --info-dir=/usr/share/info autoconf213.info
       
      
        
          Command Explanations
        
        
          --disable-static: This
          switch prevents installation of static versions of the libraries.
        
        
          mv -v autoconf.texi
          autoconf213.texi: ensure that the info file added
          by this package will not overwrite the more recent version.
        
        
          rm -v autoconf.info:
          ensure that the info file will be created by the current version of
          texinfo.
        
        
          --program-suffix=-2.13: ensure
          that the installed programs have the version added to their names,
          so that only a script which specifically looks for these old
          versions will find them.
        
        
          install -v -m644 ...:
          the patch removes install-info from the Makefile because that would
          install (and if necessary recreate) standards.info which is an old
          version, so now autoconf213.info has
          to be manually installed.
        
       
      
        
          Contents
        
        
          
            
              Installed Programs:
              autoconf-2.13, autoheader-2.13,
              autoreconf-2.13, autoscan-2.13, autoupdate-2.13,
              ifnames-2.13
            
            
              Installed Library:
              None
            
            
              Installed Directory:
              /usr/share/autoconf-2.13
            
           
         
        
          
            Short Descriptions
          
          
            
            
              
                | 
                    autoconf-2.13
                   | 
                    Produces shell scripts that automatically configure
                    software source code packages to adapt to many kinds of
                    Unix-like systems.
                   | 
              
                | 
                    autoheader-2.13
                   | 
                    A tool for creating template files of C #define statements for
                    configure to use
                   | 
              
                | 
                    autoreconf-2.13
                   | 
                    This automatically runs autoconf-2.13,
                    autoheader-2.13,
                    aclocal,
                    automake,
                    gettextize
                    and libtoolize in the right
                    order when changes have been made to autoconf or
                    automake
                    template files.
                   | 
              
                | 
                    autoscan-2.13
                   | 
                    Can be used as a preliminary step in creating a
                    configure.infile. | 
              
                | 
                    autoupdate-2.13
                   | 
                    Modifies a configure.infile that still calls autoconf macros by
                    their old names to use the current macro names. | 
              
                | 
                    ifnames-2.13
                   | 
                    prints the identifiers that the package uses in C
                    preprocessor conditionals [If a package has already been
                    set up to have some portability, this program can help
                    determine what configure needs to check for. It can also
                    fill in gaps in a configure.in file generated by
                    autoscan.]
                   | 
            
          
         
       
      
        Last updated on 2016-08-28 20:53:32 -0700