aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/bzip.cpp4
-rw-r--r--doc/examples/decrypt.cpp4
-rw-r--r--doc/examples/encrypt.cpp4
-rw-r--r--doc/examples/hash_fd.cpp2
4 files changed, 7 insertions, 7 deletions
diff --git a/doc/examples/bzip.cpp b/doc/examples/bzip.cpp
index a16d4f8fe..1abe4d309 100644
--- a/doc/examples/bzip.cpp
+++ b/doc/examples/bzip.cpp
@@ -12,7 +12,7 @@ This file is in the public domain
#include <iostream>
#include <botan/botan.h>
-#if defined(BOTAN_EXT_COMPRESSOR_BZIP2)
+#if defined(BOTAN_HAS_COMPRESSOR_BZIP2)
#include <botan/bzip2.h>
#endif
@@ -51,7 +51,7 @@ int main(int argc, char* argv[])
try {
Botan::Filter* bzip = 0;
-#ifdef BOTAN_EXT_COMPRESSOR_BZIP2
+#ifdef BOTAN_HAS_COMPRESSOR_BZIP2
if(decompress)
bzip = new Botan::Bzip_Decompression(small);
else
diff --git a/doc/examples/decrypt.cpp b/doc/examples/decrypt.cpp
index e0c4a1f48..7018e5f49 100644
--- a/doc/examples/decrypt.cpp
+++ b/doc/examples/decrypt.cpp
@@ -18,7 +18,7 @@ This file is in the public domain
#include <botan/botan.h>
-#if defined(BOTAN_EXT_COMPRESSOR_ZLIB)
+#if defined(BOTAN_HAS_COMPRESSOR_ZLIB)
#include <botan/zlib.h>
#endif
@@ -110,7 +110,7 @@ int main(int argc, char* argv[])
Pipe pipe(new Base64_Decoder,
get_cipher(algo + "/CBC", bc_key, iv, DECRYPTION),
-#ifdef BOTAN_EXT_COMPRESSOR_ZLIB
+#ifdef BOTAN_HAS_COMPRESSOR_ZLIB
new Zlib_Decompression,
#endif
new Fork(
diff --git a/doc/examples/encrypt.cpp b/doc/examples/encrypt.cpp
index 7c8649004..959461b63 100644
--- a/doc/examples/encrypt.cpp
+++ b/doc/examples/encrypt.cpp
@@ -26,7 +26,7 @@ This file is in the public domain
#include <botan/botan.h>
-#if defined(BOTAN_EXT_COMPRESSOR_ZLIB)
+#if defined(BOTAN_HAS_COMPRESSOR_ZLIB)
#include <botan/zlib.h>
#endif
@@ -140,7 +140,7 @@ int main(int argc, char* argv[])
new Base64_Encoder
),
new Chain(
-#ifdef BOTAN_EXT_COMPRESSOR_ZLIB
+#ifdef BOTAN_HAS_COMPRESSOR_ZLIB
new Zlib_Compression,
#endif
get_cipher(algo + "/CBC", bc_key, iv, ENCRYPTION),
diff --git a/doc/examples/hash_fd.cpp b/doc/examples/hash_fd.cpp
index d6487095a..1deed6988 100644
--- a/doc/examples/hash_fd.cpp
+++ b/doc/examples/hash_fd.cpp
@@ -18,7 +18,7 @@ I guess any POSIX.1 compliant OS (in theory).
#include <iostream>
#include <botan/botan.h>
-#if !defined(BOTAN_EXT_PIPE_UNIXFD_IO)
+#if !defined(BOTAN_HAS_PIPE_UNIXFD_IO)
#error "You didn't compile the pipe_unixfd module into Botan"
#endif