I have a newly-configured F17 system, and the 0.4 RC1 tarball.
Completely fresh system as of 30 minutes ago.
Following the README instructions, I installed the minimal set of required
packages:
yum install gcc cmake libuuid-devel
when I am in the build dir and I do this step :
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
I was surprised to see this :
CMake Error: CMake was unable to find a build program corresponding to "Unix
Makefiles". CMAKE_MAKE_PROGRAM is not set. You probably need to select a
different build tool.
CMake Error: Error required internal CMake variable not set, cmake may be not
be built correctly.
Missing variable is:
CMAKE_C_COMPILER_ENV_VAR
CMake Error: Error required internal CMake variable not set, cmake may be not
be built correctly.
Missing variable is:
CMAKE_C_COMPILER
CMake Error: Could not find cmake module
file:/home/mick/qpid-proton-0.4/build/CMakeFiles/CMakeCCompiler.cmake
CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
-- Configuring incomplete, errors occurred!
To fix this I needed to manually :
yum install make
Does this seem like a bug in the cmake dependencies?
Or should we just go ahead and add "make" to the list of required packages ?
i.e.
yum install gcc make cmake libuuid-devel
?