2001-04-21 16:57:29 +00:00
|
|
|
/*
|
|
|
|
* libxml.h: internal header only used during the compilation of libxml
|
|
|
|
*
|
|
|
|
* See COPYRIGHT for the status of this software
|
|
|
|
*
|
|
|
|
* Author: breese@users.sourceforge.net
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __XML_LIBXML_H__
|
|
|
|
#define __XML_LIBXML_H__
|
|
|
|
|
2022-04-27 12:39:12 +02:00
|
|
|
/*
|
|
|
|
* These macros must be defined before including system headers.
|
|
|
|
* Do not add any #include directives above this block.
|
|
|
|
*/
|
2003-04-18 12:34:58 +00:00
|
|
|
#ifndef NO_LARGEFILE_SOURCE
|
2022-12-08 03:58:41 +01:00
|
|
|
#ifndef _LARGEFILE_SOURCE
|
|
|
|
#define _LARGEFILE_SOURCE
|
|
|
|
#endif
|
|
|
|
#ifndef _FILE_OFFSET_BITS
|
|
|
|
#define _FILE_OFFSET_BITS 64
|
|
|
|
#endif
|
2003-04-18 12:34:58 +00:00
|
|
|
#endif
|
|
|
|
|
2012-08-13 16:56:11 +08:00
|
|
|
/*
|
2022-12-08 03:58:41 +01:00
|
|
|
* These files are generated by the build system and contain private
|
|
|
|
* and public build configuration.
|
2012-08-13 16:56:11 +08:00
|
|
|
*/
|
2001-04-21 16:57:29 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include <libxml/xmlversion.h>
|
|
|
|
|
2022-12-08 03:58:41 +01:00
|
|
|
/*
|
|
|
|
* Due to some Autotools limitations, this variable must be passed as
|
|
|
|
* compiler flag. Define a default value if the macro wasn't set by the
|
|
|
|
* build system.
|
|
|
|
*/
|
2022-03-30 00:32:35 +02:00
|
|
|
#ifndef SYSCONFDIR
|
|
|
|
#define SYSCONFDIR "/etc"
|
|
|
|
#endif
|
|
|
|
|
2022-12-08 03:45:37 +01:00
|
|
|
#ifdef WITH_TRIO
|
2022-12-08 03:58:41 +01:00
|
|
|
#define TRIO_REPLACE_STDIO
|
|
|
|
#include "trio.h"
|
2001-04-21 16:57:29 +00:00
|
|
|
#endif
|
|
|
|
|
2022-11-27 02:09:27 +01:00
|
|
|
#if !defined(_WIN32) && \
|
|
|
|
!defined(__CYGWIN__) && \
|
|
|
|
(defined(__clang__) || \
|
|
|
|
(defined(__GNUC__) && (__GNUC__ >= 4)))
|
2022-12-08 03:58:41 +01:00
|
|
|
#define XML_HIDDEN __attribute__((visibility("hidden")))
|
2022-11-27 02:09:27 +01:00
|
|
|
#else
|
2022-12-08 03:58:41 +01:00
|
|
|
#define XML_HIDDEN
|
2022-11-27 02:09:27 +01:00
|
|
|
#endif
|
|
|
|
|
2019-05-16 21:17:28 +02:00
|
|
|
#if defined(__clang__) || \
|
|
|
|
(defined(__GNUC__) && (__GNUC__ >= 8))
|
2022-12-08 03:58:41 +01:00
|
|
|
#define ATTRIBUTE_NO_SANITIZE(arg) __attribute__((no_sanitize(arg)))
|
2019-05-16 21:17:28 +02:00
|
|
|
#else
|
2022-12-08 03:58:41 +01:00
|
|
|
#define ATTRIBUTE_NO_SANITIZE(arg)
|
2019-05-16 21:17:28 +02:00
|
|
|
#endif
|
|
|
|
|
2023-09-16 19:45:30 +02:00
|
|
|
#ifdef __clang__
|
|
|
|
#define ATTRIBUTE_NO_SANITIZE_INTEGER \
|
|
|
|
ATTRIBUTE_NO_SANITIZE("unsigned-integer-overflow") \
|
|
|
|
ATTRIBUTE_NO_SANITIZE("unsigned-shift-base")
|
|
|
|
#else
|
|
|
|
#define ATTRIBUTE_NO_SANITIZE_INTEGER
|
|
|
|
#endif
|
|
|
|
|
2001-04-21 16:57:29 +00:00
|
|
|
#endif /* ! __XML_LIBXML_H__ */
|