https://github.com/mozilla/gecko-dev
Revision d2b0b84c2af794bb79acc39ae59425756fdd0886 authored by Mark Hammond on 09 September 2013, 00:16:21 UTC, committed by Mark Hammond on 09 September 2013, 00:16:21 UTC
1 parent 27a2af9
Raw File
Tip revision: d2b0b84c2af794bb79acc39ae59425756fdd0886 authored by Mark Hammond on 09 September 2013, 00:16:21 UTC
Bug 906713 - Reset default capture timeout earlier to prevent oranges. r=adw, a=test-only
Tip revision: d2b0b84
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 and hunspell_fopen_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"
#include "hunspell_fopen_hooks.h"
#endif

#endif /* _MOZILLA_CONFIG_H_ */

back to top