Changes between Version 88 and Version 89 of UsersWikiWinCompile

Show
Ignore:
Timestamp:
11/23/09 16:51:39 (4 years ago)
Author:
pramsey
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiWinCompile

    v88 v89  
    5151Run each file and be sure to change the install directory to c:\MinGW 
    5252 
    53 == 5. Installing LibIconf == 
    54  
    55 For iconv we are going to compile our own instead of install from GNUWin since GNUWin changed some constants. 
    56  
    57   1. download source from http://ftp.gnu.org/gnu/libiconv (we are going to use libiconv-1.13.1.tar.gz) 
    58   2. gzip -d -c libiconv-1.13.1.tar.gz | tar xvf - 
    59   3. cd libiconv-1.13.1 
    60   4. ./configure --prefix=/c/mingw 
    61   5. make && make install  
    62   6.  verify you are running the latest with --  iconv --version 
    63  
    64 == 6. Update m4 == 
     53== 5. Update m4 == 
    6554 
    6655 1. download from: http://downloads.sourceforge.net/mingw/m4-1.4.7-MSYS.tar.bz2 
    6756 2. untar and copy the m4.exe-file in the end of the path to C:\msys\1.0\bin 
    6857 
    69 == 7. Update environment variables == 
     58== 6. Update environment variables == 
    7059 
    7160The below is copied direct from http://www.mingw.org/wiki/HOWTO_Install_the_MinGW_GCC_Compiler_Suite#toc33 
     
    8574 
    8675Set the environment variable HOME to C:\msys\1.0\home 
     76 
     77== 7. Installing !LibIconv == 
     78 
     79For iconv we are going to compile our own copy instead of installing from GNUWin. 
     80 
     81 * http://ftp.gnu.org/gnu/libiconv/libiconv-1.13.1.tar.gz 
     82 
     83Save the source in your C:\thesrc directory. Open up the MSYS terminal. 
     84{{{ 
     85# cd /c/thesrc 
     86# tar xvfz libiconv-1.13.1.tar.gz 
     87# cd libiconv-1.13.1 
     88# ./configure --prefix=/c/mingw 
     89# make 
     90# make install 
     91}}} 
     92Verify you are running the latest version of iconv 
     93{{{ 
     94# iconv --version 
     95}}} 
    8796 
    8897== 8. Installing Autoconf, Automake and Libtool ==