diff options
Diffstat (limited to 'src/openssl/globals.h')
-rw-r--r-- | src/openssl/globals.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/openssl/globals.h b/src/openssl/globals.h new file mode 100644 index 00000000..770b6dba --- /dev/null +++ b/src/openssl/globals.h @@ -0,0 +1,24 @@ +/* + * XML Security Library + * + * globals.h: internal header only used during the compilation + * + * This is free software; see Copyright file in the source + * distribution for preciese wording. + * + * Copyright (C) 2002-2003 Aleksey Sanin <aleksey@aleksey.com> + */ +#ifndef __XMLSEC_GLOBALS_H__ +#define __XMLSEC_GLOBALS_H__ + +/** + * Use autoconf defines if present. + */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif /* HAVE_CONFIG_H */ + +#define IN_XMLSEC_CRYPTO +#define XMLSEC_PRIVATE + +#endif /* ! __XMLSEC_GLOBALS_H__ */ |