Jump to content
TrinityCore

diemail32

Plebs
  • Posts

    6
  • Joined

  • Last visited

Posts posted by diemail32

  1. The above parameters when combined into a full example :

     

    cmake ../ -DCMAKE_INSTALL_PREFIX=/home/<username>/server -DWITH_WARNINGS=1
     
    Another Example Below:
    cmake ../ -DCMAKE_INSTALL_PREFIX=/home/wow/server -DCONF_DIR=/home/wow/server/etc -DTOOLS=1 -DWITH_WARNINGS=1

     

     

    sry i don't understand.

    When i wan't a normal "basic" installation what command i need to execute?

     

    Thanks

  2. Hey,

    i try to install a trinitycore 3.5.5 Server on a VMWare (Ubuntu 14.04)

    I follow some guides and the TrinityCore Compille Tutortial... 

    Everytime when i executed the cmake command i get a error.

    Look here in the log, why i get this errors and how i can fix that?

     

    Quote

     

        '
          /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000   % 1000)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__        % 1000)'

      the old evaluation rules produce:

        '
          /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000   % 1000)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__        % 1000)'

      but the new evaluation rules produce:

        '
          /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000   % 1000)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__        % 1000)'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/ADSP-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        #if defined(__VISUALDSPVERSION__)
          /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8  & 0xFF)
        #endif'

      the old evaluation rules produce:

        '
        #if defined(__VISUALDSPVERSION__)
          /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8  & 0xFF)
        #endif'

      but the new evaluation rules produce:

        '
        #if defined(__VISUALDSPVERSION__)
          /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8  & 0xFF)
        #endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/PGI-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
        # if defined(__PGIC_PATCHLEVEL__)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
        # endif'

      the old evaluation rules produce:

        '
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
        # if defined(__PGIC_PATCHLEVEL__)
        #  define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
        # endif'

      but the new evaluation rules produce:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
        # if defined(__PGIC_PATCHLEVEL__)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/MIPSpro-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # if defined(_SGI_COMPILER_VERSION)
          /* _SGI_COMPILER_VERSION = VRP */
        #  define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_SGI_COMPILER_VERSION/100)
        #  define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_SGI_COMPILER_VERSION/10 % 10)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_SGI_COMPILER_VERSION    % 10)
        # else
          /* _COMPILER_VERSION = VRP */
        #  define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_COMPILER_VERSION/100)
        #  define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_COMPILER_VERSION/10 % 10)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_COMPILER_VERSION    % 10)
        # endif'

      the old evaluation rules produce:

        '
        # if defined(_SGI_COMPILER_VERSION)
          /* _SGI_COMPILER_VERSION = VRP */
        #  define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(_SGI_COMPILER_VERSION/100)
        #  define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(_SGI_COMPILER_VERSION/10 % 10)
        #  define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(_SGI_COMPILER_VERSION    % 10)
        # else
          /* _COMPILER_VERSION = VRP */
        #  define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(_COMPILER_VERSION/100)
        #  define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(_COMPILER_VERSION/10 % 10)
        #  define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(_COMPILER_VERSION    % 10)
        # endif'

      but the new evaluation rules produce:

        '
        # if defined(_SGI_COMPILER_VERSION)
          /* _SGI_COMPILER_VERSION = VRP */
        #  define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_SGI_COMPILER_VERSION/100)
        #  define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_SGI_COMPILER_VERSION/10 % 10)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_SGI_COMPILER_VERSION    % 10)
        # else
          /* _COMPILER_VERSION = VRP */
        #  define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_COMPILER_VERSION/100)
        #  define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_COMPILER_VERSION/10 % 10)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_COMPILER_VERSION    % 10)
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/Embarcadero-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__CODEGEARC_VERSION__>>24 & 0x00FF)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__CODEGEARC_VERSION__>>16 & 0x00FF)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__CODEGEARC_VERSION__     & 0xFFFF)'

      the old evaluation rules produce:

        '
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_HEX@(__CODEGEARC_VERSION__>>24 & 0x00FF)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_HEX@(__CODEGEARC_VERSION__>>16 & 0x00FF)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_HEX@(__CODEGEARC_VERSION__     & 0xFFFF)'

      but the new evaluation rules produce:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__CODEGEARC_VERSION__>>24 & 0x00FF)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__CODEGEARC_VERSION__>>16 & 0x00FF)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__CODEGEARC_VERSION__     & 0xFFFF)'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/PathScale-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PATHCC__)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PATHCC_MINOR__)
        # if defined(__PATHCC_PATCHLEVEL__)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PATHCC_PATCHLEVEL__)
        # endif'

      the old evaluation rules produce:

        '
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__PATHCC__)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__PATHCC_MINOR__)
        # if defined(__PATHCC_PATCHLEVEL__)
        #  define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__PATHCC_PATCHLEVEL__)
        # endif'

      but the new evaluation rules produce:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PATHCC__)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PATHCC_MINOR__)
        # if defined(__PATHCC_PATCHLEVEL__)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PATHCC_PATCHLEVEL__)
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
          /* __DECCXX_VER = VVRRTPPPP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__DECCXX_VER/10000000)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__DECCXX_VER/100000  % 100)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__DECCXX_VER         % 10000)'

      the old evaluation rules produce:

        '
          /* __DECCXX_VER = VVRRTPPPP */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__DECCXX_VER/10000000)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__DECCXX_VER/100000  % 100)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__DECCXX_VER         % 10000)'

      but the new evaluation rules produce:

        '
          /* __DECCXX_VER = VVRRTPPPP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__DECCXX_VER/10000000)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__DECCXX_VER/100000  % 100)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__DECCXX_VER         % 10000)'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:2 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
        # if defined(_MSC_VER)
           /* _MSC_VER = VVRR */
        #  define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        #  define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # endif'

      the old evaluation rules produce:

        '
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
        # if defined(_MSC_VER)
           /* _MSC_VER = VVRR */
        #  define /home/root/serverSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        #  define /home/root/serverSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # endif'

      but the new evaluation rules produce:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
        # if defined(_MSC_VER)
           /* _MSC_VER = VVRR */
        #  define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        #  define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/Compiler/AppleClang-DetermineCompiler.cmake:4 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:12 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # if defined(_MSC_VER)
        #  define @PREFIX@SIMULATE_ID \"MSVC\"
        # endif'

      the old evaluation rules produce:

        '
        # if defined(_MSC_VER)
        #  define /home/root/serverSIMULATE_ID "MSVC"
        # endif'

      but the new evaluation rules produce:

        '
        # if defined(_MSC_VER)
        #  define @PREFIX@SIMULATE_ID "MSVC"
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/Compiler/AppleClang-DetermineCompiler.cmake:4 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/AppleClang-DetermineCompiler.cmake:6 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '${_compiler_id_version_compute}
        # define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__apple_build_version__)'

      the old evaluation rules produce:

        '
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
        # if defined(_MSC_VER)
           /* _MSC_VER = VVRR */
        #  define /home/root/serverSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        #  define /home/root/serverSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # endif
        # define /home/root/serverCOMPILER_VERSION_TWEAK @MACRO_DEC@(__apple_build_version__)'

      but the new evaluation rules produce:

        '
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
        # if defined(_MSC_VER)
           /* _MSC_VER = VVRR */
        #  define /home/root/serverSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        #  define /home/root/serverSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # endif
        # define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__apple_build_version__)'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake:2 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
          /* __IBMCPP__ = VRP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMCPP__/100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMCPP__/10 % 10)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMCPP__    % 10)'

      the old evaluation rules produce:

        '
          /* __IBMCPP__ = VRP */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMCPP__/100)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__IBMCPP__/10 % 10)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__IBMCPP__    % 10)'

      but the new evaluation rules produce:

        '
          /* __IBMCPP__ = VRP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMCPP__/100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMCPP__/10 % 10)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMCPP__    % 10)'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/Compiler/XL-CXX-DetermineCompiler.cmake:4 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/Borland-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
          /* __BORLANDC__ = 0xVRR */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__BORLANDC__>>8)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__BORLANDC__ & 0xFF)'

      the old evaluation rules produce:

        '
          /* __BORLANDC__ = 0xVRR */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_HEX@(__BORLANDC__>>8)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_HEX@(__BORLANDC__ & 0xFF)'

      but the new evaluation rules produce:

        '
          /* __BORLANDC__ = 0xVRR */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__BORLANDC__>>8)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__BORLANDC__ & 0xFF)'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/Watcom-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
           /* __WATCOMC__ = VVRR */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__WATCOMC__ / 100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
        # if (__WATCOMC__ % 10) > 0
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
        # endif'

      the old evaluation rules produce:

        '
           /* __WATCOMC__ = VVRR */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__WATCOMC__ / 100)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
        # if (__WATCOMC__ % 10) > 0
        #  define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
        # endif'

      but the new evaluation rules produce:

        '
           /* __WATCOMC__ = VVRR */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__WATCOMC__ / 100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
        # if (__WATCOMC__ % 10) > 0
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:2 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
        # if defined(_MSC_VER)
           /* _MSC_VER = VVRR */
        #  define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        #  define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # endif'

      the old evaluation rules produce:

        '
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
        # if defined(_MSC_VER)
           /* _MSC_VER = VVRR */
        #  define /home/root/serverSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        #  define /home/root/serverSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # endif'

      but the new evaluation rules produce:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
        # if defined(_MSC_VER)
           /* _MSC_VER = VVRR */
        #  define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        #  define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/Compiler/Clang-DetermineCompiler.cmake:4 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:12 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # if defined(_MSC_VER)
        #  define @PREFIX@SIMULATE_ID \"MSVC\"
        # endif'

      the old evaluation rules produce:

        '
        # if defined(_MSC_VER)
        #  define /home/root/serverSIMULATE_ID "MSVC"
        # endif'

      but the new evaluation rules produce:

        '
        # if defined(_MSC_VER)
        #  define @PREFIX@SIMULATE_ID "MSVC"
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/Compiler/Clang-DetermineCompiler.cmake:4 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
          /* __COMO_VERSION__ = VRR */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__COMO_VERSION__ / 100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__COMO_VERSION__ % 100)'

      the old evaluation rules produce:

        '
          /* __COMO_VERSION__ = VRR */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__COMO_VERSION__ / 100)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__COMO_VERSION__ % 100)'

      but the new evaluation rules produce:

        '
          /* __COMO_VERSION__ = VRR */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__COMO_VERSION__ / 100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__COMO_VERSION__ % 100)'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/Intel-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
          /* __INTEL_COMPILER = VRP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEL_COMPILER/100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEL_COMPILER/10 % 10)
        # if defined(__INTEL_COMPILER_UPDATE)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER_UPDATE)
        # else
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER   % 10)
        # endif
        # if defined(__INTEL_COMPILER_BUILD_DATE)
          /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
        #  define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__INTEL_COMPILER_BUILD_DATE)
        # endif
        # if defined(_MSC_VER)
           /* _MSC_VER = VVRR */
        #  define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        #  define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # endif'

      the old evaluation rules produce:

        '
          /* __INTEL_COMPILER = VRP */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEL_COMPILER/100)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__INTEL_COMPILER/10 % 10)
        # if defined(__INTEL_COMPILER_UPDATE)
        #  define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER_UPDATE)
        # else
        #  define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER   % 10)
        # endif
        # if defined(__INTEL_COMPILER_BUILD_DATE)
          /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
        #  define /home/root/serverCOMPILER_VERSION_TWEAK @MACRO_DEC@(__INTEL_COMPILER_BUILD_DATE)
        # endif
        # if defined(_MSC_VER)
           /* _MSC_VER = VVRR */
        #  define /home/root/serverSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        #  define /home/root/serverSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # endif'

      but the new evaluation rules produce:

        '
          /* __INTEL_COMPILER = VRP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEL_COMPILER/100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEL_COMPILER/10 % 10)
        # if defined(__INTEL_COMPILER_UPDATE)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER_UPDATE)
        # else
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER   % 10)
        # endif
        # if defined(__INTEL_COMPILER_BUILD_DATE)
          /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
        #  define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__INTEL_COMPILER_BUILD_DATE)
        # endif
        # if defined(_MSC_VER)
           /* _MSC_VER = VVRR */
        #  define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        #  define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/Intel-DetermineCompiler.cmake:23 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # if defined(_MSC_VER)
        #  define @PREFIX@SIMULATE_ID \"MSVC\"
        # endif'

      the old evaluation rules produce:

        '
        # if defined(_MSC_VER)
        #  define /home/root/serverSIMULATE_ID "MSVC"
        # endif'

      but the new evaluation rules produce:

        '
        # if defined(_MSC_VER)
        #  define @PREFIX@SIMULATE_ID "MSVC"
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/MSVC-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
          /* _MSC_VER = VVRR */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # if defined(_MSC_FULL_VER)
        #  if _MSC_VER >= 1400
            /* _MSC_FULL_VER = VVRRPPPPP */
        #   define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 100000)
        #  else
            /* _MSC_FULL_VER = VVRRPPPP */
        #   define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 10000)
        #  endif
        # endif
        # if defined(_MSC_BUILD)
        #  define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(_MSC_BUILD)
        # endif'

      the old evaluation rules produce:

        '
          /* _MSC_VER = VVRR */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # if defined(_MSC_FULL_VER)
        #  if _MSC_VER >= 1400
            /* _MSC_FULL_VER = VVRRPPPPP */
        #   define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 100000)
        #  else
            /* _MSC_FULL_VER = VVRRPPPP */
        #   define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 10000)
        #  endif
        # endif
        # if defined(_MSC_BUILD)
        #  define /home/root/serverCOMPILER_VERSION_TWEAK @MACRO_DEC@(_MSC_BUILD)
        # endif'

      but the new evaluation rules produce:

        '
          /* _MSC_VER = VVRR */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
        # if defined(_MSC_FULL_VER)
        #  if _MSC_VER >= 1400
            /* _MSC_FULL_VER = VVRRPPPPP */
        #   define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 100000)
        #  else
            /* _MSC_FULL_VER = VVRRPPPP */
        #   define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 10000)
        #  endif
        # endif
        # if defined(_MSC_BUILD)
        #  define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(_MSC_BUILD)
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/HP-CXX-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
          /* __HP_aCC = VVRRPP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__HP_aCC/10000)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__HP_aCC/100 % 100)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__HP_aCC     % 100)'

      the old evaluation rules produce:

        '
          /* __HP_aCC = VVRRPP */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__HP_aCC/10000)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__HP_aCC/100 % 100)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__HP_aCC     % 100)'

      but the new evaluation rules produce:

        '
          /* __HP_aCC = VVRRPP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__HP_aCC/10000)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__HP_aCC/100 % 100)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__HP_aCC     % 100)'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake:2 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
          /* __IBMCPP__ = VRP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMCPP__/100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMCPP__/10 % 10)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMCPP__    % 10)'

      the old evaluation rules produce:

        '
          /* __IBMCPP__ = VRP */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMCPP__/100)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__IBMCPP__/10 % 10)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__IBMCPP__    % 10)'

      but the new evaluation rules produce:

        '
          /* __IBMCPP__ = VRP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMCPP__/100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMCPP__/10 % 10)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMCPP__    % 10)'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake:4 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/Cray-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_RELEASE)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_RELEASE_MINOR)'

      the old evaluation rules produce:

        '
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(_RELEASE)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(_RELEASE_MINOR)'

      but the new evaluation rules produce:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_RELEASE)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_RELEASE_MINOR)'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/GNU-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
        # if defined(__GNUC_PATCHLEVEL__)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__GNUC_PATCHLEVEL__)
        # endif'

      the old evaluation rules produce:

        '
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
        # if defined(__GNUC_PATCHLEVEL__)
        #  define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__GNUC_PATCHLEVEL__)
        # endif'

      but the new evaluation rules produce:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
        # if defined(__GNUC_PATCHLEVEL__)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__GNUC_PATCHLEVEL__)
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # if __SUNPRO_CC >= 0x5100
           /* __SUNPRO_CC = 0xVRRP */
        #  define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_CC>>12)
        #  define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_CC>>4 & 0xFF)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_CC    & 0xF)
        # else
           /* __SUNPRO_CC = 0xVRP */
        #  define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_CC>>8)
        #  define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_CC>>4 & 0xF)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_CC    & 0xF)
        # endif'

      the old evaluation rules produce:

        '
        # if __SUNPRO_CC >= 0x5100
           /* __SUNPRO_CC = 0xVRRP */
        #  define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_CC>>12)
        #  define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_CC>>4 & 0xFF)
        #  define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_CC    & 0xF)
        # else
           /* __SUNPRO_CC = 0xVRP */
        #  define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_CC>>8)
        #  define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_CC>>4 & 0xF)
        #  define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_CC    & 0xF)
        # endif'

      but the new evaluation rules produce:

        '
        # if __SUNPRO_CC >= 0x5100
           /* __SUNPRO_CC = 0xVRRP */
        #  define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_CC>>12)
        #  define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_CC>>4 & 0xFF)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_CC    & 0xF)
        # else
           /* __SUNPRO_CC = 0xVRP */
        #  define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_CC>>8)
        #  define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_CC>>4 & 0xF)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_CC    & 0xF)
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
           /* __WATCOMC__ = VVRP + 1100 */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@((__WATCOMC__ - 1100) / 100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
        # if (__WATCOMC__ % 10) > 0
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
        # endif'

      the old evaluation rules produce:

        '
           /* __WATCOMC__ = VVRP + 1100 */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@((__WATCOMC__ - 1100) / 100)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
        # if (__WATCOMC__ % 10) > 0
        #  define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
        # endif'

      but the new evaluation rules produce:

        '
           /* __WATCOMC__ = VVRP + 1100 */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@((__WATCOMC__ - 1100) / 100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
        # if (__WATCOMC__ % 10) > 0
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake:2 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
          /* __IBMCPP__ = VRP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMCPP__/100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMCPP__/10 % 10)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMCPP__    % 10)'

      the old evaluation rules produce:

        '
          /* __IBMCPP__ = VRP */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMCPP__/100)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__IBMCPP__/10 % 10)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__IBMCPP__    % 10)'

      but the new evaluation rules produce:

        '
          /* __IBMCPP__ = VRP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMCPP__/100)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMCPP__/10 % 10)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMCPP__    % 10)'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake:4 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/TI-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
          /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000   % 1000)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__        % 1000)'

      the old evaluation rules produce:

        '
          /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000   % 1000)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__        % 1000)'

      but the new evaluation rules produce:

        '
          /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000   % 1000)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__        % 1000)'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/ADSP-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        #if defined(__VISUALDSPVERSION__)
          /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8  & 0xFF)
        #endif'

      the old evaluation rules produce:

        '
        #if defined(__VISUALDSPVERSION__)
          /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
        # define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8  & 0xFF)
        #endif'

      but the new evaluation rules produce:

        '
        #if defined(__VISUALDSPVERSION__)
          /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
        # define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8  & 0xFF)
        #endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /usr/share/cmake-3.2/Modules/Compiler/PGI-DetermineCompiler.cmake:4 (set):
      Policy CMP0053 is not set: Simplify variable reference and escape sequence
      evaluation.  Run "cmake --help-policy CMP0053" for policy details.  Use the
      cmake_policy command to set the policy and suppress this warning.

      For input:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
        # if defined(__PGIC_PATCHLEVEL__)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
        # endif'

      the old evaluation rules produce:

        '
        # define /home/root/serverCOMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
        # define /home/root/serverCOMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
        # if defined(__PGIC_PATCHLEVEL__)
        #  define /home/root/serverCOMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
        # endif'

      but the new evaluation rules produce:

        '
        # define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
        # define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
        # if defined(__PGIC_PATCHLEVEL__)
        #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
        # endif'

      Using the old result for compatibility since the policy is not set.
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:16 (include)
      /usr/share/cmake-3.2/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:108 (compiler_id_detection)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:126 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCompilerId.cmake:39 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
      /usr/share/cmake-3.2/Modules/CMakeDetermineCXXCompiler.cmake:103 (CMAKE_DETERMINE_COMPILER_ID)
      CMakeLists.txt:15 (project)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    -- The CXX compiler identification is unknown
    -- Check for working C compiler: /usr/bin/cc
    -- Check for working C compiler: /usr/bin/cc -- works
    -- Detecting C compiler ABI info
    -- Detecting C compiler ABI info - done
    -- Check for working CXX compiler: /usr/bin/c++
    -- Check for working CXX compiler: /usr/bin/c++ -- works
    -- Detecting CXX compiler ABI info
    -- Detecting CXX compiler ABI info - done
    -- Detected 64-bit platform
    -- UNIX: Using default configuration directory
    -- UNIX: Using default library directory
    -- UNIX: Configuring uninstall target
    -- UNIX: Created uninstall target
    -- UNIX: Detected compiler: /usr/bin/cc
    -- Using mysql-config: /usr/bin/mysql_config
    -- Found MySQL library: /usr/lib/x86_64-linux-gnu/libmysqlclient_r.so
    -- Found MySQL headers: /usr/include/mysql
    -- Found MySQL executable: /usr/bin/mysql
    -- Found git binary : /usr/bin/git

    * TrinityCore revision   : f50c4b71a137 2016-05-10 19:22:22 +0200 (3.3.5 branch)
    * TrinityCore buildtype  : Release

    * Install core to        : /usr/local
    * Install libraries to   : /usr/local/lib
    * Install configs to     : /usr/local/etc

    * Build world/auth       : Yes (default)
    * Build with scripts     : Yes (static)
    * Build map/vmap tools   : No  (default)
    * Build core w/PCH       : Yes (default)
    * Build scripts w/PCH    : Yes (default)
    * Show compile-warnings  : No  (default)
    * Use coreside debug     : No  (default)
    * Show source tree       : Yes (hierarchical)
    * Use GIT revision hash  : Yes (default)

    -- Looking for include file pthread.h
    -- Looking for include file pthread.h - found
    -- Looking for pthread_create
    -- Looking for pthread_create - not found
    -- Looking for pthread_create in pthreads
    -- Looking for pthread_create in pthreads - not found
    -- Looking for pthread_create in pthread
    -- Looking for pthread_create in pthread - found
    -- Found Threads: TRUE
    CMake Error at cmake/macros/FindBoost.cmake:1184 (message):
      Unable to find the requested Boost libraries.

      Boost version: 1.54.0

      Boost include path: /usr/include

      Could not find the following Boost libraries:

              boost_system
              boost_filesystem
              boost_thread
              boost_program_options
              boost_iostreams
              boost_regex

      No Boost libraries were found.  You may need to set BOOST_LIBRARYDIR to the
      directory containing Boost libraries or BOOST_ROOT to the location of
      Boost.
    Call Stack (most recent call first):
      dep/boost/CMakeLists.txt:29 (find_package)


    -- Performing Test boost_filesystem_copy_links_without_NO_SCOPED_ENUM
    -- Performing Test boost_filesystem_copy_links_without_NO_SCOPED_ENUM - Failed
    CMake Error at /usr/share/cmake-3.2/Modules/FindPackageHandleStandardArgs.cmake:138 (message):
      Could NOT find ZLIB (missing: ZLIB_LIBRARY) (found version "1.2.8")
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/FindPackageHandleStandardArgs.cmake:374 (_FPHSA_FAILURE_MESSAGE)
      /usr/share/cmake-3.2/Modules/FindZLIB.cmake:110 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
      dep/zlib/CMakeLists.txt:13 (find_package)


    -- Configuring incomplete, errors occurred!
    See also "/home/TrinityCore/build/CMakeFiles/CMakeOutput.log".
    See also "/home/TrinityCore/build/CMakeFiles/CMakeError.log".
    root@ubuntu2:/home/TrinityCore/build# apt-get install ZLIB-LIBRARY
    Paketlisten werden gelesen... Fertig
    Abhängigkeitsbaum wird aufgebaut.
    Statusinformationen werden eingelesen.... Fertig
    E: Paket ZLIB-LIBRARY kann nicht gefunden werden.
    root@ubuntu2:/home/TrinityCore/build#
    root@ubuntu2:/home/TrinityCore/build# apt-get install zlib
    Paketlisten werden gelesen... Fertig
    Abhängigkeitsbaum wird aufgebaut.
    Statusinformationen werden eingelesen.... Fertig
    E: Paket zlib kann nicht gefunden werden.
    root@ubuntu2:/home/TrinityCore/build#
    root@ubuntu2:/home/TrinityCore/build# apt-get upgrade
    Paketlisten werden gelesen... Fertig
    Abhängigkeitsbaum wird aufgebaut.
    Statusinformationen werden eingelesen.... Fertig
    Paketaktualisierung (Upgrade) wird berechnet... Fertig
    Die folgenden Pakete sind zurückgehalten worden:
      linux-generic-lts-wily linux-headers-generic-lts-wily
      linux-image-generic-lts-wily
    0 aktualisiert, 0 neu installiert, 0 zu entfernen und 3 nicht aktualisiert.
    root@ubuntu2:/home/TrinityCore/build# apt-get install zlib
    Paketlisten werden gelesen... Fertig
    Abhängigkeitsbaum wird aufgebaut.
    Statusinformationen werden eingelesen.... Fertig
    E: Paket zlib kann nicht gefunden werden.
    root@ubuntu2:/home/TrinityCore/build# clear
    root@ubuntu2:/home/TrinityCore/build# cmake ../ -DPREFIX=/home/`echo $USER`/server
    -- Detected 64-bit platform
    -- UNIX: Using default configuration directory
    -- UNIX: Using default library directory
    -- UNIX: Configuring uninstall target
    -- UNIX: Created uninstall target
    -- UNIX: Detected compiler: /usr/bin/cc
    -- Using mysql-config: /usr/bin/mysql_config
    -- Found MySQL library: /usr/lib/x86_64-linux-gnu/libmysqlclient_r.so
    -- Found MySQL headers: /usr/include/mysql
    -- Found MySQL executable: /usr/bin/mysql
    -- Found git binary : /usr/bin/git

    * TrinityCore revision   : f50c4b71a137 2016-05-10 19:22:22 +0200 (3.3.5 branch)
    * TrinityCore buildtype  : Release

    * Install core to        : /usr/local
    * Install libraries to   : /usr/local/lib
    * Install configs to     : /usr/local/etc

    * Build world/auth       : Yes (default)
    * Build with scripts     : Yes (static)
    * Build map/vmap tools   : No  (default)
    * Build core w/PCH       : Yes (default)
    * Build scripts w/PCH    : Yes (default)
    * Show compile-warnings  : No  (default)
    * Use coreside debug     : No  (default)
    * Show source tree       : Yes (hierarchical)
    * Use GIT revision hash  : Yes (default)

    CMake Error at cmake/macros/FindBoost.cmake:1184 (message):
      Unable to find the requested Boost libraries.

      Boost version: 1.54.0

      Boost include path: /usr/include

      Could not find the following Boost libraries:

              boost_system
              boost_filesystem
              boost_thread
              boost_program_options
              boost_iostreams
              boost_regex

      No Boost libraries were found.  You may need to set BOOST_LIBRARYDIR to the
      directory containing Boost libraries or BOOST_ROOT to the location of
      Boost.
    Call Stack (most recent call first):
      dep/boost/CMakeLists.txt:29 (find_package)


    CMake Error at /usr/share/cmake-3.2/Modules/FindPackageHandleStandardArgs.cmake:138 (message):
      Could NOT find ZLIB (missing: ZLIB_LIBRARY) (found version "1.2.8")
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/FindPackageHandleStandardArgs.cmake:374 (_FPHSA_FAILURE_MESSAGE)
      /usr/share/cmake-3.2/Modules/FindZLIB.cmake:110 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
      dep/zlib/CMakeLists.txt:13 (find_package)


    -- Configuring incomplete, errors occurred!
    See also "/home/TrinityCore/build/CMakeFiles/CMakeOutput.log".
    See also "/home/TrinityCore/build/CMakeFiles/CMakeError.log".
    root@ubuntu2:/home/TrinityCore/build# apt-get install openssl
    Paketlisten werden gelesen... Fertig
    Abhängigkeitsbaum wird aufgebaut.
    Statusinformationen werden eingelesen.... Fertig
    openssl ist schon die neueste Version.
    0 aktualisiert, 0 neu installiert, 0 zu entfernen und 3 nicht aktualisiert.
    root@ubuntu2:/home/TrinityCore/build# clear
    root@ubuntu2:/home/TrinityCore/build# cmake ../ -DPREFIX=/home/`echo $USER`/server
    -- Detected 64-bit platform
    -- UNIX: Using default configuration directory
    -- UNIX: Using default library directory
    -- UNIX: Configuring uninstall target
    -- UNIX: Created uninstall target
    -- UNIX: Detected compiler: /usr/bin/cc
    -- Using mysql-config: /usr/bin/mysql_config
    -- Found MySQL library: /usr/lib/x86_64-linux-gnu/libmysqlclient_r.so
    -- Found MySQL headers: /usr/include/mysql
    -- Found MySQL executable: /usr/bin/mysql
    -- Found git binary : /usr/bin/git

    * TrinityCore revision   : f50c4b71a137 2016-05-10 19:22:22 +0200 (3.3.5 branch)
    * TrinityCore buildtype  : Release

    * Install core to        : /usr/local
    * Install libraries to   : /usr/local/lib
    * Install configs to     : /usr/local/etc

    * Build world/auth       : Yes (default)
    * Build with scripts     : Yes (static)
    * Build map/vmap tools   : No  (default)
    * Build core w/PCH       : Yes (default)
    * Build scripts w/PCH    : Yes (default)
    * Show compile-warnings  : No  (default)
    * Use coreside debug     : No  (default)
    * Show source tree       : Yes (hierarchical)
    * Use GIT revision hash  : Yes (default)

    CMake Error at cmake/macros/FindBoost.cmake:1184 (message):
      Unable to find the requested Boost libraries.

      Boost version: 1.54.0

      Boost include path: /usr/include

      Could not find the following Boost libraries:

              boost_system
              boost_filesystem
              boost_thread
              boost_program_options
              boost_iostreams
              boost_regex

      No Boost libraries were found.  You may need to set BOOST_LIBRARYDIR to the
      directory containing Boost libraries or BOOST_ROOT to the location of
      Boost.
    Call Stack (most recent call first):
      dep/boost/CMakeLists.txt:29 (find_package)


    CMake Error at /usr/share/cmake-3.2/Modules/FindPackageHandleStandardArgs.cmake:138 (message):
      Could NOT find ZLIB (missing: ZLIB_LIBRARY) (found version "1.2.8")
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/FindPackageHandleStandardArgs.cmake:374 (_FPHSA_FAILURE_MESSAGE)
      /usr/share/cmake-3.2/Modules/FindZLIB.cmake:110 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
      dep/zlib/CMakeLists.txt:13 (find_package)


    -- Configuring incomplete, errors occurred!
    See also "/home/TrinityCore/build/CMakeFiles/CMakeOutput.log".
    See also "/home/TrinityCore/build/CMakeFiles/CMakeError.log".
    root@ubuntu2:/home/TrinityCore/build#
    root@ubuntu2:/home/TrinityCore/build#
    root@ubuntu2:/home/TrinityCore/build# cmake \
    >     -G "Unix Makefiles" \
    >     -DCMAKE_C_FLAGS:STRING="$HPUXCFLAGS" \
    >     -DCMAKE_LD_FLAGS:STRING="$HPUXLDFLAGS" \
    >     -DCMAKE_CXX_FLAGS:STRING="$HPUXCFLAGS" \
    >     -DZLIB_LIBRARY="/usr/local/lib/hpux32" \
    >     -DZLIB_INCLUDE_DIR="/usr/local/include" \
    >     -Wno-dev \
    >     -DCMAKE_INSTALL_PREFIX=/opt/tigervnc \
    >     -DMAN_INSTALL_DIR=/opt/tigervnc/man \
    >     -DSYSCONF_INSTALL_DIR=/etc/opt/tigervnc \
    >     -DENABLE_PAM:BOOL=OFF \
    >     -DBUILD_JAVA:BOOL=ON \
    >
    CMake Error: The source directory "/home/TrinityCore/build" does not appear to contain CMakeLists.txt.
    Specify --help for usage, or press the help button on the CMake GUI.
    root@ubuntu2:/home/TrinityCore/build#
    root@ubuntu2:/home/TrinityCore/build# cmake ../ -DPREFIX=/home/`echo $USER`/server
    -- Detected 64-bit platform
    -- UNIX: Using default configuration directory
    -- UNIX: Using default library directory
    -- UNIX: Configuring uninstall target
    -- UNIX: Created uninstall target
    -- UNIX: Detected compiler: /usr/bin/cc
    -- Using mysql-config: /usr/bin/mysql_config
    -- Found MySQL library: /usr/lib/x86_64-linux-gnu/libmysqlclient_r.so
    -- Found MySQL headers: /usr/include/mysql
    -- Found MySQL executable: /usr/bin/mysql
    -- Found git binary : /usr/bin/git

    * TrinityCore revision   : f50c4b71a137 2016-05-10 19:22:22 +0200 (3.3.5 branch)
    * TrinityCore buildtype  : Release

    * Install core to        : /usr/local
    * Install libraries to   : /usr/local/lib
    * Install configs to     : /usr/local/etc

    * Build world/auth       : Yes (default)
    * Build with scripts     : Yes (static)
    * Build map/vmap tools   : No  (default)
    * Build core w/PCH       : Yes (default)
    * Build scripts w/PCH    : Yes (default)
    * Show compile-warnings  : No  (default)
    * Use coreside debug     : No  (default)
    * Show source tree       : Yes (hierarchical)
    * Use GIT revision hash  : Yes (default)

    CMake Error at cmake/macros/FindBoost.cmake:1184 (message):
      Unable to find the requested Boost libraries.

      Boost version: 1.54.0

      Boost include path: /usr/include

      Could not find the following Boost libraries:

              boost_system
              boost_filesystem
              boost_thread
              boost_program_options
              boost_iostreams
              boost_regex

      No Boost libraries were found.  You may need to set BOOST_LIBRARYDIR to the
      directory containing Boost libraries or BOOST_ROOT to the location of
      Boost.
    Call Stack (most recent call first):
      dep/boost/CMakeLists.txt:29 (find_package)


    CMake Error at /usr/share/cmake-3.2/Modules/FindPackageHandleStandardArgs.cmake:138 (message):
      Could NOT find ZLIB (missing: ZLIB_LIBRARY) (found version "1.2.8")
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/FindPackageHandleStandardArgs.cmake:374 (_FPHSA_FAILURE_MESSAGE)
      /usr/share/cmake-3.2/Modules/FindZLIB.cmake:110 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
      dep/zlib/CMakeLists.txt:13 (find_package)


    -- Configuring incomplete, errors occurred!
    See also "/home/TrinityCore/build/CMakeFiles/CMakeOutput.log".
    See also "/home/TrinityCore/build/CMakeFiles/CMakeError.log".
    root@ubuntu2:/home/TrinityCore/build# clear
    root@ubuntu2:/home/TrinityCore/build# cmake ../ -DPREFIX=/home/`echo $USER`/server
    -- Detected 64-bit platform
    -- UNIX: Using default configuration directory
    -- UNIX: Using default library directory
    -- UNIX: Configuring uninstall target
    -- UNIX: Created uninstall target
    -- UNIX: Detected compiler: /usr/bin/cc
    -- Using mysql-config: /usr/bin/mysql_config
    -- Found MySQL library: /usr/lib/x86_64-linux-gnu/libmysqlclient_r.so
    -- Found MySQL headers: /usr/include/mysql
    -- Found MySQL executable: /usr/bin/mysql
    -- Found git binary : /usr/bin/git

    * TrinityCore revision   : f50c4b71a137 2016-05-10 19:22:22 +0200 (3.3.5 branch)
    * TrinityCore buildtype  : Release

    * Install core to        : /usr/local
    * Install libraries to   : /usr/local/lib
    * Install configs to     : /usr/local/etc

    * Build world/auth       : Yes (default)
    * Build with scripts     : Yes (static)
    * Build map/vmap tools   : No  (default)
    * Build core w/PCH       : Yes (default)
    * Build scripts w/PCH    : Yes (default)
    * Show compile-warnings  : No  (default)
    * Use coreside debug     : No  (default)
    * Show source tree       : Yes (hierarchical)
    * Use GIT revision hash  : Yes (default)

    CMake Error at cmake/macros/FindBoost.cmake:1184 (message):
      Unable to find the requested Boost libraries.

      Boost version: 1.54.0

      Boost include path: /usr/include

      Could not find the following Boost libraries:

              boost_system
              boost_filesystem
              boost_thread
              boost_program_options
              boost_iostreams
              boost_regex

      No Boost libraries were found.  You may need to set BOOST_LIBRARYDIR to the
      directory containing Boost libraries or BOOST_ROOT to the location of
      Boost.
    Call Stack (most recent call first):
      dep/boost/CMakeLists.txt:29 (find_package)


    CMake Error at /usr/share/cmake-3.2/Modules/FindPackageHandleStandardArgs.cmake:138 (message):
      Could NOT find ZLIB (missing: ZLIB_LIBRARY) (found version "1.2.8")
    Call Stack (most recent call first):
      /usr/share/cmake-3.2/Modules/FindPackageHandleStandardArgs.cmake:374 (_FPHSA_FAILURE_MESSAGE)
      /usr/share/cmake-3.2/Modules/FindZLIB.cmake:110 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
      dep/zlib/CMakeLists.txt:13 (find_package)


    -- Configuring incomplete, errors occurred!
    See also "/home/TrinityCore/build/CMakeFiles/CMakeOutput.log".
    See also "/home/TrinityCore/build/CMakeFiles/CMakeError.log".
    root@ubuntu2:/home/TrinityCore/build#
     

     

     

    Sorry for my bad english.

    I hope so much for your Support, thanks.

×
×
  • Create New...