diff options
author | Tobias Brunner <tobias@strongswan.org> | 2014-06-27 15:26:53 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2014-06-30 13:25:13 +0200 |
commit | 3986c1e3fdba3cfe04d4c1831a3d21d14e4287aa (patch) | |
tree | 0298a8ae02fdfbf6ceebc82a0bef45ac71e7ce55 /src | |
parent | 45f647c9cd78b03ad526f78b312b139932354607 (diff) | |
download | strongswan-3986c1e3fdba3cfe04d4c1831a3d21d14e4287aa.tar.bz2 strongswan-3986c1e3fdba3cfe04d4c1831a3d21d14e4287aa.tar.xz |
autoconf: Replace --disable-tools option with --disable-scepclient
Since using a separate option for pki this was the only tool that was still
enabled by that option.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/checksum/Makefile.am | 2 | ||||
-rw-r--r-- | src/conftest/README | 2 | ||||
-rw-r--r-- | src/starter/Makefile.am | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index c412d9181..95c68d0c8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -72,7 +72,7 @@ if USE_UPDOWN SUBDIRS += _updown _updown_espmark endif -if USE_TOOLS +if USE_SCEPCLIENT SUBDIRS += scepclient endif diff --git a/src/checksum/Makefile.am b/src/checksum/Makefile.am index 27bc09491..821c51747 100644 --- a/src/checksum/Makefile.am +++ b/src/checksum/Makefile.am @@ -99,7 +99,7 @@ if USE_CMD exes += $(DESTDIR)$(sbindir)/charon-cmd endif -if USE_TOOLS +if USE_SCEPCLIENT exes += $(DESTDIR)$(ipsecdir)/scepclient endif diff --git a/src/conftest/README b/src/conftest/README index 617195df9..d37539a16 100644 --- a/src/conftest/README +++ b/src/conftest/README @@ -304,7 +304,7 @@ Compile time options required depend on the test suite. A minimalistic strongSwan build with the OpenSSL crypto backend can be configured with: ./configure --sysconfdir=/etc --disable-pluto --disable-scripts \ - --disable-tools --disable-aes --disable-des --disable-md5 \ + --disable-scepclient --disable-aes --disable-des --disable-md5 \ --disable-sha1 --disable-sha2 --disable-fips-prf --disable-gmp \ --disable-pubkey --disable-pgp --disable-dnskey --disable-updown \ --disable-attr --disable-resolve --enable-openssl --enable-conftest \ diff --git a/src/starter/Makefile.am b/src/starter/Makefile.am index 04e126d94..f0a2be856 100644 --- a/src/starter/Makefile.am +++ b/src/starter/Makefile.am @@ -48,7 +48,7 @@ if USE_LOAD_WARNING AM_CPPFLAGS += -DLOAD_WARNING endif -if USE_TOOLS +if USE_SCEPCLIENT AM_CPPFLAGS += -DGENERATE_SELFCERT endif |