- Timestamp:
- 2010-10-17T06:44:35Z (14 years ago)
- Branches:
- master
- Children:
- 79b5c41
- Parents:
- 3fc6c32
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r3fc6c32 r83e47ec 269 269 if $PKG_CONFIG --exists gnutls; then 270 270 cat <<EOF>>Makefile.settings 271 EFLAGS+=`$PKG_CONFIG --libs gnutls` 272 CFLAGS+=`$PKG_CONFIG --cflags gnutls` 271 EFLAGS+=`$PKG_CONFIG --libs gnutls` `libgcrypt-config --libs` 272 CFLAGS+=`$PKG_CONFIG --cflags gnutls` `libgcrypt-config --cflags` 273 273 EOF 274 274 ssl=gnutls … … 276 276 elif libgnutls-config --version > /dev/null 2> /dev/null; then 277 277 cat <<EOF>>Makefile.settings 278 EFLAGS+=`libgnutls-config --libs` 279 CFLAGS+=`libgnutls-config --cflags` 278 EFLAGS+=`libgnutls-config --libs` `libgcrypt-config --libs` 279 CFLAGS+=`libgnutls-config --cflags` `libgcrypt-config --cflags` 280 280 EOF 281 281 … … 427 427 fi; 428 428 429 if [ "$msn" = "1" -a "$ssl" != "openssl" ]; then429 if [ "$msn" = "1" -a "$ssl" != "openssl" -a "$ssl" != "gnutls" ]; then 430 430 # Needed for MSN only. OpenSSL exports nice cipher functions already, 431 # others don't, so use our own 3des code. 431 # in case of GnuTLS we should be able to use gcrypt. Otherwise, use 432 # built-in stuff. (Since right now those are the only two supported 433 # SSL modules anyway, this is mostly unnecessary.) 432 434 echo 'DES=des.o' >> Makefile.settings 433 435 fi
Note: See TracChangeset
for help on using the changeset viewer.