41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
+
-
-
-
-
-
+
+
+
+
+
+
|
if [ ! -f "${patchfile}" ]; then
continue
fi
"${PATCH:-patch}" -p1 < "${patchfile}"
done
if [ -z "${SSLDIR}" ]; then
for chkssldir in $(pkg-config openssl --cflags | sed 's@ *-I *@|@g' | tr '|' "\n" | grep '^/'); do
if [ -f "${chkssldir}/openssl/opensslv.h" -o -f "${chkssldir}/opensslv.h" ]; then
SSLDIR=$(echo "${chkssldir}" | sed 's@/[^/]*/*$@@')
fi
done
for chkssldir in $(pkg-config openssl --cflags | sed 's@ *-I *@|@g' | tr '|' "\n" | grep '^/'); do
if [ -f "${chkssldir}/openssl/opensslv.h" -o -f "${chkssldir}/opensslv.h" ]; then
SSLDIR=$(echo "${chkssldir}" | sed 's@/[^/]*/*$@@')
fi
done
fi
if [ -z "${SSLDIR}" ]; then
SSLDIR="/usr"
fi
bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --with-ssl-dir="${SSLDIR}" ${CONFIGUREEXTRA}
${MAKE:-make} || exit 1
) || exit 1
|