1/*
2 * Copyright (c) 2010-2012 Petri Lehtinen <petri@digip.org>
3 * Copyright 2012 Facebook, Inc. (modified to integrate with watchman)
4 *
5 * Jansson is free software; you can redistribute it and/or modify
6 * it under the terms of the MIT license. See LICENSE for details.
7 *
8 *
9 * This file specifies a part of the site-specific configuration for
10 * Jansson, namely those things that affect the public API in
11 * jansson.h.
12 *
13 * The configure script copies this file to jansson_config.h and
14 * replaces @var@ substitutions by values that fit your system. If you
15 * cannot run the configure script, you can do the value substitution
16 * by hand.
17 */
18
19#ifndef JANSSON_CONFIG_H
20#define JANSSON_CONFIG_H
21
22#include "config.h"
23#define JSON_INLINE inline
24#if HAVE_STRTOLL
25# define JSON_INTEGER_IS_LONG_LONG 1
26#else
27# define JSON_INTEGER_IS_LONG_LONG 0
28#endif
29#if HAVE_LOCALECONV
30# define JSON_HAVE_LOCALECONV 1
31#else
32# define JSON_HAVE_LOCALECONV 0
33#endif
34
35#endif
36