Blame win/config.h

Packit 022b05
/*
Packit 022b05
 * config.h.  Generated manually for windows / vc++ 6.0
Packit 022b05
 *
Packit 022b05
 * @(#) $Id: config.h.in 8079 2008-04-17 18:12:48Z schoenw $
Packit 022b05
 */
Packit 022b05
Packit 022b05
/* Define if the SMIv1/v2 parser shall be active. */
Packit 022b05
#define BACKEND_SMI
Packit 022b05
Packit 022b05
/* Define if the SMIng parser shall be active. */
Packit 022b05
#define BACKEND_SMING
Packit 022b05
Packit 022b05
/* The default error level at libsmi initialization. */
Packit 022b05
#define DEFAULT_ERRORLEVEL 3
Packit 022b05
Packit 022b05
/* The maximum module import recursion depth. */
Packit 022b05
#define MAX_LEX_DEPTH 30
Packit 022b05
Packit 022b05
/* The full pathname of the global configuration file. */
Packit 022b05
#define DEFAULT_GLOBALCONFIG "c:/smi/smi.conf"
Packit 022b05
Packit 022b05
/* The basename of the per-user configuration file searched in $HOME. */
Packit 022b05
#define DEFAULT_USERCONFIG ".smirc"
Packit 022b05
Packit 022b05
/* The default search path to lookup SMI module files. */
Packit 022b05
#define DEFAULT_SMIPATH "c:/smi/mibs/ietf;c:/smi/mibs/iana;c:/smi/mibs/irtf;c:/smi/mibs/site;c:/smi/mibs/tubs"
Packit 022b05
Packit 022b05
/* The default path separator character. */
Packit 022b05
#define PATH_SEPARATOR ';'
Packit 022b05
Packit 022b05
/* The default path separator character. */
Packit 022b05
#define DIR_SEPARATOR '\\'
Packit 022b05
Packit 022b05
/* The 64 bit integer types, their formats, and their min/max values. */
Packit 022b05
#ifdef _MSC_VER		/* msvc: max/min are defined in include/limits.h */
Packit 022b05
#define UINT64_FORMAT "%I64u"
Packit 022b05
#define INT64_FORMAT  "%I64d"
Packit 022b05
#define LIBSMI_UINT64_MAX    _UI64_MAX
Packit 022b05
#define LIBSMI_INT64_MIN     _I64_MIN
Packit 022b05
#define LIBSMI_INT64_MAX     _I64_MAX
Packit 022b05
#else
Packit 022b05
#define UINT64_FORMAT "%llu"
Packit 022b05
#define INT64_FORMAT  "%lld"
Packit 022b05
#define LIBSMI_UINT64_MAX    18446744073709551615ULL
Packit 022b05
#define LIBSMI_INT64_MIN     -9223372036854775808LL
Packit 022b05
#define LIBSMI_INT64_MAX     9223372036854775807LL
Packit 022b05
#endif
Packit 022b05
Packit 022b05
/* Define if dmalloc.h is present and shall be used. */
Packit 022b05
#undef HAVE_DMALLOC_H
Packit 022b05
Packit 022b05
/* Define to 1 if you have the <limits.h> header file. */
Packit 022b05
#define HAVE_LIMITS_H 1
Packit 022b05
Packit 022b05
/* Define if getopt.h (argv[] option parser) is present. */
Packit 022b05
#undef HAVE_GETOPT_H
Packit 022b05
Packit 022b05
/* Define if pwd.h (/etc/passwd database) is present. */
Packit 022b05
#undef HAVE_PWD_H
Packit 022b05
Packit 022b05
/* Define if the string-to-long-long function is present in libc. */
Packit 022b05
#undef HAVE_STRTOLL
Packit 022b05
Packit 022b05
/* Define if the string-to-quad function (BSD) is present in libc. */
Packit 022b05
#undef HAVE_STRTOQ
Packit 022b05
Packit 022b05
/* Define if the string-to-unsigned-long-long function is present in libc. */
Packit 022b05
#undef HAVE_STRTOULL
Packit 022b05
Packit 022b05
/* Define if the string-to-unsigned-quad function (BSD) is present in libc. */
Packit 022b05
#undef HAVE_STRTOUQ
Packit 022b05
Packit 022b05
/* Define if the timegm() function is present in libc. */
Packit 022b05
#undef HAVE_TIMEGM
Packit 022b05
Packit 022b05
/* Define if you have the snprintf function.  */
Packit 022b05
#define HAVE_SNPRINTF 1
Packit 022b05
Packit 022b05
/* Define if you have the vsnprintf function.  */
Packit 022b05
#undef HAVE_VSNPRINTF
Packit 022b05
Packit 022b05
/* Define if the win.h header file is present. */
Packit 022b05
#define HAVE_WIN_H 1
Packit 022b05
Packit 022b05
/* Name of package */
Packit 022b05
#define PACKAGE "libsmi"
Packit 022b05
Packit 022b05
/* Version number of package */
Packit 022b05
#define VERSION "0.4.8"