aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/hash_fd.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-28 16:04:33 +0000
committerlloyd <[email protected]>2008-09-28 16:04:33 +0000
commit4a04f965bd43bd591c8973ed025dc312823f1607 (patch)
tree30016b6e1ff6188dbcc0e183a7ae53b60051c960 /doc/examples/hash_fd.cpp
parent6edc83ddef93bddf70f1b259d80b104bf14524c2 (diff)
Modularize the Adler32 checksum in checksums/adler32
Add a new option --disable-modules which allows for disabling any set of modules that normally would be autoloaded. Rename the Botan feature test macros from BOTAN_EXT_BLAH to BOTAN_HAS_BLAH, which will be much more sensible especially when everything is done in this fashion (eg, BOTAN_HAS_BLOWFISH or BOTAN_HAS_RSA, etc)
Diffstat (limited to 'doc/examples/hash_fd.cpp')
-rw-r--r--doc/examples/hash_fd.cpp2
1 files changed, 1 insertions, 1 deletions
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