Changes in / [85d7b85:f9dbc99]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r85d7b85 rf9dbc99  
    215215detect_gnutls()
    216216{
    217         if libgnutls-config --version > /dev/null 2> /dev/null; then
     217        if $PKG_CONFIG --exists gnutls; then
     218                cat <<EOF>>Makefile.settings
     219EFLAGS+=`$PKG_CONFIG --libs gnutls`
     220CFLAGS+=`$PKG_CONFIG --cflags gnutls`
     221EOF
     222                ssl=gnutls
     223                ret=1
     224        elif libgnutls-config --version > /dev/null 2> /dev/null; then
    218225                cat <<EOF>>Makefile.settings
    219226EFLAGS+=`libgnutls-config --libs`
Note: See TracChangeset for help on using the changeset viewer.