2017-01-27 12:05:45 +00:00
|
|
|
// config.h - originally written and placed in the public domain by Wei Dai
|
2015-11-18 20:32:28 +00:00
|
|
|
|
2019-05-17 19:18:17 +00:00
|
|
|
/// \file config.h
|
|
|
|
/// \brief Library configuration file
|
|
|
|
/// \details <tt>config.h</tt> was split into components in May 2019 to better
|
|
|
|
/// integrate with Autoconf and its feature tests. The splitting occured so
|
|
|
|
/// users could continue to include <tt>config.h</tt> while allowing Autoconf
|
|
|
|
/// to write new <tt>config_asm.h</tt> and new <tt>config_cxx.h</tt> using
|
|
|
|
/// its feature tests.
|
|
|
|
/// \sa <A HREF="https://github.com/weidai11/cryptopp/issues/835">Issue 835</A>
|
|
|
|
/// \since Crypto++ 8.3
|
|
|
|
|
2017-11-29 15:54:33 +00:00
|
|
|
/// \file config.h
|
|
|
|
/// \brief Library configuration file
|
2015-11-18 20:32:28 +00:00
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
#ifndef CRYPTOPP_CONFIG_H
|
|
|
|
#define CRYPTOPP_CONFIG_H
|
|
|
|
|
2019-05-17 19:18:17 +00:00
|
|
|
#include "config_align.h"
|
|
|
|
#include "config_asm.h"
|
|
|
|
#include "config_cpu.h"
|
|
|
|
#include "config_cxx.h"
|
|
|
|
#include "config_dll.h"
|
|
|
|
#include "config_int.h"
|
|
|
|
#include "config_misc.h"
|
|
|
|
#include "config_ns.h"
|
|
|
|
#include "config_os.h"
|
|
|
|
#include "config_ver.h"
|
|
|
|
|
|
|
|
#endif // CRYPTOPP_CONFIG_H
|