mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
de9ce95170
--HG-- extra : rebase_source : be80333003c6fec659e736a77463568c836d8348
40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
/* 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.
|
|
*/
|
|
|
|
#ifndef _MOZILLA_CONFIG_H_
|
|
#define _MOZILLA_CONFIG_H_
|
|
|
|
@ALLDEFINES@
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
#define __STDC_LIMIT_MACROS
|
|
#define __STDC_CONSTANT_MACROS
|
|
#define __STDC_FORMAT_MACROS
|
|
|
|
/*
|
|
* Force-include hunspell_alloc_hooks.h and hunspell_fopen_hooks.h for hunspell,
|
|
* so that we don't need to modify them directly.
|
|
*
|
|
* HUNSPELL_STATIC is defined in extensions/spellcheck/hunspell/src/Makefile.in,
|
|
* unless --enable-system-hunspell is defined.
|
|
*/
|
|
#if defined(HUNSPELL_STATIC)
|
|
#include "hunspell_alloc_hooks.h"
|
|
#include "hunspell_fopen_hooks.h"
|
|
#endif
|
|
|
|
#endif /* _MOZILLA_CONFIG_H_ */
|
|
|