diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-06-07 19:48:46 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-06-09 11:03:34 +0200 |
commit | 23d7e76788f018b24921549e6d38948873ec6059 (patch) | |
tree | 877d3a8ee948603943f8eba7bbe4b7ac5eb89014 /src/scepclient | |
parent | 4ca4efb28f8c3d49eebc62bd21ac5e1e029bb34d (diff) | |
download | strongswan-23d7e76788f018b24921549e6d38948873ec6059.tar.bz2 strongswan-23d7e76788f018b24921549e6d38948873ec6059.tar.xz |
hooray, pluto and scepclient do not depend on libgmp anymore
Diffstat (limited to 'src/scepclient')
-rw-r--r-- | src/scepclient/Makefile.am | 9 | ||||
-rw-r--r-- | src/scepclient/scepclient.c | 1 |
2 files changed, 2 insertions, 8 deletions
diff --git a/src/scepclient/Makefile.am b/src/scepclient/Makefile.am index a6e43a4f1..20bf76065 100644 --- a/src/scepclient/Makefile.am +++ b/src/scepclient/Makefile.am @@ -24,14 +24,12 @@ AM_CFLAGS = \ LIBSTRONGSWANBUILDDIR=$(top_builddir)/src/libstrongswan LIBFREESWANBUILDDIR=$(top_builddir)/src/libfreeswan -LIBCRYPTOBUILDDIR=$(top_builddir)/src/libcrypto scepclient_LDADD = \ ca.o crl.o certs.o constants.o defs.o fetch.o id.o keys.o lex.o \ -mp_defs.o ocsp.o pem.o pgpcert.o pkcs7.o smartcard.o x509.o \ +ocsp.o pem.o pgpcert.o pkcs7.o smartcard.o x509.o \ $(LIBSTRONGSWANBUILDDIR)/libstrongswan.la \ -$(LIBFREESWANBUILDDIR)/libfreeswan.a \ --lgmp +$(LIBFREESWANBUILDDIR)/libfreeswan.a # This compile option activates smartcard support if USE_SMARTCARD @@ -56,9 +54,6 @@ crl.o : $(PLUTODIR)/crl.c $(PLUTODIR)/crl.h defs.o : $(PLUTODIR)/defs.c $(PLUTODIR)/defs.h $(COMPILE) $(INCLUDES) -c -o $@ $< -mp_defs.o : $(PLUTODIR)/mp_defs.c $(PLUTODIR)/mp_defs.h - $(COMPILE) $(INCLUDES) -c -o $@ $< - fetch.o : $(PLUTODIR)/fetch.c $(PLUTODIR)/fetch.h $(COMPILE) $(INCLUDES) -c -o $@ $< diff --git a/src/scepclient/scepclient.c b/src/scepclient/scepclient.c index eb3197689..9f979309e 100644 --- a/src/scepclient/scepclient.c +++ b/src/scepclient/scepclient.c @@ -32,7 +32,6 @@ #include <ctype.h> #include <unistd.h> #include <time.h> -#include <gmp.h> #include <freeswan.h> |