aboutsummaryrefslogtreecommitdiffstats
path: root/.gitignore
blob: 59446aa5f28a39c3739e2de1803fba478f6f013b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# project's gitignore

# recursives
__pycache__
*.pyc
*.whl
*.egg-info

# test suite
/.cache
/.tox

# temporary
imapclient
venv
backports
.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#ifndef TLS_AUX_H
#define TLS_AUX_H 1

#undef LIBWOLFSSL_VERSION_HEX

#include "config.h"
#include "fetchmail.h"

#ifdef SSL_ENABLE

# ifdef HAVE_WOLFSSL_OPTIONS_H
#  include <wolfssl/options.h>
# endif

# include <openssl/ssl.h>

# undef USING_WOLFSSL
# ifdef LIBWOLFSSL_VERSION_HEX
#  define USING_WOLFSSL 1
#  define OSSL110_API 1
# else
#  if OPENSSL_VERSION_NUMBER < 0x1010000fL
#   undef OSSL110_API
#  else
#   define OSSL110_API 1
#  endif
#  if OPENSSL_VERSION_NUMBER < 0x1010000fL
#   define OpenSSL_version(t) SSLeay_version((t))
#   define OpenSSL_version_num() SSLeay()
#   define OPENSSL_VERSION (SSLEAY_VERSION)
#   define OPENSSL_DIR (SSLEAY_DIR)
#   define OPENSSL_ENGINES_DIR (-1)
#  endif
# endif /* LIBWOLFSSL_VERSION_STRING */
#endif /* SSL_ENABLE */

#endif /* TLS_AUX_H */