Files
wolfssl/IDE/MDK5-ARM/Inc/config.h

58 lines
1.5 KiB
C
Raw Normal View History

2014-04-11 16:20:12 +09:00
/* config.h
*
2015-01-08 09:39:04 -07:00
* Copyright (C) 2006-2015 wolfSSL Inc.
2014-04-11 16:20:12 +09:00
*
2015-01-06 12:14:15 -07:00
* This file is part of wolfSSL. (formerly known as CyaSSL)
2014-04-11 16:20:12 +09:00
*
2015-01-06 12:14:15 -07:00
* wolfSSL is free software; you can redistribute it and/or modify
2014-04-11 16:20:12 +09:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
2015-01-06 12:14:15 -07:00
* wolfSSL is distributed in the hope that it will be useful,
2014-04-11 16:20:12 +09:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#define __CORTEX_M3__
#if defined(MDK_CONF_full)
2014-04-11 16:20:12 +09:00
#include "config-Crypt.h"
#include "config-wolfSSL.h"
2014-04-11 16:20:12 +09:00
#elif defined(MDK_CONF_SimpleClient)
#include "config-Crypt.h"
#include "config-wolfSSL.h"
2014-04-11 16:20:12 +09:00
#elif defined(MDK_CONF_SimpleServer)
#include "config-Crypt.h"
#include "config-wolfSSL.h"
2014-04-11 16:20:12 +09:00
#elif defined(MDK_CONF_EchoClient)
#include "config-Crypt.h"
#include "config-wolfSSL.h"
2014-04-11 16:20:12 +09:00
#elif defined(MDK_CONF_EchoServer)
#include "config-Crypt.h"
#include "config-wolfSSL.h"
2014-04-11 16:20:12 +09:00
#elif defined(MDK_CONF_Benchmark)
#define SINGLE_THREADED
#include "config-Crypt.h"
2014-04-11 16:20:12 +09:00
#elif defined(MDK_CONF_CryptTest)
#define SINGLE_THREADED
#include "config-Crypt.h"
#elif defined(MDK_CONF_wolfSSL_lib)
#include "config-Crypt.h"
#include "config-wolfSSL.h"
2014-04-11 16:20:12 +09:00
#endif