From a56494a526e6c362c22b1169fa42ca150e78a672 Mon Sep 17 00:00:00 2001 From: Jeff Morriss Date: Thu, 2 Jan 2014 19:11:06 +0000 Subject: Fix wireshark-qt startup coredump under autofoo and Windows: make cmake's VERSION_* macros integers instead of numbers (and treat them as such in ui/qt/about_dialog.cpp). svn path=/trunk/; revision=54563 --- cmakeconfig.h.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cmakeconfig.h.in') diff --git a/cmakeconfig.h.in b/cmakeconfig.h.in index 81fcd6c4b1..d958f0791a 100644 --- a/cmakeconfig.h.in +++ b/cmakeconfig.h.in @@ -7,9 +7,9 @@ /* Version number of package */ #define VERSION "${CPACK_PACKAGE_VERSION}" -#define VERSION_MAJOR "${PROJECT_MAJOR_VERSION}" -#define VERSION_MINOR "${PROJECT_MINOR_VERSION}" -#define VERSION_MICRO "${PROJECT_PATCH_VERSION}" +#define VERSION_MAJOR ${PROJECT_MAJOR_VERSION} +#define VERSION_MINOR ${PROJECT_MINOR_VERSION} +#define VERSION_MICRO ${PROJECT_PATCH_VERSION} /* FIXME: Move the path stuff to the CMakeInstallDirs.cmake file */ /* Directory for data */ -- cgit v1.2.3