Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -2400,9 +2400,9 @@ if test "$libnfs" != "no" ; then
libnfs_cflags=$(pkg-config --cflags libnfs)
libnfs_libs=$(pkg-config --libs libnfs)

# libnfs >= 6.0.0 requires gnutls for TLS support
# libnfs >= 6.0.0 on Linux requires gnutls for TLS support
libnfs_version=$(pkg-config --modversion libnfs 2>/dev/null)
if test -n "$libnfs_version" ; then
if test -n "$libnfs_version" -a "$targetos" = "Linux" ; then
libnfs_major=$(echo $libnfs_version | cut -d. -f1)
if test "$libnfs_major" -ge 6 ; then
if $(pkg-config gnutls > /dev/null 2>&1); then
Expand Down
Loading