Changes between Version 20 and Version 21 of DevWikiWinMingW64


Ignore:
Timestamp:
Apr 11, 2011, 11:32:45 PM (13 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiWinMingW64

    v20 v21  
    3636Once done, type logout and the console should exit.
    3737
    38 == 3. Verify your libtool etc are up to date ==
    39  * Relaunch C:\msys\msys.bat
     38== 3. Installing Autoconf, Automake and Libtool ==
     39Relaunch C:\mysy\msys.bat
    4040
    41  
     41Verify which versions of these you have with
     42
     43autoconf --version
     44etc.
     45
     46If they are not newer (or you get not found) than below then download and install.
     47Download the source code from the GNU site and save to c:\projects
     48
     49 * http://ftp.gnu.org/gnu/autoconf/autoconf-2.65.tar.gz
     50 * http://ftp.gnu.org/gnu/automake/automake-1.11.tar.gz
     51 * http://ftp.gnu.org/gnu/libtool/libtool-2.2.10.tar.gz
     52
     53
     54
     55
     56{{{
     57cd /c/projects
     58tar -xvf autoconf-2.65.tar.gz
     59cd autoconf-2.65
     60./configure --build=i686-w64-mingw32  (if you are building for 64-bit then use --build=x86_64-w64-mingw32)
     61make && make install
     62autoconf --version
     63}}}
     64