[MacPorts] #28383: Cmake won't build
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: macports-tickets@… Type: defect | Status: new Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: Cmake --------------------------------------+------------------------------------- I tried the sudo port install cmake commands in Terminal and the process exited with a message about Error Status 1 encountered during processing. Is there any workaround? -- Ticket URL: <https://trac.macports.org/ticket/28383> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: new Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Changes (by jmr@…): * owner: macports-tickets@… => css@… * port: Cmake => cmake Comment: Please remember to cc the maintainer. -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:1> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Changes (by css@…): * status: new => assigned Comment: I'm unable to reproduce this on Snow Leopard ... can someone else confirm this error on Leopard? The first error seems to be: {{{ /opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_devel_cmake/work/cmake-2.8.3/Source/cmStandardIncludes.h:98:25: error: strstream.h: No such file or directory }}} This seems to indicate that your developer tools might not be fully installed or something conflicted with CMake's configuration phase. What's your output for the command `locate strstream`? I'm curious of the cmake configure phase output to the console. CMake is behaving as if it's searching for a file that isn't normally part of the Mac OS X C++ headers. -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:2> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Comment(by schecterhead88@…): I tried that command and this is what resulted. {{{ new-host:~ JH$ locate strstream /Developer/SDKs/MacOSX10.4u.sdk/usr/include/c++/4.0.0/backward/strstream /Developer/SDKs/MacOSX10.4u.sdk/usr/include/gcc/darwin/3.3/c++/backward/strstream /Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.0.0/backward/strstream /Developer/SDKs/MacOSX10.5.sdk/usr/include/gcc/darwin/3.3/c++/backward/strstream /opt/local/include/boost/tr1/tr1/strstream /opt/local/include/boost/tr1/tr1/sun/strstream.SUNWCCh /opt/local/var/macports/software/boost/1.45.0_2/opt/local/include/boost/tr1/tr1/strstream /opt/local/var/macports/software/boost/1.45.0_2/opt/local/include/boost/tr1/tr1/sun/strstream.SUNWCCh /usr/include/c++/4.0.0/backward/strstream }}} -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:3> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Comment(by css@…): Can you attach the output from the configure phase and the resulting `CMakeCache.txt`? {{{ sudo port clean cmake sudo port configure cmake &> configure.txt }}} `CMakeCache.txt` is in the working directly. It looks like something is picking up an configuration error during that phase. -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:4> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Comment(by schecterhead88@…): Here is that text file {{{ # This is the CMakeCache file. # For build in directory: /Users/JH # It was generated by CMake: /Applications/CMake 2.8-3.app/Contents/bin/cmake # You can edit this file to change values found and used by cmake. # If you do not want to change any of the values, simply exit the editor. # If you do want to change a value, simply edit, save, and exit the editor. # The syntax for the file is as follows: # KEY:TYPE=VALUE # KEY is the name of a variable in the cache. # TYPE is a hint to GUI's for the type of VALUE, DO NOT EDIT TYPE!. # VALUE is the current value for the KEY. ######################## # EXTERNAL cache entries ######################## //Path to a program. CMAKE_AR:FILEPATH=/usr/bin/ar //For backwards compatibility, what version of CMake commands and // syntax should this version of CMake try to support. CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.4 //Choose the type of build, options are: None(CMAKE_CXX_FLAGS or // CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. CMAKE_BUILD_TYPE:STRING=Debug //Semicolon separated list of supported configuration types, only // supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything // else will be ignored. CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo //C++ compiler CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/g++ //Flags used by the compiler during all build types. CMAKE_CXX_FLAGS:STRING= //Flags used by the compiler during debug builds. CMAKE_CXX_FLAGS_DEBUG:STRING=-g //Flags used by the compiler during release minsize builds. CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG //Flags used by the compiler during release builds (/MD /Ob1 /Oi // /Ot /Oy /Gs will produce slightly less optimized but smaller // files). CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG //Flags used by the compiler during Release with Debug Info builds. CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g //C compiler CMAKE_C_COMPILER:FILEPATH=/usr/bin/gcc //Flags used by the compiler during all build types. CMAKE_C_FLAGS:STRING= //Flags used by the compiler during debug builds. CMAKE_C_FLAGS_DEBUG:STRING=-g //Flags used by the compiler during release minsize builds. CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG //Flags used by the compiler during release builds (/MD /Ob1 /Oi // /Ot /Oy /Gs will produce slightly less optimized but smaller // files). CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG //Flags used by the compiler during Release with Debug Info builds. CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g //Flags used by the linker. CMAKE_EXE_LINKER_FLAGS:STRING= //Flags used by the linker during debug builds. CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= //Flags used by the linker during release minsize builds. CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= //Flags used by the linker during release builds. CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= //Flags used by the linker during Release with Debug Info builds. CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= //Path to a program. CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool //Install path prefix, prepended onto install directories. CMAKE_INSTALL_PREFIX:PATH=/usr/local //Path to a program. CMAKE_LINKER:FILEPATH=/usr/bin/ld //make program CMAKE_MAKE_PROGRAM:FILEPATH=/Applications/CMake 2.8-3.app/Contents/bin/cmakexbuild //Flags used by the linker during the creation of modules. CMAKE_MODULE_LINKER_FLAGS:STRING= //Flags used by the linker during debug builds. CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= //Flags used by the linker during release minsize builds. CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= //Flags used by the linker during release builds. CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= //Flags used by the linker during Release with Debug Info builds. CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= //Path to a program. CMAKE_NM:FILEPATH=/usr/bin/nm //Path to a program. CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND //Path to a program. CMAKE_OBJDUMP:FILEPATH=CMAKE_OBJDUMP-NOTFOUND //Build architectures for OSX CMAKE_OSX_ARCHITECTURES:STRING= //Minimum OS X version to target for deployment (at runtime); newer // APIs weak linked. Set to empty string for default value. CMAKE_OSX_DEPLOYMENT_TARGET:STRING= //The product will be built against the headers and libraries located // inside the indicated SDK. CMAKE_OSX_SYSROOT:PATH=/Developer/SDKs/MacOSX10.5.sdk //Value Computed by CMake CMAKE_PROJECT_NAME:STATIC=SocketW //Path to a program. CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib //Flags used by the linker during the creation of dll's. CMAKE_SHARED_LINKER_FLAGS:STRING= //Flags used by the linker during debug builds. CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= //Flags used by the linker during release minsize builds. CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= //Flags used by the linker during release builds. CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= //Flags used by the linker during Release with Debug Info builds. CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= //If set, runtime paths are not added when using shared libraries. CMAKE_SKIP_RPATH:BOOL=OFF //Path to a program. CMAKE_STRIP:FILEPATH=/usr/bin/strip //If true, cmake will use relative paths in makefiles and projects. CMAKE_USE_RELATIVE_PATHS:BOOL=OFF //If this value is on, makefiles will be generated without the // .SILENT directive, and all commands will be echoed to the console // during the make. This is useful for debugging only. With Visual // Studio IDE projects all commands are done without /nologo. CMAKE_VERBOSE_MAKEFILE:BOOL=OFF //Single output directory for building all executables. EXECUTABLE_OUTPUT_PATH:PATH= //Single output directory for building all libraries. LIBRARY_OUTPUT_PATH:PATH= //Value Computed by CMake SocketW_BINARY_DIR:STATIC=/Users/JH //Value Computed by CMake SocketW_SOURCE_DIR:STATIC=/Users/JH/Documents/Rigs of Rods/dependencies/src/SocketW-patched //Dependencies for target mysocketw_LIB_DEPENDS:STATIC= ######################## # INTERNAL cache entries ######################## //ADVANCED property for variable: CMAKE_AR CMAKE_AR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_BUILD_TOOL CMAKE_BUILD_TOOL-ADVANCED:INTERNAL=1 //What is the target build tool cmake is generating for. CMAKE_BUILD_TOOL:INTERNAL=/Applications/CMake 2.8-3.app/Contents/bin/cmakexbuild //This is the directory where this CMakeCache.txt was created CMAKE_CACHEFILE_DIR:INTERNAL=/Users/JH //Major version of cmake used to create the current loaded cache CMAKE_CACHE_MAJOR_VERSION:INTERNAL=2 //Minor version of cmake used to create the current loaded cache CMAKE_CACHE_MINOR_VERSION:INTERNAL=8 //Patch version of cmake used to create the current loaded cache CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 //Path to CMake executable. CMAKE_COMMAND:INTERNAL=/Applications/CMake 2.8-3.app/Contents/bin/cmake //Path to cpack program executable. CMAKE_CPACK_COMMAND:INTERNAL=/Applications/CMake 2.8-3.app/Contents/bin/cpack //Path to ctest program executable. CMAKE_CTEST_COMMAND:INTERNAL=/Applications/CMake 2.8-3.app/Contents/bin/ctest //ADVANCED property for variable: CMAKE_CXX_COMPILER CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 CMAKE_CXX_COMPILER_WORKS:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_COMPILER CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 CMAKE_C_COMPILER_WORKS:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_FLAGS CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //Result of TRY_COMPILE CMAKE_DETERMINE_CXX_ABI_COMPILED:INTERNAL=TRUE //Result of TRY_COMPILE CMAKE_DETERMINE_C_ABI_COMPILED:INTERNAL=TRUE //Path to cache edit program executable. CMAKE_EDIT_COMMAND:INTERNAL=/Applications/CMake 2.8-3.app/Contents/bin/ccmake //Executable file format CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //Name of generator. CMAKE_GENERATOR:INTERNAL=Xcode //Start directory with the top level CMakeLists.txt file for this // project CMAKE_HOME_DIRECTORY:INTERNAL=/Users/JH/Documents/Rigs of Rods/dependencies/src/SocketW-patched //ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_LINKER CMAKE_LINKER-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MAKE_PROGRAM CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_NM CMAKE_NM-ADVANCED:INTERNAL=1 //number of local generators CMAKE_NUMBER_OF_LOCAL_GENERATORS:INTERNAL=1 //ADVANCED property for variable: CMAKE_OBJCOPY CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_OBJDUMP CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_RANLIB CMAKE_RANLIB-ADVANCED:INTERNAL=1 //Path to CMake installation. CMAKE_ROOT:INTERNAL=/Applications/CMake 2.8-3.app/Contents/share/cmake-2.8 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_SKIP_RPATH CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_STRIP CMAKE_STRIP-ADVANCED:INTERNAL=1 //Suppress Warnings that are meant for the author of the CMakeLists.txt // files. CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=FALSE //uname command CMAKE_UNAME:INTERNAL=/usr/bin/uname //ADVANCED property for variable: CMAKE_USE_RELATIVE_PATHS CMAKE_USE_RELATIVE_PATHS-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 }}} -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:5> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Comment(by css@…): The particular configure setting I need to see isn't in the cache, it appears. I think it's part of the CMake bootstrap. Your system is somehow not setting `CMAKE_NO_ANSI_STRING_STREAM`. Please attach the output from: {{{ sudo port -v configure cmake }}} -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:6> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Comment(by schecterhead88@…): Here's what popped up in Terminal when I executed that command: {{{ Last login: Wed Feb 16 17:04:17 on ttys000 new-host:~ JH$ sudo port -v configure cmake Password: ---> Computing dependencies for cmake. new-host:~ JH$ }}} I'll attach the CMakeCache.txt to the first post. -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:7> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Comment(by css@…): You'll need to clean the port first, then configure. -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:8> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Comment(by schecterhead88@…): Alright, I cleaned and then configured again. It worked that time. I'll update the text file accordingly. -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:9> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Comment(by css@…): I no longer need to see the cache file, as it doesn't contain the output I need. The console output from the configure phase should indicate why cmake is being configured incorrectly on your system. {{{ sudo port clean cmake sudo port -v configure cmake &> cmake_configure.txt }}} -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:10> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Comment(by schecterhead88@…): I'll attach the configure.txt file that was generated. Let me know if you need anything else. -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:11> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Comment(by css@…): I'm not seeing any major differences in the output from configure. Could you attach your `cmConfigure.h` from `${worksrcpath}\Source`? Go ahead and update the port too, just to check whether 2.8.4 makes any difference. -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:12> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Comment(by suv-sf@…): Replying to [comment:2 css@…]:
I'm unable to reproduce this on Snow Leopard ... can someone else confirm this error on Leopard?
cmake 2.8.3_1 and the recent upgrade to cmake 2.8.4_0 installed without errors for me on Leopard (i386). {{{ $ uname -a Darwin LeWitt.local 9.8.0 Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_I386 i386 }}} -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:13> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build --------------------------------------+------------------------------------- Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: assigned Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Keywords: | Port: cmake --------------------------------------+------------------------------------- Comment(by schecterhead88@…): 2.8.4 works. Thanks. -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:14> MacPorts <http://www.macports.org/> Ports system for Mac OS
#28383: Cmake won't build ---------------------------------------+------------------------------------ Reporter: schecterhead88@… | Owner: css@… Type: defect | Status: closed Priority: Normal | Milestone: Component: ports | Version: 1.9.2 Resolution: fixed | Keywords: Port: cmake | ---------------------------------------+------------------------------------ Changes (by css@…): * status: assigned => closed * resolution: => fixed Comment: Replying to [comment:14 schecterhead88@…]:
2.8.4 works. Thanks.
Great! Thanks for confirming! -- Ticket URL: <https://trac.macports.org/ticket/28383#comment:15> MacPorts <http://www.macports.org/> Ports system for Mac OS
participants (1)
-
MacPorts