39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
cp -rp ../buildsrc/* './'
fi
cd "${BUILDDIR}" || exit 1
# ZLIB Expects AR to contain options
AR="${AR:-ar} rcu"
export AR
# We don't pass CONFIGUREEXTRA here, since this isn't a GNU autoconf
# script and will puke
echo "Running: ./configure --prefix=\"${INSTDIR}\""
./configure --prefix="${INSTDIR}"
echo "Running: ${MAKE:-make} AR=\"${AR}\""
|
>
>
>
>
>
>
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
cp -rp ../buildsrc/* './'
fi
cd "${BUILDDIR}" || exit 1
# ZLIB Expects AR to contain options
AR="${AR:-ar} rcu"
export AR
# If we are building for KitDLL, compile with '-fPIC'
if [ "${KITTARGET}" = "kitdll" ]; then
CFLAGS="${CFLAGS} -fPIC"
export CFLAGS
fi
# We don't pass CONFIGUREEXTRA here, since this isn't a GNU autoconf
# script and will puke
echo "Running: ./configure --prefix=\"${INSTDIR}\""
./configure --prefix="${INSTDIR}"
echo "Running: ${MAKE:-make} AR=\"${AR}\""
|