Ignore:
Timestamp:
05/10/2011 23:05:06 (8 months ago)
Author:
chris
Message:

Update to latest released versions of dependencies.

Don't install man pages for openssl, as they're not very useful and
it takes forever.

Itemise development dependencies and include an editor (vim).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/trunk/docs/api-notes/win32_build_on_cygwin_using_mingw.txt

    r2868 r3003  
    1111Make sure to select the following packages during installation: 
    1212 
     13 * Archive/unzip 
    1314 * Devel/automake 
    1415 * Devel/autoconf 
     
    2425ensure that those packages are installed. 
    2526 
    26 You may also want to install the debugger, Devel/gdb, and the command-line 
    27 Subversion client, Devel/subversion. 
     27You may also want to install: 
     28 
     29 * Devel/gdb (the debugger) 
     30 * Devel/subversion (the command-line Subversion client) 
     31 * Editors/vim (the Vim text editor) 
    2832 
    2933== Base Directory == 
     
    4246== OpenSSL == 
    4347 
    44 Download OpenSSL from [http://www.openssl.org/source/openssl-1.0.0d.tar.gz] 
     48Download OpenSSL from [http://www.openssl.org/source/openssl-1.0.0e.tar.gz] 
    4549 
    4650Open a Cygwin shell, go to the base directory, and unpack OpenSSL: 
    4751 
    48         tar xzvf openssl-1.0.0d.tar.gz 
     52        tar xzvf openssl-1.0.0e.tar.gz 
    4953 
    5054Configure OpenSSL for MinGW compilation, and build and install it: 
    5155 
    52         cd openssl-1.0.0d 
     56        cd openssl-1.0.0e 
    5357        ./Configure --prefix=/usr/i686-pc-mingw32/ mingw 
    5458        make 
    55         make install 
     59        make install_sw 
    5660 
    5761== PCRE == 
     
    96100        cp pdcurses.a /usr/i686-pc-mingw32/lib/libpdcurses.a 
    97101 
    98 Download Readline version 6.1 from 
    99 [ftp://ftp.cwru.edu/pub/bash/readline-6.1.tar.gz], and unpack 
     102Download Readline version 6.2 from 
     103[ftp://ftp.cwru.edu/pub/bash/readline-6.2.tar.gz], and unpack 
    100104and install it thus: 
    101105 
    102         tar xzvf readline-6.1.tar.gz 
     106        tar xzvf readline-6.2.tar.gz 
     107        cd readline-6.2 
    103108        ./configure --prefix=/usr/i686-pc-mingw32 \ 
    104109                CFLAGS="-mno-cygwin" \ 
Note: See TracChangeset for help on using the changeset viewer.