Conflicts: AUTHORS CMakeLists.txt INSTALL NEWS cmake.h.in doc/man/task-faq.5.in package-config/osx/README scripts/utils/verify_l10n src/API.h src/Config.cpp src/Context.cpp src/DOM.cpp src/Hooks.cpp src/TransportShell.h src/commands/CmdDiagnostics.cpp src/commands/CmdShell.cpp src/commands/CmdVersion.cpp src/en-US.h src/shell/Readline.h src/wcwidth6.cpp test/CMakeLists.txt test/color.uda.t test/duration.t.cpp test/hook.on-launch.t test/template.t test/uuid.t
70 lines
1.6 KiB
C
70 lines
1.6 KiB
C
/* cmake.h.in. Creates cmake.h during a cmake run */
|
|
|
|
#define L10N // Localization complete.
|
|
|
|
/* Package information */
|
|
#define PACKAGE "${PACKAGE}"
|
|
#define VERSION "${VERSION}"
|
|
#define PACKAGE_BUGREPORT "${PACKAGE_BUGREPORT}"
|
|
#define PACKAGE_NAME "${PACKAGE_NAME}"
|
|
#define PACKAGE_TARNAME "${PACKAGE_TARNAME}"
|
|
#define PACKAGE_VERSION "${PACKAGE_VERSION}"
|
|
#define PACKAGE_STRING "${PACKAGE_STRING}"
|
|
|
|
/* Installation details */
|
|
#define TASK_RCDIR "${CMAKE_INSTALL_PREFIX}/${TASK_DOCDIR}/rc"
|
|
|
|
/* Localization */
|
|
#define PACKAGE_LANGUAGE ${PACKAGE_LANGUAGE}
|
|
#define LANGUAGE_EN_US ${LANGUAGE_EN_US}
|
|
#define LANGUAGE_ES_ES ${LANGUAGE_ES_ES}
|
|
#define LANGUAGE_DE_DE ${LANGUAGE_DE_DE}
|
|
#define LANGUAGE_FR_FR ${LANGUAGE_FR_FR}
|
|
|
|
/* git information */
|
|
#cmakedefine HAVE_COMMIT
|
|
|
|
/* cmake information */
|
|
#cmakedefine HAVE_CMAKE
|
|
#define CMAKE_VERSION "${CMAKE_VERSION}"
|
|
|
|
/* Compiling platform */
|
|
#cmakedefine LINUX
|
|
#cmakedefine DARWIN
|
|
#cmakedefine CYGWIN
|
|
#cmakedefine FREEBSD
|
|
#cmakedefine OPENBSD
|
|
#cmakedefine NETBSD
|
|
#cmakedefine HAIKU
|
|
#cmakedefine SOLARIS
|
|
#cmakedefine UNKNOWN
|
|
|
|
/* Found the GnuTLS library */
|
|
#cmakedefine HAVE_LIBGNUTLS
|
|
|
|
/* Found the Readline library */
|
|
#cmakedefine HAVE_READLINE
|
|
|
|
/* Found the pthread library */
|
|
#cmakedefine HAVE_LIBPTHREAD
|
|
|
|
/* Found random */
|
|
#cmakedefine HAVE_RANDOM
|
|
|
|
/* Found srandom */
|
|
#cmakedefine HAVE_SRANDOM
|
|
|
|
/* Found tm_gmtoff */
|
|
#cmakedefine HAVE_TM_GMTOFF
|
|
|
|
/* Found timegm */
|
|
#cmakedefine HAVE_TIMEGM
|
|
|
|
/* Found the uuid library */
|
|
#cmakedefine HAVE_UUID
|
|
#cmakedefine HAVE_UUID_UNPARSE_LOWER
|
|
|
|
/* Undefine this to eliminate the execute command */
|
|
#define HAVE_EXECUTE 1
|
|
|