XMP_Config.cmake references Solaris specific files:
execute_process(COMMAND "uname" OUTPUT_VARIABLE OSNAME) string(TOUPPER "${OSNAME}" OSNAME) if ( ${OSNAME} MATCHES SUNOS) execute_process(COMMAND "uname" "-p" OUTPUT_VARIABLE PLATFORM_SUNOS_ARCH) string(TOUPPER "${PLATFORM_SUNOS_ARCH}" PLATFORM_SUNOS_ARCH) if ( ${PLATFORM_SUNOS_ARCH} MATCHES SPARC) include(${XMP_ROOT}/build/XMP_sunos_sparc.cmake) else() include(${XMP_ROOT}/build/XMP_sunos_intel.cmake) endif() else() include(${XMP_ROOT}/build/XMP_Linux.cmake) endif()
However, these files do not exist in the build directory (or anywhere in the package).
I am trying to get this compiled on Solaris, so this is causing me grief.
Where can I get these files?