[CMake] Compiling Cmake on Fedora Core 4 (64 bit)

William A. Hoffman billlist at nycap.rr.com
Fri Nov 11 14:06:12 EST 2005


It sounds like you do not have curses.h on your machine.  It may be that
you installed a run time curses library and not the development version.
To compile cmake you need curses.h.

-Bill


At 01:55 PM 11/11/2005, Francesco Montorsi wrote:
>Hi,
>
>William A. Hoffman wrote:
>>What is in this file:
>>/mnt/work/cmake-2.2.2/Bootstrap.cmk/InitialCacheFlags.cmake
>[frm at Linux Bootstrap.cmk]$ cat InitialCacheFlags.cmake
># Generated by /mnt/work/cmake-2.2.2/bootstrap
># Default cmake settings.  These may be overridden any settings below.
>SET (CMAKE_INSTALL_PREFIX "/usr/local" CACHE PATH "Install path prefix, prepended onto install directories." FORCE)
>SET (CMAKE_DOC_DIR "/doc/CMake" CACHE PATH "Install location for documentation (relative to prefix)." FORCE)
>SET (CMAKE_MAN_DIR "/man" CACHE PATH "Install location for man pages (relative to prefix)." FORCE)
>SET (CMAKE_DATA_DIR "/share/CMake" CACHE PATH "Install location for data (relative to prefix)." FORCE)
>SET(UPDATE_TYPE cvs)
>SET(CURSES_INCLUDE_PATH "/usr" CACHE PATH "")
>SET(CURSES_LIBRARY "/usr/lib/libncurses.so" CACHE PATH "")
>
>I tried to change the CURSES_INCLUDE_PATH to "/usr/include".
>
>
>
>>Also this one:
>>/mnt/work/cmake-2.2.2/CMakeCache.txt
>I attach the file to this mail;
>
>anyway doing
>
>[frm at Linux cmake-2.2.2]$ cat CMakeCache.txt | grep CURSES
>CURSES_EXTRA_LIBRARY:FILEPATH=CURSES_EXTRA_LIBRARY-NOTFOUND
>CURSES_INCLUDE_PATH:PATH=CURSES_INCLUDE_PATH-NOTFOUND
>CURSES_LIBRARY:FILEPATH=/usr/lib64/libcurses.so
>//Advanced flag for variable: CURSES_EXTRA_LIBRARY
>CURSES_EXTRA_LIBRARY-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CURSES_INCLUDE_PATH
>CURSES_INCLUDE_PATH-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CURSES_LIBRARY
>CURSES_LIBRARY-ADVANCED:INTERNAL=1
>
>so I can see that cmake cannot find CURSES_INCLUDE_PATH automatically...
>
>The library file is there:
>
>[frm at Linux cmake-2.2.2]$ ll /usr/lib64/libcurses.so
>lrwxrwxrwx  1 root root 17 26 set 23:47 /usr/lib64/libcurses.so -> libncurses.so.5.4
>
>However I cannot find the header file to libcurses; what should I search for ? curses.h is not present in /usr ...
>
>
>Thanks,
>Francesco
>
>
>>
>>-Bill
>>
>>At 02:27 PM 11/10/2005, Francesco Montorsi wrote:
>>
>>>Hi,
>>>
>>> I'm having troubles compiling cmake 2.2.2 on my Fedora Core4 (64bit) with GCC 4.0.
>>>
>>>I unpackaged the source release and then tried:
>>>
>>>
>>>[frm at Linux cmake-2.2.2]$ ./configure
>>>---------------------------------------------
>>>CMake 2.2-2, Copyright (c) 2002 Kitware, Inc., Insight Consortium
>>>C compiler on this system is: cc
>>>C++ compiler on this system is: g++
>>>Makefile processor on this system is: gmake
>>>g++ is GNU compiler
>>>g++ has STL in std:: namespace
>>>g++ has ANSI streams
>>>g++ has streams in std:: namespace
>>>g++ has sstream
>>>g++ has operator!=(string, char*)
>>>g++ has stl iterator_traits
>>>g++ has standard template allocator
>>>g++ has allocator<>::rebind<>
>>>g++ does not have non-standard allocator<>::max_size argument
>>>g++ has stl containers supporting allocator objects
>>>g++ has header cstddef
>>>g++ requires template friends to use <>
>>>g++ supports member templates
>>>g++ has standard template specialization syntax
>>>g++ has argument dependent lookup
>>>g++ has struct stat with st_mtim member
>>>g++ has ANSI for scoping
>>>---------------------------------------------
>>>gmake: `cmake' is up to date.
>>>loading initial cache file /mnt/work/cmake-2.2.2/Bootstrap.cmk/InitialCacheFlags.cmake
>>>-- Cannot determine repository type. Please set UPDATE_TYPE to 'cvs' or 'svn'. CTest update will not work.
>>>-- Using Buildname: Linux-g++
>>>CMake Error: This project requires some variables to be set,
>>>and cmake can not find them.
>>>Please set the following variables:
>>>CURSES_INCLUDE_PATH (ADVANCED)
>>>
>>>-- Configuring done
>>>---------------------------------------------
>>>Error when bootstrapping CMake:
>>>Problem while running initial CMake
>>>---------------------------------------------
>>>[frm at Linux cmake-2.2.2]$
>>>
>>>
>>>I searched the archive and found that I need to use an init file so I did:
>>>
>>>[frm at Linux cmake-2.2.2]$ cat temp
>>>SET(UPDATE_TYPE cvs)
>>>SET(CURSES_INCLUDE_PATH "/usr" CACHE PATH "")
>>>SET(CURSES_LIBRARY "/usr/lib/libncurses.so" CACHE PATH "")
>>>
>>>[frm at Linux cmake-2.2.2]$ ./configure --init=temp
>>>---------------------------------------------
>>>CMake 2.2-2, Copyright (c) 2002 Kitware, Inc., Insight Consortium
>>>C compiler on this system is: cc
>>>C++ compiler on this system is: g++
>>>Makefile processor on this system is: gmake
>>>g++ is GNU compiler
>>>g++ has STL in std:: namespace
>>>g++ has ANSI streams
>>>g++ has streams in std:: namespace
>>>g++ has sstream
>>>g++ has operator!=(string, char*)
>>>g++ has stl iterator_traits
>>>g++ has standard template allocator
>>>g++ has allocator<>::rebind<>
>>>g++ does not have non-standard allocator<>::max_size argument
>>>g++ has stl containers supporting allocator objects
>>>g++ has header cstddef
>>>g++ requires template friends to use <>
>>>g++ supports member templates
>>>g++ has standard template specialization syntax
>>>g++ has argument dependent lookup
>>>g++ has struct stat with st_mtim member
>>>g++ has ANSI for scoping
>>>---------------------------------------------
>>>gmake: `cmake' is up to date.
>>>loading initial cache file /mnt/work/cmake-2.2.2/Bootstrap.cmk/InitialCacheFlags.cmake
>>>-- Cannot determine repository type. Please set UPDATE_TYPE to 'cvs' or 'svn'. CTest update will not work.
>>>-- Using Buildname: Linux-g++
>>>CMake Error: This project requires some variables to be set,
>>>and cmake can not find them.
>>>Please set the following variables:
>>>CURSES_INCLUDE_PATH (ADVANCED)
>>>
>>>-- Configuring done
>>>---------------------------------------------
>>>Error when bootstrapping CMake:
>>>Problem while running initial CMake
>>>---------------------------------------------
>>>[frm at Linux cmake-2.2.2]$
>>>
>>>
>>>So, even with the init file, I get exactly the same error... what can I do ?
>>>
>>>Thanks,
>>>Francesco Montorsi
>>>
>>>
>>>
>>>
>>>_______________________________________________
>>>CMake mailing list
>>>CMake at cmake.org
>>>http://www.cmake.org/mailman/listinfo/cmake
>>
>
>
>
># This is the CMakeCache file.
># For build in directory: /mnt/work/cmake-2.2.2
># 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
>########################
>
>//Build the documentation (Doxygen).
>BUILD_DOCUMENTATION:BOOL=OFF
>
>//Build source documentation using doxygen
>BUILD_DOXYGEN:BOOL=OFF
>
>//Build the testing tree.
>BUILD_TESTING:BOOL=ON
>
>//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 allow.
>CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.2
>
>//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or
>// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.
>//
>CMAKE_BUILD_TYPE:STRING=
>
>//Build wxWidgets dialog for CMake
>CMAKE_BUILD_WX_DIALOG:BOOL=OFF
>
>//C++ compiler
>CMAKE_CXX_COMPILER:STRING=/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:STRING=/usr/bin/cc
>
>//Flags for C compiler.
>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
>
>//Install location for data (relative to prefix).
>CMAKE_DATA_DIR:PATH=/share/CMake
>
>//Install location for documentation (relative to prefix).
>CMAKE_DOC_DIR:PATH=/doc/CMake
>
>//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=
>
>//Value Computed by CMake
>CMAKE_FORM_BINARY_DIR:STATIC=/mnt/work/cmake-2.2.2/Source/CursesDialog/form
>
>//Value Computed by CMake
>CMAKE_FORM_SOURCE_DIR:STATIC=/mnt/work/cmake-2.2.2/Source/CursesDialog/form
>
>//Path to a program.
>CMAKE_Fortran_COMPILER_FULLPATH:FILEPATH=/usr/bin/f95
>
>//Install path prefix, prepended onto install directories.
>CMAKE_INSTALL_PREFIX:PATH=/usr/local
>
>//Path to a program.
>CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake
>
>//Install location for man pages (relative to prefix).
>CMAKE_MAN_DIR:PATH=/man
>
>//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_RANLIB:FILEPATH=/usr/bin/ranlib
>
>//Regenerate YACC and LEXX files
>CMAKE_REGENERATE_YACCLEX:BOOL=OFF
>
>//Should the long tests be run (such as Bootstrap).
>CMAKE_RUN_LONG_TESTS:BOOL=ON
>
>//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=NO
>
>//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=FALSE
>
>//Value Computed by CMake
>CMEXPAT_BINARY_DIR:STATIC=/mnt/work/cmake-2.2.2/Utilities/cmexpat
>
>//Value Computed by CMake
>CMEXPAT_SOURCE_DIR:STATIC=/mnt/work/cmake-2.2.2/Utilities/cmexpat
>
>//Value Computed by CMake
>CMZLIB_BINARY_DIR:STATIC=/mnt/work/cmake-2.2.2/Utilities/cmzlib
>
>//Value Computed by CMake
>CMZLIB_SOURCE_DIR:STATIC=/mnt/work/cmake-2.2.2/Utilities/cmzlib
>
>//Dependencies for the target
>CMakeLib_LIB_DEPENDS:STATIC=cmsys;cmexpat;cmzlib;-ldl;
>
>//Value Computed by CMake
>CMake_BINARY_DIR:STATIC=/mnt/work/cmake-2.2.2
>
>//Value Computed by CMake
>CMake_SOURCE_DIR:STATIC=/mnt/work/cmake-2.2.2
>
>//Path to program used to compress files for transfer to the dart
>// server
>COMPRESSIONCOMMAND:FILEPATH=/usr/bin/gzip
>
>//Path to the coverage program that CTest uses for performing coverage
>// inspection
>COVERAGE_COMMAND:FILEPATH=/usr/bin/gcov
>
>//Dependencies for the target
>CTestLib_LIB_DEPENDS:STATIC=CMakeLib;cmcurl;cmXMLRPC;
>
>//Do libCurl testing
>CURL_TESTING:BOOL=OFF
>
>//Where can the cur_colr library be found
>CURSES_EXTRA_LIBRARY:FILEPATH=CURSES_EXTRA_LIBRARY-NOTFOUND
>
>//What is the path where the file curses.h can be found
>CURSES_INCLUDE_PATH:PATH=CURSES_INCLUDE_PATH-NOTFOUND
>
>//Where can one of the curses or ncurses libraries be found
>CURSES_LIBRARY:FILEPATH=/usr/lib64/libcurses.so
>
>//Path to a program.
>CVSCOMMAND:FILEPATH=/usr/bin/cvs
>
>//Options passed to the cvs update command.
>CVS_UPDATE_OPTIONS:STRING=-d -A -P
>
>//Limit of reported errors, -1 reports all.
>DART_BUILD_ERROR_REPORT_LIMIT:BOOL=OFF
>
>//Limit of reported warnings, -1 reports all.
>DART_BUILD_WARNING_REPORT_LIMIT:BOOL=OFF
>
>//If you have Dart installed, where is it located?
>DART_ROOT:PATH=DART_ROOT-NOTFOUND
>
>//MAximum time allowed before CTest will kill the test.
>DART_TESTING_TIMEOUT:STRING=1500
>
>//Show the actual output of the build, or if off show a . for each
>// 1024 bytes.
>DART_VERBOSE_BUILD:BOOL=OFF
>
>//Should Dart server send email when build errors are found in
>// Continuous builds?
>DELIVER_CONTINUOUS_EMAIL:BOOL=Off
>
>//Where can the form library be found
>FORM_LIBRARY:FILEPATH=/usr/lib64/libform.so
>
>//Path to gunzip executable
>GUNZIPCOMMAND:FILEPATH=/usr/bin/gunzip
>
>//Enable Unicode Support
>HAVE_UNICODE_WCHAR:BOOL=ON
>
>//Path to java command, used by the Dart server to create html.
>//
>JAVACOMMAND:FILEPATH=/usr/bin/java
>
>//Path to a program.
>JAVA_ARCHIVE:FILEPATH=/usr/bin/jar
>
>//Path to a program.
>JAVA_COMPILE:FILEPATH=/usr/bin/javac
>
>//Path to a program.
>JAVA_RUNTIME:FILEPATH=/usr/bin/java
>
>//Where can the jni.h file be found
>JNI_H:FILEPATH=JNI_H-NOTFOUND
>
>//Value Computed by CMake
>LIBCURL_BINARY_DIR:STATIC=/mnt/work/cmake-2.2.2/Utilities/cmcurl
>
>//Value Computed by CMake
>LIBCURL_SOURCE_DIR:STATIC=/mnt/work/cmake-2.2.2/Utilities/cmcurl
>
>//Command used to build entire project from the command line.
>MAKECOMMAND:STRING=/usr/bin/gmake -i
>
>//Path to the memory checking command, used for memory error detection.
>//
>MEMORYCHECK_COMMAND:FILEPATH=/usr/bin/valgrind
>
>//File that contains suppressions for the memory checker
>MEMORYCHECK_SUPPRESSIONS_FILE:FILEPATH=
>
>//What is the path where the file qt.h can be found
>QT_INCLUDE_DIR:PATH=/usr/lib64/qt-3.3/include
>
>//Path to a program.
>QT_MOC_EXECUTABLE:FILEPATH=/usr/bin/moc
>
>//Where can the qassistantclient library be found
>QT_QASSISTANTCLIENT_LIBRARY:FILEPATH=/usr/lib64/qt-3.3/lib/libqassistantclient.a
>
>//Where can one of the qt, qt-334, qt-edu334, qt-mt, qt-mt334,
>// qt-mtnc334, qt-mtedu334, qt-mt230nc or qt-mtnc321 libraries
>// be found
>QT_QT_LIBRARY:FILEPATH=/usr/lib64/qt-3.3/lib/libqt-mt.so
>
>//Path to a program.
>QT_UIC_EXECUTABLE:FILEPATH=/usr/bin/uic
>
>//Where can the urandom file be found
>RANDOM_FILE:FILEPATH=/dev/urandom
>
>//Path to scp command, used by CTest for submitting results to
>// a Dart server
>SCPCOMMAND:FILEPATH=/usr/bin/scp
>
>//Name of the computer/site where compile is being run
>SITE:STRING=Linux
>
>//Path to a program.
>SVNCOMMAND:FILEPATH=/usr/bin/svn
>
>//What is the path where the file X11/X.h can be found
>X11_X11_INCLUDE_PATH:PATH=/usr/X11R6/include
>
>//Where can the X11 library be found
>X11_X11_LIB:FILEPATH=/usr/X11R6/lib64/libX11.so
>
>//Where can the Xext library be found
>X11_Xext_LIB:FILEPATH=/usr/X11R6/lib64/libXext.so
>
>//What is the path where the file X11/Xlib.h can be found
>X11_Xlib_INCLUDE_PATH:PATH=/usr/X11R6/include
>
>//What is the path where the file X11/Xutil.h can be found
>X11_Xutil_INCLUDE_PATH:PATH=/usr/X11R6/include
>
>//Value Computed by CMake
>XMLRPC_BINARY_DIR:STATIC=/mnt/work/cmake-2.2.2/Utilities/cmxmlrpc
>
>//Value Computed by CMake
>XMLRPC_SOURCE_DIR:STATIC=/mnt/work/cmake-2.2.2/Utilities/cmxmlrpc
>
>//Dependencies for the target
>cmForm_LIB_DEPENDS:STATIC=/usr/lib64/libcurses.so;
>
>//Dependencies for the target
>cmXMLRPC_LIB_DEPENDS:STATIC=cmexpat;cmcurl;
>
>//Dependencies for the target
>cmcurl_LIB_DEPENDS:STATIC=dl;cmzlib;
>
>//Dependencies for target
>cmexpat_LIB_DEPENDS:STATIC=
>
>//Value Computed by CMake
>cmsys_BINARY_DIR:STATIC=/mnt/work/cmake-2.2.2/Source/kwsys
>
>//Dependencies for target
>cmsys_LIB_DEPENDS:STATIC=
>
>//Value Computed by CMake
>cmsys_SOURCE_DIR:STATIC=/mnt/work/cmake-2.2.2/Source/kwsys
>
>//Dependencies for target
>cmsys_c_LIB_DEPENDS:STATIC=
>
>//Dependencies for target
>cmzlib_LIB_DEPENDS:STATIC=
>
>
>########################
># INTERNAL cache entries
>########################
>
>//Test 
>ATTR_UNUSED_VAR:INTERNAL=1
>//Advanced flag for variable: BUILD_DOCUMENTATION
>BUILD_DOCUMENTATION-ADVANCED:INTERNAL=1
>//Advanced flag for variable: BUILD_DOXYGEN
>BUILD_DOXYGEN-ADVANCED:INTERNAL=1
>//Result of TRY_COMPILE
>CMAKE_ANSI_FOR_SCOPE:INTERNAL=TRUE
>//Have include iostream
>CMAKE_ANSI_STREAM_HEADERS:INTERNAL=1
>//Advanced flag for variable: CMAKE_AR
>CMAKE_AR-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_BACKWARDS_COMPATIBILITY
>CMAKE_BACKWARDS_COMPATIBILITY-ADVANCED:INTERNAL=1
>//Advanced flag 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=/usr/bin/gmake
>//Advanced flag for variable: CMAKE_BUILD_WX_DIALOG
>CMAKE_BUILD_WX_DIALOG-ADVANCED:INTERNAL=1
>//This is the directory where this CMakeCahe.txt was created
>CMAKE_CACHEFILE_DIR:INTERNAL=/mnt/work/cmake-2.2.2
>//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=2
>//Major version of cmake used to create the current loaded cache
>//
>CMAKE_CACHE_RELEASE_VERSION:INTERNAL=patch 2
>//Path to CMake executable.
>CMAKE_COMMAND:INTERNAL=/mnt/work/cmake-2.2.2/Bootstrap.cmk/cmake
>//Advanced flag for variable: CMAKE_CTEST_COMMAND
>CMAKE_CTEST_COMMAND-ADVANCED:INTERNAL=1
>//Path to ctest program executable.
>CMAKE_CTEST_COMMAND:INTERNAL=/bin/ctest
>//Advanced flag for variable: CMAKE_CXX_COMPILER
>CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
>CMAKE_CXX_COMPILER_WORKS:INTERNAL=1
>//Advanced flag for variable: CMAKE_CXX_FLAGS
>CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_CXX_FLAGS_DEBUG
>CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_CXX_FLAGS_MINSIZEREL
>CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_CXX_FLAGS_RELEASE
>CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
>CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_C_COMPILER
>CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
>CMAKE_C_COMPILER_WORKS:INTERNAL=1
>//Advanced flag for variable: CMAKE_C_FLAGS
>CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_C_FLAGS_DEBUG
>CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_C_FLAGS_MINSIZEREL
>CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_C_FLAGS_RELEASE
>CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
>CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_DATA_DIR
>CMAKE_DATA_DIR-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_DOC_DIR
>CMAKE_DOC_DIR-ADVANCED:INTERNAL=1
>//Path to cache edit program executable.
>CMAKE_EDIT_COMMAND:INTERNAL=/bin/ccmake
>//Advanced flag for variable: CMAKE_EXE_LINKER_FLAGS
>CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
>CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
>//
>CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
>CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
>//
>CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_Fortran_COMPILER_FULLPATH
>CMAKE_Fortran_COMPILER_FULLPATH-ADVANCED:INTERNAL=1
>//Name of generator.
>CMAKE_GENERATOR:INTERNAL=Unix Makefiles
>//Have include sstream
>CMAKE_HAS_ANSI_STRING_STREAM:INTERNAL=1
>//Have function connect
>CMAKE_HAVE_CONNECT:INTERNAL=1
>//Have function gethostbyname
>CMAKE_HAVE_GETHOSTBYNAME:INTERNAL=1
>//Have library pthreads
>CMAKE_HAVE_PTHREADS_CREATE:INTERNAL=
>//Have library pthread
>CMAKE_HAVE_PTHREAD_CREATE:INTERNAL=1
>//Have include pthread.h
>CMAKE_HAVE_PTHREAD_H:INTERNAL=1
>//Have function remove
>CMAKE_HAVE_REMOVE:INTERNAL=1
>//Have function shmat
>CMAKE_HAVE_SHMAT:INTERNAL=1
>//Start directory with the top level CMakeLists.txt file for this
>// project
>CMAKE_HOME_DIRECTORY:INTERNAL=/mnt/work/cmake-2.2.2
>//Have library ICE
>CMAKE_LIB_ICE_HAS_ICECONNECTIONNUMBER:INTERNAL=1
>//Advanced flag for variable: CMAKE_MAKE_PROGRAM
>CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_MAN_DIR
>CMAKE_MAN_DIR-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_MODULE_LINKER_FLAGS
>CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
>CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
>//
>CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
>//
>CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
>//
>CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
>//Does the compiler support ansi for scope.
>CMAKE_NO_ANSI_FOR_SCOPE:INTERNAL=0
>//Advanced flag for variable: CMAKE_NO_ANSI_STREAM_HEADERS
>CMAKE_NO_ANSI_STREAM_HEADERS-ADVANCED:INTERNAL=1
>//Does the compiler support headers like iostream.
>CMAKE_NO_ANSI_STREAM_HEADERS:INTERNAL=0
>//Does the compiler support std::.
>CMAKE_NO_STD_NAMESPACE:INTERNAL=0
>//number of local generators
>CMAKE_NUMBER_OF_LOCAL_GENERATORS:INTERNAL=13
>//Advanced flag for variable: CMAKE_RANLIB
>CMAKE_RANLIB-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_REGENERATE_YACCLEX
>CMAKE_REGENERATE_YACCLEX-ADVANCED:INTERNAL=1
>//Path to CMake installation.
>CMAKE_ROOT:INTERNAL=/mnt/work/cmake-2.2.2
>//Advanced flag for variable: CMAKE_RUN_LONG_TESTS
>CMAKE_RUN_LONG_TESTS-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_SHARED_LINKER_FLAGS
>CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
>CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
>//
>CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
>//
>CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
>//
>CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
>//Result of TRY_RUN
>CMAKE_SIZEOF_VOID_P:INTERNAL=8
>//Advanced flag for variable: CMAKE_SKIP_RPATH
>CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
>//Result of TRY_COMPILE
>CMAKE_STD_NAMESPACE:INTERNAL=TRUE
>//uname command
>CMAKE_UNAME:INTERNAL=/bin/uname
>//Advanced flag for variable: CMAKE_USE_RELATIVE_PATHS
>CMAKE_USE_RELATIVE_PATHS-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CMAKE_VERBOSE_MAKEFILE
>CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
>//Result of TRY_RUN
>CMEXPAT_BIGENDIAN:INTERNAL=0
>//Path to a library
>CMakeLib_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source
>//Whether a library is static, shared or module.
>CMakeLib_LIBRARY_TYPE:INTERNAL=STATIC
>//Advanced flag for variable: COMPRESSIONCOMMAND
>COMPRESSIONCOMMAND-ADVANCED:INTERNAL=1
>//Advanced flag for variable: COVERAGE_COMMAND
>COVERAGE_COMMAND-ADVANCED:INTERNAL=1
>//Path to a library
>CTestLib_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source
>//Whether a library is static, shared or module.
>CTestLib_LIBRARY_TYPE:INTERNAL=STATIC
>//Advanced flag for variable: CURL_TESTING
>CURL_TESTING-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CURSES_EXTRA_LIBRARY
>CURSES_EXTRA_LIBRARY-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CURSES_INCLUDE_PATH
>CURSES_INCLUDE_PATH-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CURSES_LIBRARY
>CURSES_LIBRARY-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CVSCOMMAND
>CVSCOMMAND-ADVANCED:INTERNAL=1
>//Advanced flag for variable: CVS_UPDATE_OPTIONS
>CVS_UPDATE_OPTIONS-ADVANCED:INTERNAL=1
>//Advanced flag for variable: DART_BUILD_ERROR_REPORT_LIMIT
>DART_BUILD_ERROR_REPORT_LIMIT-ADVANCED:INTERNAL=1
>//Advanced flag for variable: DART_BUILD_WARNING_REPORT_LIMIT
>DART_BUILD_WARNING_REPORT_LIMIT-ADVANCED:INTERNAL=1
>//Advanced flag for variable: DART_ROOT
>DART_ROOT-ADVANCED:INTERNAL=1
>//Advanced flag for variable: DART_TESTING_TIMEOUT
>DART_TESTING_TIMEOUT-ADVANCED:INTERNAL=1
>//Advanced flag for variable: DART_VERBOSE_BUILD
>DART_VERBOSE_BUILD-ADVANCED:INTERNAL=1
>//Advanced flag for variable: DELIVER_CONTINUOUS_EMAIL
>DELIVER_CONTINUOUS_EMAIL-ADVANCED:INTERNAL=1
>//Path to an executable
>DumpDocumentation_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source
>//Where to put the executables for CMake
>EXECUTABLE_OUTPUT_PATH:INTERNAL=/mnt/work/cmake-2.2.2/bin
>//Advanced flag for variable: FORM_LIBRARY
>FORM_LIBRARY-ADVANCED:INTERNAL=1
>//Advanced flag for variable: GUNZIPCOMMAND
>GUNZIPCOMMAND-ADVANCED:INTERNAL=1
>//Have include HAVE_ALLOCA_H
>HAVE_ALLOCA_H:INTERNAL=1
>//Have include HAVE_ARPA_INET_H
>HAVE_ARPA_INET_H:INTERNAL=1
>//Have symbol asprintf
>HAVE_ASPRINTF:INTERNAL=
>//Have include HAVE_ASSERT_H
>HAVE_ASSERT_H:INTERNAL=1
>//Have symbol closesocket
>HAVE_CLOSESOCKET:INTERNAL=
>//Result of TRY_COMPILE
>HAVE_CMAKE_SIZEOF_VOID_P:INTERNAL=TRUE
>//Result of TRY_COMPILE
>HAVE_CMEXPAT_BIGENDIAN:INTERNAL=TRUE
>//Have include HAVE_DLFCN_H
>HAVE_DLFCN_H:INTERNAL=1
>//Have library dl
>HAVE_DLOPEN:INTERNAL=1
>//Have include HAVE_FCNTL_H
>HAVE_FCNTL_H:INTERNAL=1
>//Have include features.h
>HAVE_FEATURES_H:INTERNAL=1
>//Curl test 
>HAVE_FILE_OFFSET_BITS:INTERNAL=1
>//Curl test 
>HAVE_FIONBIO:INTERNAL=
>//Curl test 
>HAVE_GETADDRINFO:INTERNAL=1
>//Have symbol geteuid
>HAVE_GETEUID:INTERNAL=1
>//Have symbol gethostbyaddr
>HAVE_GETHOSTBYADDR:INTERNAL=1
>//Have symbol gethostbyaddr_r
>HAVE_GETHOSTBYADDR_R:INTERNAL=1
>//Curl test 
>HAVE_GETHOSTBYADDR_R_5_REENTRANT:INTERNAL=
>//Curl test 
>HAVE_GETHOSTBYADDR_R_7:INTERNAL=
>//Curl test 
>HAVE_GETHOSTBYADDR_R_7_REENTRANT:INTERNAL=
>//Curl test 
>HAVE_GETHOSTBYADDR_R_8:INTERNAL=1
>//Curl test 
>HAVE_GETHOSTBYADDR_R_8_REENTRANT:INTERNAL=1
>//Have symbol gethostbyname
>HAVE_GETHOSTBYNAME:INTERNAL=1
>//Have symbol gethostbyname_r
>HAVE_GETHOSTBYNAME_R:INTERNAL=1
>//Curl test 
>HAVE_GETHOSTBYNAME_R_3:INTERNAL=
>//Curl test 
>HAVE_GETHOSTBYNAME_R_3_REENTRANT:INTERNAL=
>//Curl test 
>HAVE_GETHOSTBYNAME_R_5:INTERNAL=
>//Curl test 
>HAVE_GETHOSTBYNAME_R_5_REENTRANT:INTERNAL=
>//Curl test 
>HAVE_GETHOSTBYNAME_R_6:INTERNAL=1
>//Curl test 
>HAVE_GETHOSTBYNAME_R_6_REENTRANT:INTERNAL=1
>//Have symbol getpass_r
>HAVE_GETPASS_R:INTERNAL=
>//Have symbol getpwuid
>HAVE_GETPWUID:INTERNAL=1
>//Have symbol gettimeofday
>HAVE_GETTIMEOFDAY:INTERNAL=1
>//Curl test 
>HAVE_GLIBC_STRERROR_R:INTERNAL=1
>//Result of TRY_COMPILE
>HAVE_GLIBC_STRERROR_R_COMPILE:INTERNAL=TRUE
>//Have symbol gmtime_r
>HAVE_GMTIME_R:INTERNAL=1
>//Have symbol inet_addr
>HAVE_INET_ADDR:INTERNAL=1
>//Have symbol inet_ntoa
>HAVE_INET_NTOA:INTERNAL=1
>//Have symbol inet_ntoa_r
>HAVE_INET_NTOA_R:INTERNAL=
>//Curl test 
>HAVE_INET_NTOA_R_DECL:INTERNAL=
>//Curl test 
>HAVE_INET_NTOA_R_DECL_REENTRANT:INTERNAL=
>//Have symbol inet_pton
>HAVE_INET_PTON:INTERNAL=1
>//Have include HAVE_INTTYPES_H
>HAVE_INTTYPES_H:INTERNAL=1
>//Curl test 
>HAVE_IN_ADDR_T:INTERNAL=1
>//Curl test 
>HAVE_IOCTLSOCKET:INTERNAL=
>//Curl test 
>HAVE_IOCTLSOCKET_CASE:INTERNAL=
>//Have includes HAVE_IO_H
>HAVE_IO_H:INTERNAL=
>//Result of TRY_COMPILE
>HAVE_KWSYS_SIZEOF_CHAR:INTERNAL=TRUE
>//Result of TRY_COMPILE
>HAVE_KWSYS_SIZEOF_INT:INTERNAL=TRUE
>//Result of TRY_COMPILE
>HAVE_KWSYS_SIZEOF_LONG:INTERNAL=TRUE
>//Result of TRY_COMPILE
>HAVE_KWSYS_SIZEOF_LONG_LONG:INTERNAL=TRUE
>//Result of TRY_COMPILE
>HAVE_KWSYS_SIZEOF_SHORT:INTERNAL=TRUE
>//Result of TRY_COMPILE
>HAVE_KWSYS_SIZEOF___INT64:INTERNAL=FALSE
>//Have library dl;
>HAVE_LIBDL:INTERNAL=1
>//Have library socket;dl
>HAVE_LIBSOCKET:INTERNAL=
>//Have library ucb;dl
>HAVE_LIBUCB:INTERNAL=
>//Have library winmm;dl
>HAVE_LIBWINMM:INTERNAL=
>//Have library ws2_32;dl
>HAVE_LIBWS2_32:INTERNAL=
>//Have include HAVE_LIMITS_H
>HAVE_LIMITS_H:INTERNAL=1
>//Have symbol localtime_r
>HAVE_LOCALTIME_R:INTERNAL=1
>//Curl test 
>HAVE_LONG_LONG_CONSTANT:INTERNAL=1
>//Result of TRY_COMPILE
>HAVE_LONG_LONG_CONSTANT_COMPILE:INTERNAL=TRUE
>//Have include HAVE_MALLOC_H
>HAVE_MALLOC_H:INTERNAL=1
>//Have include HAVE_MEMORY_H
>HAVE_MEMORY_H:INTERNAL=1
>//Have include HAVE_NETDB_H
>HAVE_NETDB_H:INTERNAL=1
>//Have include HAVE_NETINET_IF_ETHER_H
>HAVE_NETINET_IF_ETHER_H:INTERNAL=1
>//Have include HAVE_NETINET_IN_H
>HAVE_NETINET_IN_H:INTERNAL=1
>//Have include HAVE_NETINET_TCP_H
>HAVE_NETINET_TCP_H:INTERNAL=1
>//Have include HAVE_NET_IF_H
>HAVE_NET_IF_H:INTERNAL=1
>//Curl test 
>HAVE_O_NONBLOCK:INTERNAL=1
>//Curl test 
>HAVE_O_NONBLOCKHAVE_GETHOSTBYADDR_R_5:INTERNAL=
>//Have symbol perror
>HAVE_PERROR:INTERNAL=1
>//Have symbol poll
>HAVE_POLL:INTERNAL=1
>//Curl test 
>HAVE_POSIX_STRERROR_R:INTERNAL=
>//Result of TRY_COMPILE
>HAVE_POSIX_STRERROR_R_COMPILE:INTERNAL=TRUE
>//Have include HAVE_PWD_H
>HAVE_PWD_H:INTERNAL=1
>//Have symbol select
>HAVE_SELECT:INTERNAL=1
>//Have symbol setgroups
>HAVE_SETGROUPS:INTERNAL=
>//Have include HAVE_SETJMP_H
>HAVE_SETJMP_H:INTERNAL=1
>//Have symbol setvbuf
>HAVE_SETVBUF:INTERNAL=1
>//Have include HAVE_SGTTY_H
>HAVE_SGTTY_H:INTERNAL=1
>//Have symbol sigaction
>HAVE_SIGACTION:INTERNAL=1
>//Have symbol siginterrupt
>HAVE_SIGINTERRUPT:INTERNAL=1
>//Have symbol signal
>HAVE_SIGNAL_FUNC:INTERNAL=1
>//Have include HAVE_SIGNAL_H
>HAVE_SIGNAL_H:INTERNAL=1
>//Have symbol SIGALRM
>HAVE_SIGNAL_MACRO:INTERNAL=1
>//Have symbol sigsetjmp
>HAVE_SIGSETJMP:INTERNAL=1
>//Result of TRY_COMPILE
>HAVE_SIZEOF_CURL_OFF_T:INTERNAL=TRUE
>//Result of TRY_COMPILE
>HAVE_SIZEOF_LONG_DOUBLE:INTERNAL=TRUE
>//Result of TRY_COMPILE
>HAVE_SIZEOF_LONG_LONG:INTERNAL=TRUE
>//Result of TRY_COMPILE
>HAVE_SIZEOF_SIZE_T:INTERNAL=TRUE
>//Result of TRY_COMPILE
>HAVE_SIZEOF_SSIZE_T:INTERNAL=TRUE
>//Have symbol socket
>HAVE_SOCKET:INTERNAL=1
>//Have includes HAVE_SOCKIO_H
>HAVE_SOCKIO_H:INTERNAL=
>//Curl test 
>HAVE_SOCKLEN_T:INTERNAL=1
>//Curl test 
>HAVE_SO_NONBLOCK:INTERNAL=
>//Have include HAVE_STDARG_H
>HAVE_STDARG_H:INTERNAL=1
>//Have include HAVE_STDDEF_H
>HAVE_STDDEF_H:INTERNAL=1
>//Have include HAVE_STDINT_H
>HAVE_STDINT_H:INTERNAL=1
>//Have include HAVE_STDIO_H
>HAVE_STDIO_H:INTERNAL=1
>//Have include HAVE_STDLIB_H
>HAVE_STDLIB_H:INTERNAL=1
>//Have symbol strcasecmp
>HAVE_STRCASECMP:INTERNAL=1
>//Have symbol strcmpi
>HAVE_STRCMPI:INTERNAL=
>//Have symbol strdup
>HAVE_STRDUP:INTERNAL=1
>//Have symbol strerror_r
>HAVE_STRERROR_R:INTERNAL=1
>//Have symbol strftime
>HAVE_STRFTIME:INTERNAL=1
>//Have symbol stricmp
>HAVE_STRICMP:INTERNAL=
>//Have include HAVE_STRINGS_H
>HAVE_STRINGS_H:INTERNAL=1
>//Have include HAVE_STRING_H
>HAVE_STRING_H:INTERNAL=1
>//Have symbol strlcat
>HAVE_STRLCAT:INTERNAL=
>//Have symbol strncmpi
>HAVE_STRNCMPI:INTERNAL=
>//Have symbol strstr
>HAVE_STRSTR:INTERNAL=1
>//Have symbol strtok_r
>HAVE_STRTOK_R:INTERNAL=1
>//Have symbol strtoll
>HAVE_STRTOLL:INTERNAL=1
>//Have includes HAVE_SYS_FILIO_H
>HAVE_SYS_FILIO_H:INTERNAL=
>//Have include HAVE_SYS_IOCTL_H
>HAVE_SYS_IOCTL_H:INTERNAL=1
>//Have include HAVE_SYS_PARAM_H
>HAVE_SYS_PARAM_H:INTERNAL=1
>//Have include HAVE_SYS_POLL_H
>HAVE_SYS_POLL_H:INTERNAL=1
>//Have include HAVE_SYS_SELECT_H
>HAVE_SYS_SELECT_H:INTERNAL=1
>//Have include HAVE_SYS_SOCKET_H
>HAVE_SYS_SOCKET_H:INTERNAL=1
>//Have includes HAVE_SYS_SOCKIO_H
>HAVE_SYS_SOCKIO_H:INTERNAL=
>//Have include HAVE_SYS_STAT_H
>HAVE_SYS_STAT_H:INTERNAL=1
>//Have include HAVE_SYS_TIME_H
>HAVE_SYS_TIME_H:INTERNAL=1
>//Have include HAVE_SYS_TYPES_H
>HAVE_SYS_TYPES_H:INTERNAL=1
>//Have includes HAVE_SYS_UTIME_H
>HAVE_SYS_UTIME_H:INTERNAL=
>//Have include HAVE_SYS_UTSNAME_H
>HAVE_SYS_UTSNAME_H:INTERNAL=1
>//Have symbol tcgetattr
>HAVE_TCGETATTR:INTERNAL=1
>//Have symbol tcsetattr
>HAVE_TCSETATTR:INTERNAL=1
>//Have include HAVE_TERMIOS_H
>HAVE_TERMIOS_H:INTERNAL=1
>//Have include HAVE_TERMIO_H
>HAVE_TERMIO_H:INTERNAL=1
>//Have include HAVE_TIME_H
>HAVE_TIME_H:INTERNAL=1
>//Have symbol uname
>HAVE_UNAME:INTERNAL=1
>//Advanced flag for variable: HAVE_UNICODE_WCHAR
>HAVE_UNICODE_WCHAR-ADVANCED:INTERNAL=1
>//Have include HAVE_UNISTD_H
>HAVE_UNISTD_H:INTERNAL=1
>//Have symbol utime
>HAVE_UTIME:INTERNAL=1
>//Have include HAVE_UTIME_H
>HAVE_UTIME_H:INTERNAL=1
>//Have include HAVE_WCHAR_H
>HAVE_WCHAR_H:INTERNAL=1
>//Have includes HAVE_WINSOCK_H
>HAVE_WINSOCK_H:INTERNAL=
>//Have includes HAVE_X509_H
>HAVE_X509_H:INTERNAL=
>//Have symbol _strtoi64
>HAVE__STRTOI64:INTERNAL=
>//Advanced flag for variable: JAVACOMMAND
>JAVACOMMAND-ADVANCED:INTERNAL=1
>//Advanced flag for variable: JAVA_ARCHIVE
>JAVA_ARCHIVE-ADVANCED:INTERNAL=1
>//Advanced flag for variable: JAVA_COMPILE
>JAVA_COMPILE-ADVANCED:INTERNAL=1
>//Advanced flag for variable: JAVA_RUNTIME
>JAVA_RUNTIME-ADVANCED:INTERNAL=1
>//Whether char is signed.
>KWSYS_CHAR_IS_SIGNED:INTERNAL=1
>//Result of TRY_COMPILE
>KWSYS_CHAR_IS_SIGNED_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_CXX_HAS_ARGUMENT_DEPENDENT_LOOKUP_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_CXX_HAS_CSTDDEF_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_CXX_HAS_FULL_SPECIALIZATION_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_CXX_HAS_MEMBER_TEMPLATES_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_CXX_HAS_NULL_TEMPLATE_ARGS_COMPILED:INTERNAL=FALSE
>//Result of TRY_COMPILE
>KWSYS_IOS_HAVE_STD_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_IOS_USE_ANSI_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_IOS_USE_SSTREAM_COMPILED:INTERNAL=TRUE
>//Result of TRY_RUN
>KWSYS_SIZEOF_CHAR:INTERNAL=1
>//Result of TRY_RUN
>KWSYS_SIZEOF_INT:INTERNAL=4
>//Result of TRY_RUN
>KWSYS_SIZEOF_LONG:INTERNAL=8
>//Result of TRY_RUN
>KWSYS_SIZEOF_LONG_LONG:INTERNAL=8
>//Result of TRY_RUN
>KWSYS_SIZEOF_SHORT:INTERNAL=2
>//Result of TRY_COMPILE
>KWSYS_STAT_HAS_ST_MTIM_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_STL_HAS_ALLOCATOR_MAX_SIZE_ARGUMENT_COMPILED:INTERNAL=FALSE
>//Result of TRY_COMPILE
>KWSYS_STL_HAS_ALLOCATOR_OBJECTS_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_STL_HAS_ALLOCATOR_REBIND_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_STL_HAS_ALLOCATOR_TEMPLATE_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_STL_HAS_ITERATOR_TRAITS_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_STL_HAVE_STD_COMPILED:INTERNAL=TRUE
>//Result of TRY_COMPILE
>KWSYS_STL_STRING_HAVE_NEQ_CHAR_COMPILED:INTERNAL=TRUE
>//Path to an executable
>LIBCURL_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Utilities/cmcurl
>//Where to put the libraries for CMake
>LIBRARY_OUTPUT_PATH:INTERNAL=
>//Advanced flag for variable: MAKECOMMAND
>MAKECOMMAND-ADVANCED:INTERNAL=1
>//Advanced flag for variable: MEMORYCHECK_COMMAND
>MEMORYCHECK_COMMAND-ADVANCED:INTERNAL=1
>//Advanced flag for variable: MEMORYCHECK_SUPPRESSIONS_FILE
>MEMORYCHECK_SUPPRESSIONS_FILE-ADVANCED:INTERNAL=1
>//Have library c
>NOT_NEED_LIBNSL:INTERNAL=1
>//Advanced flag for variable: QT_INCLUDE_DIR
>QT_INCLUDE_DIR-ADVANCED:INTERNAL=1
>//Advanced flag for variable: QT_MOC_EXECUTABLE
>QT_MOC_EXECUTABLE-ADVANCED:INTERNAL=1
>//Advanced flag for variable: QT_QASSISTANTCLIENT_LIBRARY
>QT_QASSISTANTCLIENT_LIBRARY-ADVANCED:INTERNAL=1
>//Advanced flag for variable: QT_QT_LIBRARY
>QT_QT_LIBRARY-ADVANCED:INTERNAL=1
>//Advanced flag for variable: QT_UIC_EXECUTABLE
>QT_UIC_EXECUTABLE-ADVANCED:INTERNAL=1
>//Advanced flag for variable: RANDOM_FILE
>RANDOM_FILE-ADVANCED:INTERNAL=1
>//Curl test 
>RETSIGTYPE_TEST:INTERNAL=1
>//Advanced flag for variable: SCPCOMMAND
>SCPCOMMAND-ADVANCED:INTERNAL=1
>//Advanced flag for variable: SITE
>SITE-ADVANCED:INTERNAL=1
>//Result of TRY_RUN
>SIZEOF_CURL_OFF_T:INTERNAL=8
>//Result of TRY_RUN
>SIZEOF_LONG_DOUBLE:INTERNAL=16
>//Result of TRY_RUN
>SIZEOF_LONG_LONG:INTERNAL=8
>//Result of TRY_RUN
>SIZEOF_SIZE_T:INTERNAL=8
>//Result of TRY_RUN
>SIZEOF_SSIZE_T:INTERNAL=8
>//Curl test 
>STDC_HEADERS:INTERNAL=1
>//Advanced flag for variable: SVNCOMMAND
>SVNCOMMAND-ADVANCED:INTERNAL=1
>//Curl test 
>TIME_WITH_SYS_TIME:INTERNAL=1
>//Test 
>VA_LIST_ISNOT_ARRAY_DEFINE:INTERNAL=
>//Have library /usr/X11R6/lib64/libX11.so;/usr/X11R6/lib64/libXext.so
>//
>X11_LIB_X11_SOLO:INTERNAL=1
>//Advanced flag for variable: X11_X11_INCLUDE_PATH
>X11_X11_INCLUDE_PATH-ADVANCED:INTERNAL=1
>//Advanced flag for variable: X11_X11_LIB
>X11_X11_LIB-ADVANCED:INTERNAL=1
>//Advanced flag for variable: X11_Xext_LIB
>X11_Xext_LIB-ADVANCED:INTERNAL=1
>//Advanced flag for variable: X11_Xlib_INCLUDE_PATH
>X11_Xlib_INCLUDE_PATH-ADVANCED:INTERNAL=1
>//Advanced flag for variable: X11_Xutil_INCLUDE_PATH
>X11_Xutil_INCLUDE_PATH-ADVANCED:INTERNAL=1
>//Path to an executable
>ccmake_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source
>//Path to a library
>cmForm_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source/CursesDialog/form
>//Whether a library is static, shared or module.
>cmForm_LIBRARY_TYPE:INTERNAL=STATIC
>//Path to a library
>cmXMLRPC_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Utilities/cmxmlrpc
>//Whether a library is static, shared or module.
>cmXMLRPC_LIBRARY_TYPE:INTERNAL=STATIC
>//Path to an executable
>cmake_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source
>//Path to a library
>cmcurl_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Utilities/cmcurl
>//Whether a library is static, shared or module.
>cmcurl_LIBRARY_TYPE:INTERNAL=STATIC
>//Path to a library
>cmexpat_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Utilities/cmexpat
>//Whether a library is static, shared or module.
>cmexpat_LIBRARY_TYPE:INTERNAL=STATIC
>//Path to a library
>cmsys_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source/kwsys
>//Whether a library is static, shared or module.
>cmsys_LIBRARY_TYPE:INTERNAL=STATIC
>//Path to a library
>cmsys_c_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source/kwsys
>//Whether a library is static, shared or module.
>cmsys_c_LIBRARY_TYPE:INTERNAL=STATIC
>//Path to a library
>cmzlib_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Utilities/cmzlib
>//Whether a library is static, shared or module.
>cmzlib_LIBRARY_TYPE:INTERNAL=STATIC
>//Path to an executable
>ctest_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source
>//Path to an executable
>testCommandLineArguments_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source/kwsys
>//Path to an executable
>testHashSTL_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source/kwsys
>//Path to an executable
>testIOS_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source/kwsys
>//Path to an executable
>testProcess_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source/kwsys
>//Path to an executable
>testSystemTools_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Source/kwsys
>//Path to an executable
>xrtest_CMAKE_PATH:INTERNAL=/mnt/work/cmake-2.2.2/Utilities/cmxmlrpc



More information about the CMake mailing list