Skip to Content.
Sympa Menu

freetds - Re: [freetds] SSL connection to MS SQL 2008

freetds AT lists.ibiblio.org

Subject: FreeTDS Development Group

List archive

Chronological Thread  
  • From: Plot Lost <plot.lost AT gmail.com>
  • To: FreeTDS Development Group <freetds AT lists.ibiblio.org>
  • Subject: Re: [freetds] SSL connection to MS SQL 2008
  • Date: Mon, 4 Oct 2010 21:37:47 +0400

>
>
> Can't get freetds to compile with gnutls though at the moment:
>

Got this one now - the configure script calls libgntls-config to get the
config details but that was removed in gnu tls 2.8.0 and later, pkg-config
should be used instead.

Changing lines 22581 and 22582 on the configure script from:

CPPFLAGS="$CPPFLAGS `libgnutls-config --cflags`"
NETWORK_LIBS="$NETWORK_LIBS `libgnutls-config --libs`"
to:

CPPFLAGS="$CPPFLAGS `pkg-config --cflags gnutls`"
NETWORK_LIBS="$NETWORK_LIBS `pkg-config --libs gnutls`"

allows freetds to compile against later versions of gnu tls.




Archive powered by MHonArc 2.6.24.

Top of Page