[Cmake-commits] CMake branch, next, updated. v3.1.0-rc2-695-g9c77dc2

Brad King brad.king at kitware.com
Mon Nov 17 10:35:05 EST 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  9c77dc227a7b1505dada93ad9fba777fabc08f8f (commit)
       via  d931ba60216dfcb5f94ffc3b8e6d977b1e4dc22f (commit)
      from  7c767fe68dc8270f2e84f59071fc6562734198c7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9c77dc227a7b1505dada93ad9fba777fabc08f8f
commit 9c77dc227a7b1505dada93ad9fba777fabc08f8f
Merge: 7c767fe d931ba6
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Nov 17 10:35:04 2014 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Nov 17 10:35:04 2014 -0500

    Merge topic 'FindCurses-no-cur_colr' into next
    
    d931ba60 FindCurses: Drop search for deprecated HP-UX cur_colr library


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d931ba60216dfcb5f94ffc3b8e6d977b1e4dc22f
commit d931ba60216dfcb5f94ffc3b8e6d977b1e4dc22f
Author:     Ådne Hovda <ahovda at openit.com>
AuthorDate: Mon Nov 17 12:11:55 2014 +0100
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Nov 17 10:32:52 2014 -0500

    FindCurses: Drop search for deprecated HP-UX cur_colr library
    
    Since commit b22e2de8 (HPUX support, 2001-11-05) the FindCurses
    module searches for a 'cur_colr' library, but that is not needed
    anymore.  AFAICT, the cur_colr package was introduced in HP-UX 10.00 and
    marked as deprecated in 10.30 by X/OPEN curses (which replaced the even
    older HP curses in 10.10).
    
    In order to use cur_colr after 10.10 you should use the
    /usr/include/curses_colr when compiling.  Since FindCurses doesn't even
    search that path the headers cannot possibly match out of the box.  If
    users want cur_colr they can set the cache entries by hand.
    
    There is no 64-bit version of cur_colr in 11.11PA and it will be gone
    completely in 11.31PA:
    
      http://h21007.www2.hp.com/portal/download/files/unprot/STK/HPUX_STK/impacts/i964.html
    
    It is simplest to drop cur_colr support from FindCurses since it was
    only partially implemented anyway.

diff --git a/Modules/FindCurses.cmake b/Modules/FindCurses.cmake
index 0184c39..c628ab0 100644
--- a/Modules/FindCurses.cmake
+++ b/Modules/FindCurses.cmake
@@ -178,11 +178,6 @@ if(NOT DEFINED CURSES_HAVE_CURSES_H)
   endif()
 endif()
 
-if (NOT CURSES_TINFO_HAS_CBREAK)
-  find_library(CURSES_EXTRA_LIBRARY cur_colr HINTS "${_cursesLibDir}")
-  find_library(CURSES_EXTRA_LIBRARY cur_colr )
-endif()
-
 find_library(CURSES_FORM_LIBRARY form HINTS "${_cursesLibDir}")
 find_library(CURSES_FORM_LIBRARY form )
 

-----------------------------------------------------------------------

Summary of changes:
 Modules/FindCurses.cmake |    5 -----
 1 file changed, 5 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list