[HTCondor-devel] CMake configuration bugs


Date: Tue, 04 Sep 2018 10:43:39 +0200
From: Martin Glatzle <mglatzle@xxxxxxxxxxxxxxxxxxx>
Subject: [HTCondor-devel] CMake configuration bugs
Dear devs,

I've finally succeeded in building HTCondor 8.7.9 on the custom Linux OS of my institute. During the process I've discovered the following problems in CMake files (CMake version 3.11.1):
  • externals/bundles/voms/2.1.0/CMakeLists.txt:136
    ÂÂÂÂÂÂ find_so_name( LIBVOMSAPI_SO ${VOMS_FOUND} )
    should read (IMHO)
    ÂÂÂÂÂÂ if (VOMS_FOUND)
    Â Â ÂÂÂÂÂ find_so_name( LIBVOMSAPI_SO "vomsapi")
    ÂÂÂÂÂÂ endif()
  • externals/bundles/cream/1.15.4/CMakeLists.txt:255
    ÂÂÂÂÂÂ if ( ${SYSTEM_NAME} MATCHES "rhel7" OR ${SYSTEM_NAME} MATCHES "centos7" OR ${SYSTEM_NAME} MATCHES "sl7")
    should read
    ÂÂÂÂÂÂ if ( (${SYSTEM_NAME} MATCHES "rhel7") OR (${SYSTEM_NAME} MATCHES "centos7") OR (${SYSTEM_NAME} MATCHES "sl7"))
    the same applies to the corresponding elseif() statement a couple of lines below.

I'm not very familiar with CMake, so I don't know if these problems are specific to my system but I presume making you aware can't hurt. I chose the mailing list since I could not find an issue tracker for anything but the condor debian packages.

Cheers,
Martin.
[← Prev in Thread] Current Thread [Next in Thread→]