78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
if [ "${STATICTLS}" = "0" ]; then
tryopts="--enable-shared --disable-shared"
elif [ "${STATICTLS}" = "-1" ]; then
tryopts="--enable-shared"
else
tryopts="--disable-shared"
fi
SAVE_CFLAGS="${CFLAGS}"
for tryopt in $tryopts __fail__; do
# Clean up, if needed
make distclean >/dev/null 2>/dev/null
rm -rf "${INSTDIR}"
mkdir "${INSTDIR}"
|
>
>
>
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
if [ "${STATICTLS}" = "0" ]; then
tryopts="--enable-shared --disable-shared"
elif [ "${STATICTLS}" = "-1" ]; then
tryopts="--enable-shared"
else
tryopts="--disable-shared"
fi
# Disable SSLv2, newer SSL libraries drop support for it entirely
CFLAGS="${CFLAGS} -DNO_SSL2=1"
SAVE_CFLAGS="${CFLAGS}"
for tryopt in $tryopts __fail__; do
# Clean up, if needed
make distclean >/dev/null 2>/dev/null
rm -rf "${INSTDIR}"
mkdir "${INSTDIR}"
|