]> granicus.if.org Git - pdns/commitdiff
Let pkg-config determine botan dependency libs
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Fri, 16 Jan 2015 12:14:43 +0000 (13:14 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Fri, 16 Jan 2015 15:53:36 +0000 (16:53 +0100)
pdns/Makefile.am

index 97de3562fc9e0ba3ed0f757782cc1403e08bbf56..658784fc458d1e2574ddfcc0a1c1ddcb460915b5 100644 (file)
@@ -189,12 +189,12 @@ pdns_server_LDADD = \
 
 if BOTAN110
 pdns_server_SOURCES += botan110signers.cc botansigners.cc
-pdns_server_LDADD += $(BOTAN110_LIBS) -lgmp -lrt
+pdns_server_LDADD += $(BOTAN110_LIBS)
 endif
 
 if BOTAN18
 pdns_server_SOURCES += botan18signers.cc botansigners.cc
-pdns_server_LDADD += $(BOTAN18_LIBS) -lgmp
+pdns_server_LDADD += $(BOTAN18_LIBS)
 endif
 
 if CRYPTOPP
@@ -283,12 +283,12 @@ pdnssec_LDADD = \
 
 if BOTAN110
 pdnssec_SOURCES += botan110signers.cc botansigners.cc
-pdnssec_LDADD += $(BOTAN110_LIBS) -lgmp -lrt
+pdnssec_LDADD += $(BOTAN110_LIBS)
 endif
 
 if BOTAN18
 pdnssec_SOURCES += botan18signers.cc botansigners.cc
-pdnssec_LDADD += $(BOTAN18_LIBS) -lgmp
+pdnssec_LDADD += $(BOTAN18_LIBS)
 endif
 
 if CRYPTOPP