- Cmake was not updating HAVE_ST_BIRTHTIME.
- NIBBLER_FEATURE_DATE was not properly applied everywhere.
- FEATURE_COLOR was not properly set.
- Some source files failed to include cmake.h, and therefore were not properly
- Removed inefficient use of std::string::substr for guaranteed single character
strings.
- Integrated Directory::cd.
- Integrated File::ctime, ::btime.
- Integrated Path::operator+.
- Integrated Nibbler::getDigit{2,4,6}.
- Integrated HighResTimer.
enabling/disabling code.
- All Path objects now expanded internally to absolute form.
- Modified unit tests to accomodate absolute paths.
- Merged new nibbler.t.cpp tests.
- Made various methods const.
- Includes removed from some files, added to others.
77 lines
1.8 KiB
C
77 lines
1.8 KiB
C
/* cmake.h.in. Creates cmake.h during a cmake run */
|
|
|
|
/* 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_FR_FR ${LANGUAGE_FR_FR}
|
|
#define LANGUAGE_DE_DE ${LANGUAGE_DE_DE}
|
|
#define LANGUAGE_IT_IT ${LANGUAGE_IT_IT}
|
|
|
|
/* 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 KFREEBSD
|
|
#cmakedefine GNUHURD
|
|
#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 st.st_birthtime struct member */
|
|
#cmakedefine HAVE_ST_BIRTHTIME
|
|
|
|
/* Found get_current_dir_name */
|
|
#cmakedefine HAVE_GET_CURRENT_DIR_NAME
|
|
|
|
/* Found the uuid library */
|
|
#cmakedefine HAVE_UUID
|
|
#cmakedefine HAVE_UUID_UNPARSE_LOWER
|
|
|
|
/* Undefine this to eliminate the execute command */
|
|
#define HAVE_EXECUTE 1
|
|
|