Changes between Version 8 and Version 9 of PrepareLinuxBuildMachine
- Timestamp:
- May 15, 2007, 11:26:33 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PrepareLinuxBuildMachine
v8 v9 11 11 12 12 {{{ 13 [root@localhost zlib-1.2.3]# ./configure 13 [root@localhost zlib-1.2.3]# ./configure --prefix=/usr 14 14 [root@localhost zlib-1.2.3]# make 15 15 [root@localhost zlib-1.2.3]# make install … … 18 18 == OpenSSL 0.9.8e == 19 19 20 You will need to clean-up/erase any existing references to older versions of OpenSSL.21 22 20 {{{ 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 34 22 [root@localhost openssl-0.9.8e]# make 35 23 [root@localhost openssl-0.9.8e]# make test … … 40 28 41 29 {{{ 42 [root@localhost curl-7.16.2]# ./configure -- with-zlib=/usr/local --with-ssl=/usr/local/ssl30 [root@localhost curl-7.16.2]# ./configure --prefix=/usr --with-zlib --with-ssl 43 31 [root@localhost curl-7.16.2]# make 44 32 [root@localhost curl-7.16.2]# make test … … 51 39 [root@localhost wxGTK-2.8.0]# mkdir debug 52 40 [root@localhost wxGTK-2.8.0]# cd debug 53 [root@localhost wxGTK-2.8.0]# ../configure -- enable-debug --enable-unicode --disable-shared41 [root@localhost wxGTK-2.8.0]# ../configure --prefix=/usr --enable-debug --enable-unicode --disable-shared 54 42 [root@localhost wxGTK-2.8.0]# make 55 43 [root@localhost wxGTK-2.8.0]# make install … … 57 45 [root@localhost wxGTK-2.8.0]# mkdir release 58 46 [root@localhost wxGTK-2.8.0]# cd release 59 [root@localhost wxGTK-2.8.0]# ../configure -- enable-unicode --disable-shared47 [root@localhost wxGTK-2.8.0]# ../configure --prefix=/usr --enable-unicode --disable-shared 60 48 [root@localhost wxGTK-2.8.0]# make 61 49 [root@localhost wxGTK-2.8.0]# make install