mirror of
https://github.com/fwbuilder/fwbuilder
synced 2025-06-15 14:47:52 +02:00
137 lines
2.2 KiB
C
137 lines
2.2 KiB
C
|
|
#include "VERSION.h"
|
|
|
|
#undef BUILD_NUM
|
|
|
|
/* Define if you have the <X11/SM/SMlib.h> header file. */
|
|
#undef HAVE_X11_SM_SMLIB_H
|
|
|
|
/* Name of package */
|
|
#undef PACKAGE
|
|
|
|
/* OS */
|
|
#undef OS
|
|
|
|
/* OS */
|
|
#undef OS_CYGWIN
|
|
#undef OS_MINGW
|
|
#undef OS_MACOSX
|
|
#undef OS_SOLARIS
|
|
#undef OS_FREEBSD
|
|
#undef OS_OPENBSD
|
|
#undef OS_LINUX
|
|
#undef OS_UNKNOWN
|
|
|
|
#if defined(OS_SOLARIS) || defined(OS_FREEBSD) || defined(OS_OPENBSD) || defined(OS_LINUX) || defined(OS_MACOSX)
|
|
#define OS_UNIX 1
|
|
#endif
|
|
|
|
#if defined(_WIN32)
|
|
#define OS_WIN32 1
|
|
#endif
|
|
|
|
/* distribution (for Linux) */
|
|
#undef DISTRO
|
|
|
|
/* prefix dir */
|
|
#undef PREFIX
|
|
|
|
#define MANIFEST_MARKER "# files: "
|
|
|
|
#undef RCS_DIR
|
|
#undef RCS_FILE_NAME
|
|
#undef RCSDIFF_FILE_NAME
|
|
#undef RLOG_FILE_NAME
|
|
#undef CI_FILE_NAME
|
|
#undef CO_FILE_NAME
|
|
|
|
#undef HAVE_LOCALE_H
|
|
#undef HAVE_GETOPT_H
|
|
#undef HAVE_SETLOCALE
|
|
#undef HAVE_SETENV
|
|
#undef HAVE_PUTENV
|
|
#undef HAVE_SIGNAL
|
|
#undef HAVE_SIGNAL_H
|
|
|
|
#undef HAVE_PTY_H
|
|
#undef HAVE_LIBUTIL_H
|
|
#undef HAVE_UTIL_H
|
|
#undef HAVE_UNISTD_H
|
|
|
|
#ifdef HAVE_GETOPT_H
|
|
# define HAVE_DECL_GETOPT HAVE_GETOPT_H
|
|
#endif
|
|
|
|
#undef HAVE_STRUCT_TM_TM_ZONE
|
|
#undef TM_IN_SYS_TIME
|
|
|
|
#undef HAVE_FORKPTY
|
|
#undef HAVE_CFMAKERAW
|
|
|
|
/*
|
|
* This is needed for Solaris
|
|
*/
|
|
#undef __PRAGMA_REDEFINE_EXTNAME
|
|
|
|
#undef HAVE_CATGETS
|
|
#undef HAVE_GETTEXT
|
|
#undef HAVE_LC_MESSAGES
|
|
#undef HAVE_STPCPY
|
|
#undef HAVE_LIBSM
|
|
#undef HAVE_MEMPCPY
|
|
#undef HAVE_STRCHR
|
|
|
|
#undef HAVE_ANTLR_RUNTIME
|
|
|
|
#undef HAVE_QTDBUS
|
|
|
|
#undef HAVE_CPPUNIT
|
|
|
|
/*
|
|
* on some platforms (OpenBSD) the second parameter to dlopen is different
|
|
*/
|
|
#undef DLOPEN_MODE
|
|
|
|
#if 0
|
|
#ifdef __cplusplus
|
|
using namespace std;
|
|
/*
|
|
#ifndef __STD
|
|
#define __STD std
|
|
#endif
|
|
*/
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define SNPRINTF _snprintf
|
|
#define VSNPRINTF _vsnprintf
|
|
|
|
#define WINVER 0x0502
|
|
|
|
#define PACKAGE_LOCALE_DIR ""
|
|
#define PACKAGE_DATA_DIR ""
|
|
#define PACKAGE_SOURCE_DIR ""
|
|
|
|
/*
|
|
* Normally this macro defines directory where system-wide QT
|
|
* translations are installed. We do not use it on win32 since
|
|
* we can't assume user has QT installed on their machine.
|
|
*/
|
|
#define QTTRANSLATIONSDIR "."
|
|
|
|
|
|
#else
|
|
|
|
#undef PACKAGE_LOCALE_DIR
|
|
#undef PACKAGE_DATA_DIR
|
|
#undef PACKAGE_SOURCE_DIR
|
|
|
|
#define SNPRINTF snprintf
|
|
#define VSNPRINTF vsnprintf
|
|
|
|
#endif
|
|
|
|
|