emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r107929: * configure.in (LIBS_TERM


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r107929: * configure.in (LIBS_TERMCAP): Fix netbsd logic, broken 2012-03-04.
Date: Tue, 01 May 2012 20:11:24 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107929
committer: Glenn Morris <address@hidden>
branch nick: emacs-24
timestamp: Tue 2012-05-01 20:11:24 -0400
message:
  * configure.in (LIBS_TERMCAP): Fix netbsd logic, broken 2012-03-04.
  
  Ref http://debbugs.gnu.org/6190
modified:
  ChangeLog
  configure.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2012-04-18 02:14:53 +0000
+++ b/ChangeLog 2012-05-02 00:11:24 +0000
@@ -1,3 +1,7 @@
+2012-05-02  Glenn Morris  <address@hidden>
+
+       * configure.in (LIBS_TERMCAP): Fix netbsd logic, broken 2012-03-04.
+
 2012-04-18  Ludovic Courtès  <address@hidden>
 
        * configure.in: Don't use the -R option (Bug#11251).

=== modified file 'configure.in'
--- a/configure.in      2012-04-27 16:33:57 +0000
+++ b/configure.in      2012-05-02 00:11:24 +0000
@@ -2878,9 +2878,8 @@
     ;;
 
   netbsd)
-    if test $ac_cv_search_tputs = -lterminfo; then
+    if [ "x$LIBS_TERMCAP" = "x-lterminfo" ]; then
       TERMINFO=yes
-      LIBS_TERMCAP="-lterminfo"
     else
       LIBS_TERMCAP="-ltermcap"
     fi


reply via email to

[Prev in Thread] Current Thread [Next in Thread]