Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r003553b r4af7b4f  
    213213detect_gnutls()
    214214{
    215         if libgnutls-config --version > /dev/null 2> /dev/null; then
     215        if $PKG_CONFIG --exists gnutls; then
     216                cat <<EOF>>Makefile.settings
     217EFLAGS+=`$PKG_CONFIG --libs gnutls`
     218CFLAGS+=`$PKG_CONFIG --cflags gnutls`
     219EOF
     220                ssl=gnutls
     221                ret=1
     222        elif libgnutls-config --version > /dev/null 2> /dev/null; then
    216223                cat <<EOF>>Makefile.settings
    217224EFLAGS+=`libgnutls-config --libs`
Note: See TracChangeset for help on using the changeset viewer.