2012-08-04 06:47:28 +00:00
|
|
|
/* List of defines generated by configure. Included with preprocessor flag,
|
|
|
|
* -include, to avoid long list of -D defines on the compile command-line.
|
|
|
|
* Do not edit.
|
|
|
|
*/
|
|
|
|
|
2015-02-03 01:35:19 +00:00
|
|
|
#ifndef MOZILLA_CONFIG_H
|
|
|
|
#define MOZILLA_CONFIG_H
|
|
|
|
|
|
|
|
#if defined(__clang__)
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#if __has_warning("-Wreserved-id-macro")
|
|
|
|
#pragma clang diagnostic ignored "-Wreserved-id-macro"
|
|
|
|
#endif
|
|
|
|
#endif
|
2012-08-04 06:47:28 +00:00
|
|
|
|
2017-06-08 13:29:03 +00:00
|
|
|
/* Expands to all the defines from configure. */
|
2015-12-04 01:51:12 +00:00
|
|
|
#undef ALLDEFINES
|
2012-08-04 06:47:28 +00:00
|
|
|
|
2011-12-15 05:27:42 +00:00
|
|
|
/*
|
|
|
|
* The c99 defining the limit macros (UINT32_MAX for example), says:
|
|
|
|
*
|
|
|
|
* C++ implementations should define these macros only when
|
|
|
|
* __STDC_LIMIT_MACROS is defined before <stdint.h> is included.
|
|
|
|
*
|
|
|
|
* The same also occurs with __STDC_CONSTANT_MACROS for the constant macros
|
|
|
|
* (INT8_C for example) used to specify a literal constant of the proper type,
|
|
|
|
* and with __STDC_FORMAT_MACROS for the format macros (PRId32 for example) used
|
|
|
|
* with the fprintf function family.
|
|
|
|
*/
|
2012-08-04 06:47:28 +00:00
|
|
|
#define __STDC_LIMIT_MACROS
|
2021-12-21 21:22:26 +00:00
|
|
|
#if !defined(__STDC_CONSTANT_MACROS)
|
2011-12-15 05:27:42 +00:00
|
|
|
#define __STDC_CONSTANT_MACROS
|
2021-12-21 21:22:26 +00:00
|
|
|
#endif
|
2013-10-01 19:08:46 +00:00
|
|
|
#if !defined(__STDC_FORMAT_MACROS)
|
2011-12-15 05:27:42 +00:00
|
|
|
#define __STDC_FORMAT_MACROS
|
2013-10-01 19:08:46 +00:00
|
|
|
#endif
|
2012-08-04 06:47:28 +00:00
|
|
|
|
2015-02-03 01:35:19 +00:00
|
|
|
#if defined(__clang__)
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
#endif
|
|
|
|
|
2014-02-28 13:17:22 +00:00
|
|
|
/*
|
|
|
|
* Force-include sdkdecls.h for building the chromium sandbox code.
|
|
|
|
*
|
|
|
|
* CHROMIUM_SANDBOX_BUILD is defined in security/sandbox/moz.build.
|
|
|
|
* Note that this include path relies on the LOCAL_INCLUDES in that file.
|
|
|
|
*/
|
|
|
|
#if defined(CHROMIUM_SANDBOX_BUILD) && defined(XP_WIN)
|
2015-01-22 08:37:30 +00:00
|
|
|
#include "base/win/sdkdecls.h"
|
2018-11-02 18:07:29 +00:00
|
|
|
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
/*
|
|
|
|
* MinGW doesn't support __try / __except. There are a few mechanisms available
|
|
|
|
* to hack around it and pseudo-support it, but these are untested in Firefox.
|
|
|
|
* What is tested (and works) is replacing them with if(true) and else.
|
|
|
|
*/
|
|
|
|
#define __try if(true)
|
|
|
|
#define __except(x) else
|
2018-11-02 18:28:01 +00:00
|
|
|
#ifdef GetExceptionCode
|
|
|
|
#undef GetExceptionCode
|
|
|
|
#endif
|
|
|
|
#define GetExceptionCode() 0
|
2018-11-02 18:07:29 +00:00
|
|
|
|
|
|
|
#endif /* __MINGW32__ */
|
2018-01-22 18:18:51 +00:00
|
|
|
#endif /* defined(CHROMIUM_SANDBOX_BUILD) && defined(XP_WIN) */
|
2014-02-28 13:17:22 +00:00
|
|
|
|
2015-02-03 01:35:19 +00:00
|
|
|
#endif /* MOZILLA_CONFIG_H */
|