aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Tilloy <olivier@tilloy.net>2010-12-09 20:06:07 +0100
committerOlivier Tilloy <olivier@tilloy.net>2010-12-09 20:06:07 +0100
commit96e191266c489f2e954edd54a3f523191e53d791 (patch)
treea1a0c9d5abb10a1aa66cf9b98bd2087a2994be7a
parenta836744091dc6aed809f627ba4709f08ad035734 (diff)
downloadpyexiv2-96e191266c489f2e954edd54a3f523191e53d791.tar.gz
Updated windows build dependencies:
• exiv2 0.20 → 0.21 • python 2.7 → 2.7.1 • boost 1.44.0 → 1.45.0
-rwxr-xr-xcross-compile.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/cross-compile.sh b/cross-compile.sh
index 39197b8..5f9ce27 100755
--- a/cross-compile.sh
+++ b/cross-compile.sh
@@ -64,22 +64,22 @@ make -j3 install
cd ..
# exiv2
-wget http://exiv2.org/exiv2-0.20.tar.gz
-tar xf exiv2-0.20.tar.gz
-cd exiv2-0.20
+wget http://exiv2.org/exiv2-0.21.tar.gz
+tar xf exiv2-0.21.tar.gz
+cd exiv2-0.21
./configure --disable-shared --disable-visibility --target=$PLATFORM --host=$PLATFORM --build=$BUILD --disable-nls --with-zlib=$BASE/zlib --with-libiconv-prefix=$BASE/libiconv --with-expat=$BASE/expat --prefix=$BASE/exiv2
make -j3 install
cd ..
# python
-wget http://python.org/ftp/python/2.7/python-2.7.msi
-7z x python-2.7.msi -opython
+wget http://python.org/ftp/python/2.7.1/python-2.7.1.msi
+7z x python-2.7.1.msi -opython
7z x python/python -opython
# boost-python
-wget --trust-server-names=on http://sourceforge.net/projects/boost/files/boost/1.44.0/boost_1_44_0.tar.bz2/download
-tar xf boost_1_44_0.tar.bz2
-cd boost_1_44_0
+wget --trust-server-names=on http://sourceforge.net/projects/boost/files/boost/1.45.0/boost_1_45_0.tar.bz2/download
+tar xf boost_1_45_0.tar.bz2
+cd boost_1_45_0
echo "using gcc : : $COMPILER : <compileflags>-I$BASE/python <archiver>$ARCHIVER ;" >> tools/build/v2/user-config.jam
bjam install -j 3 --prefix=$BASE/boost --with-python toolset=gcc link=static
cd ..