
vpnc at unix-ag
Aug 31, 2009, 4:55 PM
Post #1 of 1
(549 views)
Permalink
|
|
svn commit: vpnc r417 - /trunk/Makefile
|
|
Author: Joerg Mayer Date: Tue Sep 1 01:55:53 2009 New Revision: 417 Log: Jukka Salmi <j+vpnc [at] 2009> according to the NEWS file in gnutls 2.8.0, the libgnutls-config script has been removed, and pkg-config(1) should be used instead. The attached patch implements this for vpnc. Modified: trunk/Makefile Modified: trunk/Makefile ============================================================================== --- trunk/Makefile (original) +++ trunk/Makefile Tue Sep 1 01:55:53 2009 @@ -41,8 +41,8 @@ # GPL incompliant though. #OPENSSL_GPL_VIOLATION=yes -CRYPTO_LDADD = $(shell libgnutls-config --libs) -CRYPTO_CFLAGS = $(shell libgnutls-config --cflags) -DCRYPTO_GNUTLS +CRYPTO_LDADD = $(shell pkg-config --libs gnutls) +CRYPTO_CFLAGS = $(shell pkg-config --cflags gnutls) -DCRYPTO_GNUTLS CRYPTO_SRCS = crypto-gnutls.c ifeq ($(OPENSSL_GPL_VIOLATION), yes) _______________________________________________ vpnc-devel mailing list vpnc-devel [at] unix-ag https://lists.unix-ag.uni-kl.de/mailman/listinfo/vpnc-devel http://www.unix-ag.uni-kl.de/~massar/vpnc/
|