aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2011-12-16 14:19:14 +0100
committerAndreas Steffen <andreas.steffen@strongswan.org>2011-12-16 14:19:14 +0100
commit0e94ae12861285a78fa4748924c08c4a798ccdde (patch)
treeeae3281d5c0bb4f7d06abe4d21faf920b073bae7
parentd463def798ed339b143ee9500c2781532394171e (diff)
downloadstrongswan-0e94ae12861285a78fa4748924c08c4a798ccdde.tar.bz2
strongswan-0e94ae12861285a78fa4748924c08c4a798ccdde.tar.xz
Revert "fixed caption alignment"
-rw-r--r--configure.in5
-rw-r--r--src/checksum/checksum_builder.c3
-rw-r--r--src/libimcv/Makefile.am4
3 files changed, 2 insertions, 10 deletions
diff --git a/configure.in b/configure.in
index 76e7d44ec..4f4f03554 100644
--- a/configure.in
+++ b/configure.in
@@ -135,7 +135,6 @@ ARG_ENABL_SET([tnc-imv], [enable TNC IMV module.])
ARG_ENABL_SET([tnccs-11], [enable TNCCS 1.1 protocol module.])
ARG_ENABL_SET([tnccs-20], [enable TNCCS 2.0 protocol module.])
ARG_ENABL_SET([tnccs-dynamic], [enable dynamic TNCCS protocol discovery module.])
-ARG_ENABL_SET([imv-logger], [enable IMV logger module.])
ARG_ENABL_SET([imc-test], [enable IMC test module.])
ARG_ENABL_SET([imv-test], [enable IMV test module.])
ARG_ENABL_SET([imc-scanner], [enable IMC port scanner module.])
@@ -256,7 +255,7 @@ if test x$tnc_imc = xtrue -o x$tnc_imv = xtrue -o x$tnccs_11 = xtrue -o x$tnccs_
tnc_tnccs=true;
fi
-if test x$imv_logger = xtrue -o x$imc_test = xtrue -o x$imv_test = xtrue -o x$imc_scanner = xtrue -o x$imv_scanner = xtrue -o x$imc_attestation = xtrue -o x$imv_attestation = xtrue; then
+if test x$imc_test = xtrue -o x$imv_test = xtrue -o x$imc_scanner = xtrue -o x$imv_scanner = xtrue -o x$imc_attestation = xtrue -o x$imv_attestation = xtrue; then
imcv=true;
fi
@@ -970,7 +969,6 @@ AM_CONDITIONAL(USE_TNC_TNCCS, test x$tnc_tnccs = xtrue)
AM_CONDITIONAL(USE_TNCCS_11, test x$tnccs_11 = xtrue)
AM_CONDITIONAL(USE_TNCCS_20, test x$tnccs_20 = xtrue)
AM_CONDITIONAL(USE_TNCCS_DYNAMIC, test x$tnccs_dynamic = xtrue)
-AM_CONDITIONAL(USE_IMV_LOGGER, test x$imv_logger = xtrue)
AM_CONDITIONAL(USE_IMC_TEST, test x$imc_test = xtrue)
AM_CONDITIONAL(USE_IMV_TEST, test x$imv_test = xtrue)
AM_CONDITIONAL(USE_IMC_SCANNER, test x$imc_scanner = xtrue)
@@ -1113,7 +1111,6 @@ AC_OUTPUT(
src/libpts/plugins/imc_attestation/Makefile
src/libpts/plugins/imv_attestation/Makefile
src/libimcv/Makefile
- src/libimcv/plugins/imv_logger/Makefile
src/libimcv/plugins/imc_test/Makefile
src/libimcv/plugins/imv_test/Makefile
src/libimcv/plugins/imc_scanner/Makefile
diff --git a/src/checksum/checksum_builder.c b/src/checksum/checksum_builder.c
index 250b3d1ca..8311d9a39 100644
--- a/src/checksum/checksum_builder.c
+++ b/src/checksum/checksum_builder.c
@@ -151,8 +151,7 @@ int main(int argc, char* argv[])
printf("\n");
printf("integrity_checksum_t checksums[] = {\n");
fprintf(stderr, "integrity test data:\n");
- fprintf(stderr, "module name, file size / checksum "
- "segment size / checksum\n");
+ fprintf(stderr, "module name, file size / checksum segment size / checksum\n");
for (i = 1; i < argc; i++)
{
build_binary_checksum(argv[i]);
diff --git a/src/libimcv/Makefile.am b/src/libimcv/Makefile.am
index cc014e0c4..fae9fd662 100644
--- a/src/libimcv/Makefile.am
+++ b/src/libimcv/Makefile.am
@@ -21,10 +21,6 @@ libimcv_la_SOURCES = \
SUBDIRS = .
-if USE_IMV_LOGGER
- SUBDIRS += plugins/imv_logger
-endif
-
if USE_IMC_TEST
SUBDIRS += plugins/imc_test
endif