[PATCH] D54650: Swap order of discovering of -ltinfo and -lterminfo

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Nov 18 04:16:30 PST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL347156: Swap order of discovering of -ltinfo and -lterminfo (authored by kamil, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D54650?vs=174445&id=174533#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D54650

Files:
  llvm/trunk/cmake/config-ix.cmake


Index: llvm/trunk/cmake/config-ix.cmake
===================================================================
--- llvm/trunk/cmake/config-ix.cmake
+++ llvm/trunk/cmake/config-ix.cmake
@@ -128,7 +128,7 @@
     endif()
     if(LLVM_ENABLE_TERMINFO)
       set(HAVE_TERMINFO 0)
-      foreach(library tinfo terminfo curses ncurses ncursesw)
+      foreach(library terminfo tinfo curses ncurses ncursesw)
         string(TOUPPER ${library} library_suffix)
         check_library_exists(${library} setupterm "" HAVE_TERMINFO_${library_suffix})
         if(HAVE_TERMINFO_${library_suffix})


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D54650.174533.patch
Type: text/x-patch
Size: 582 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181118/5c09d24f/attachment.bin>


More information about the llvm-commits mailing list