• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Révision2f9f660f2594cd6b948a1f6c65f31d99c30d875a (tree)
l'heure2012-03-23 19:38:01
Auteurmatsuand <matsuand@user...>
Commitermatsuand

Message de Log

[BLFS] Modified gnutls.

Change Summary

Modification

--- a/BLFS/gnutls.sh
+++ b/BLFS/gnutls.sh
@@ -11,7 +11,8 @@ echo Check Required...
1111 ./_checkRequired.sh libgcrypt nettle || exit 1
1212
1313 echo Check Options...
14-. ./_checkOptions.sh gaa guile libtasn1 libcfg+ valgrind lzo p11-kit
14+. ./_checkOptions.sh gaa guile libtasn1 libcfg+ valgrind lzo p11-kit \
15+ pkg-config
1516
1617 if [ ${OPTION_lzo} -eq "1" ]; then
1718 export WITHLZO="--with-lzo "
@@ -25,6 +26,12 @@ else
2526 export WITHP11KIT="--without-p11-kit "
2627 fi
2728
29+if [ ${OPTION_pkgconfig} -eq "1" ]; then
30+ P11KITLIB=""
31+else
32+ P11KITLIB="P11_KIT_CFLAGS=-I/usr/include P11_KIT_LIBS=-L/usr/lib "
33+fi
34+
2835 cd $SRC
2936
3037 echo $TARGET
@@ -40,6 +47,7 @@ echo \ \ Configuring...
4047 ./configure --prefix=/usr \
4148 $WITHLZO \
4249 $WITHP11KIT \
50+ $P11KITLIB \
4351 1> $LOG/$TARGET.1_conf.log 2>&1 || exit 1
4452
4553 echo \ \ Making...