[cmake-commits] martink committed CMakeLists.txt 1.12 1.13 config.h.in 1.2 1.3

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Mar 20 08:51:03 EST 2007


Update of /cvsroot/CMake/CMake/Utilities/cmcurl
In directory public:/mounts/ram/cvs-serv12096

Modified Files:
	CMakeLists.txt config.h.in 
Log Message:
BUG: was not setting HAVE_PROCESS_H properly


Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Utilities/cmcurl/CMakeLists.txt,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- CMakeLists.txt	16 Mar 2007 18:28:54 -0000	1.12
+++ CMakeLists.txt	20 Mar 2007 13:51:01 -0000	1.13
@@ -189,6 +189,8 @@
   SET(HAVE_ZLIB_H 0)
 ENDIF(CURL_SPECIAL_LIBZ)
 
+# do we have process.h
+CHECK_INCLUDE_FILE("process.h" HAVE_PROCESS_H)
 
 # If we have features.h, then do the _BSD_SOURCE magic
 CHECK_INCLUDE_FILE("features.h"       HAVE_FEATURES_H)

Index: config.h.in
===================================================================
RCS file: /cvsroot/CMake/CMake/Utilities/cmcurl/config.h.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- config.h.in	15 Mar 2007 19:22:13 -0000	1.2
+++ config.h.in	20 Mar 2007 13:51:01 -0000	1.3
@@ -354,6 +354,9 @@
 /* we have a POSIX-style strerror_r() */
 #cmakedefine HAVE_POSIX_STRERROR_R ${HAVE_POSIX_STRERROR_R}
 
+/* Define to 1 if you have the <process.h> header file. */
+#cmakedefine HAVE_PROCESS_H ${HAVE_PROCESS_H}
+
 /* Define to 1 if you have the <pwd.h> header file. */
 #cmakedefine HAVE_PWD_H ${HAVE_PWD_H}
 



More information about the Cmake-commits mailing list