Changes between Version 89 and Version 90 of UsersWikiWinCompile


Ignore:
Timestamp:
Nov 23, 2009, 4:55:14 PM (14 years ago)
Author:
pramsey
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiWinCompile

    v89 v90  
    9797== 8. Installing Autoconf, Automake and Libtool ==
    9898
    99 Download the sourcecode of:
    100 
    101     1. autoconf from ftp.gnu.org/gnu/autoconf
    102     2. automake from ftp.gnu.org/gnu/automake
    103     3. libtool  from ftp.gnu.org/gnu/libtool
    104 
    105 The latest releases 2009-11-11 are:
    106 
    107  * autoconf 2.65 (1.4MB)
    108  * automake 1.11.1 (1.2MB)
    109  * libtool  2.2.4 (1.8MB)
    110 
    111 Make a folder c:\thesrc and untar the source-files there.
    112 
    113 Launch MSys from Start->Programs->MinGW->msys or from the desktop MSYS icon.
    114 
    115 You now get a terminal-window that understands a bunch of unix/linux-commands (at least enough for compiling)
     99Download the source code from the GNU site:
     100
     101    1. http://ftp.gnu.org/gnu/autoconf/autoconf-2.65.tar.gz
     102    2. http://ftp.gnu.org/gnu/automake/automake-1.11.tar.gz
     103    3. http://ftp.gnu.org/gnu/libtool/libtool-2.2.4.tar.gz
     104
     105Save the packages in the c:\thesrc folder.
     106
     107Launch the MSYS termins from Start->Programs->MinGW->msys or from the desktop MSYS icon.
    116108{{{
    117109# cd /c/thesrc
     
    120112Now you will get the folders you have copied to the directory listed. The names of the folders will be different than in this example if you have newer releases of the tools. Configure, compile and install autoconf.
    121113{{{
     114# tar xvfz autoconf-2.65.tar.gz
    122115# cd autoconf-2.65
    123116# ./configure --prefix=/c/mingw
     
    132125Now configure, compile and install automake.
    133126{{{
     127# tar xvfz automake-1.11.tar.gz
    134128# cd automake-1.11
    135129# ./configure --prefix=/c/mingw
     
    139133Now configure, compile and install automake.
    140134{{{
     135# tar xvfz libtool-2.2.4.tar.gz
    141136# cd libtool-2.2.4
    142137# ./configure --prefix=/c/mingw