Changes between Version 8 and Version 9 of PrepareLinuxBuildMachine


Ignore:
Timestamp:
May 15, 2007, 11:26:33 PM (17 years ago)
Author:
romw
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PrepareLinuxBuildMachine

    v8 v9  
    1111
    1212{{{
    13 [root@localhost zlib-1.2.3]# ./configure
     13[root@localhost zlib-1.2.3]# ./configure --prefix=/usr
    1414[root@localhost zlib-1.2.3]# make
    1515[root@localhost zlib-1.2.3]# make install
     
    1818== OpenSSL 0.9.8e ==
    1919
    20 You will need to clean-up/erase any existing references to older versions of OpenSSL.
    21 
    2220{{{
    23 [root@localhost openssl-0.9.8e]# cd /usr/include
    24 [root@localhost include]# rm -fr openssl
    25 [root@localhost include]# cd /usr/lib/pkgconfig
    26 [root@localhost pkgconfig]# rm openssl.pc
    27 [root@localhost pkgconfig]# cd ..
    28 [root@localhost lib]# rm libssl.a
    29 [root@localhost lib]# rm libcrypto.a
    30 }}}
    31 
    32 {{{
    33 [root@localhost openssl-0.9.8e]# ./config
     21[root@localhost openssl-0.9.8e]# ./config  --prefix=/usr --openssldir=/usr/local/ssl
    3422[root@localhost openssl-0.9.8e]# make
    3523[root@localhost openssl-0.9.8e]# make test
     
    4028
    4129{{{
    42 [root@localhost curl-7.16.2]# ./configure --with-zlib=/usr/local --with-ssl=/usr/local/ssl
     30[root@localhost curl-7.16.2]# ./configure --prefix=/usr --with-zlib --with-ssl
    4331[root@localhost curl-7.16.2]# make
    4432[root@localhost curl-7.16.2]# make test
     
    5139[root@localhost wxGTK-2.8.0]# mkdir debug
    5240[root@localhost wxGTK-2.8.0]# cd debug
    53 [root@localhost wxGTK-2.8.0]# ../configure --enable-debug --enable-unicode --disable-shared
     41[root@localhost wxGTK-2.8.0]# ../configure --prefix=/usr --enable-debug --enable-unicode --disable-shared
    5442[root@localhost wxGTK-2.8.0]# make
    5543[root@localhost wxGTK-2.8.0]# make install
     
    5745[root@localhost wxGTK-2.8.0]# mkdir release
    5846[root@localhost wxGTK-2.8.0]# cd release
    59 [root@localhost wxGTK-2.8.0]# ../configure --enable-unicode --disable-shared
     47[root@localhost wxGTK-2.8.0]# ../configure --prefix=/usr --enable-unicode --disable-shared
    6048[root@localhost wxGTK-2.8.0]# make
    6149[root@localhost wxGTK-2.8.0]# make install