blob: 8a896f4eb5e71c93756b0e7f86708a6938dd56e8 (
plain)
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
|
# enable SSE/SSE2 where appripriate
if [ "${CARCH}" = "i486" -o "${CARCH}" = "i686" ]; then
eval "$(
declare -f build | \
sed '
s|./configure |./configure --with-sse=no --with-ssse3=no --with-avx=no |
'
)"
fi
if [ "${CARCH}" = "pentium4" ]; then
eval "$(
declare -f build | \
sed '
s|./configure |./configure --with-sse=yes --with-ssse3=no --with-avx=no |
'
)"
fi
# i486 has a stack smash when building the Python bindings (see FS32#188)
if [ "${CARCH}" = "i486" ]; then
eval "$(
declare -f build | \
sed '
/swig\/python/d
/python setup.py build/d
'
)"
eval "$(
declare -f package_python-gdal | \
sed '
3 i if false; then
$ i fi
'
)"
fi
|