https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 6c9ce83bf002cce2799ffa270c6eeb4c1227d972 authored by ffxbld on 07 February 2013, 02:23:21 UTC
Added FENNEC_19_0b5_RELEASE FENNEC_19_0b5_BUILD2 tag(s) for changeset 20d099b63e84. DONTBUILD CLOSED TREE a=release
Tip revision: 6c9ce83
mozilla-config.h.in
/* 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. */
#define __STDC_LIMIT_MACROS

/* Force-include hunspell_alloc_hooks.h for hunspell, so that we don't need to
 * modify it 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"
#endif

#endif /* _MOZILLA_CONFIG_H_ */

back to top