• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisióna0da4bb7d0cb1dcd9c53e836244a68b13a2b5266 (tree)
Tiempo2012-04-01 09:33:56
Autormatsuand <matsuand@user...>
Commitermatsuand

Log Message

[BLFS] Updated curl.

Cambiar Resumen

Diferencia incremental

--- a/BLFS/curl.sh
+++ b/BLFS/curl.sh
@@ -15,7 +15,7 @@ fi
1515
1616 echo Check Options...
1717 . ./_checkOptions.sh openssl gnutls openldap heimdal libidn libssh2 \
18- c-ares
18+ c-ares cacerts
1919
2020 if [ ${OPTION_libssh2} -eq "1" ]; then
2121 export WITHSSH2="--with-libssh2 "
@@ -23,6 +23,14 @@ else
2323 export WITHSSH2=""
2424 fi
2525
26+if [ ${OPTION_gnutls} -eq "1" ]; then
27+ export WITHGNUTLS="--without-ssl --with-gnutls "
28+ export WITHCAPATH=""
29+else
30+ export WITHGNUTLS=""
31+ export WITHCAPATH="--with-ca-path=/etc/ssl/certs "
32+fi
33+
2634 cd $SRC
2735
2836 echo $TARGET
@@ -36,8 +44,8 @@ cd $TARGETDIR
3644
3745 echo \ \ Configuring...
3846 ./configure --prefix=/usr \
39- $WITHSSH2 \
40- --with-ca-path=/etc/ssl/certs \
47+ $WITHSSH2 $WITHGNUTLS \
48+ $WITHCAPATH \
4149 1> $LOG/$TARGET.1_conf.log 2>&1 || exit 1
4250
4351 echo \ \ Making...