aboutsummaryrefslogtreecommitdiffstats
path: root/include
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 /include
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 'include')
-rw-r--r--include/pipe.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pipe.h b/include/pipe.h
index ee13ad640..3c41f6ebe 100644
--- a/include/pipe.h
+++ b/include/pipe.h
@@ -95,6 +95,6 @@ BOTAN_DLL std::istream& operator>>(std::istream&, Pipe&);
#endif
-#if defined(BOTAN_EXT_PIPE_UNIXFD_IO)
+#if defined(BOTAN_HAS_PIPE_UNIXFD_IO)
#include <botan/fd_unix.h>
#endif