From: <de...@us...> - 2004-02-22 19:09:41
|
Update of /cvsroot/rtk/rtk/src/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30040 Modified Files: CMakeLists.txt Log Message: Fixed problem with unistd.h on Windows. However this should be just specified for some specific compilers... Index: CMakeLists.txt =================================================================== RCS file: /cvsroot/rtk/rtk/src/core/CMakeLists.txt,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** CMakeLists.txt 21 Feb 2004 23:49:04 -0000 1.5 --- CMakeLists.txt 22 Feb 2004 18:56:47 -0000 1.6 *************** *** 26,35 **** # Bug reports: bu...@rt... # Suggestions: rf...@rt... #################################################################### SET(RTK_CORE_SFILES ! SList.cpp Dict.cpp ! error.cpp String.cpp ! debug.cpp ) --- 26,39 ---- # Bug reports: bu...@rt... # Suggestions: rf...@rt... + # + # Authors (chronological order): + # Dejan Lekic , de...@nu... + # Contributors + # N/A #################################################################### SET(RTK_CORE_SFILES ! SList.cpp Dict.cpp debug.cpp ! error.cpp String.cpp Array.cpp ) *************** *** 55,63 **** ENDIF (RTK_OPT_UNICODE) ! INCLUDE(${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake) ! CHECK_INCLUDE_FILE("unistd.h" HAVE_UNISTD_H) ! IF (HAVE_UNISTD_H) ! ADD_DEFINITIONS(-DHAVE_UNISTD_H) ! ENDIF (HAVE_UNISTD_H) ## --- 59,69 ---- ENDIF (RTK_OPT_UNICODE) ! IF (NOT WIN32) ! INCLUDE(${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake) ! CHECK_INCLUDE_FILE("unistd.h" HAVE_UNISTD_H) ! IF (HAVE_UNISTD_H) ! ADD_DEFINITIONS(-DHAVE_UNISTD_H) ! ENDIF (HAVE_UNISTD_H) ! ENDIF (NOT WIN32) ## |