forked from photron/msys_setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompile_libxml2.sh
48 lines (37 loc) · 930 Bytes
/
compile_libxml2.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/sh -ex
. utilslib.sh
basedir=/src/libxml2
url=http://xmlsoft.org/sources
version=2.7.8
revision=0
tarball=libxml2-${version}.tar.gz
directory=libxml2-${version}-${revision}
mkdir -p $basedir
pushd $basedir
utilslib_download $url $tarball
if [ ! -d $directory ]
then
echo unpacking $tarball ...
mkdir -p $directory
tar -xvf $tarball -C $directory --strip-components=1
fi
pushd $directory
#if [ ! -f mingw.patch.applied ]
#then
# echo patching ...
# patch -p1 < ../../libxml2-${version}-mingw.patch
# echo applied > mingw.patch.applied
#fi
if [ ! -f configure.done ]
then
CFLAGS=-I/include \
LDFLAGS=-L/lib \
./configure --prefix= --with-python --with-iconv= --with-threads=win32
echo done > configure.done
fi
make
make install
# copy libxml2mod.dll to the correct place so python will find it
cp /python/Lib/site-packages/libxml2mod.dll /python/DLLs/libxml2mod.pyd
popd
popd