From kde-bugs-dist Tue Nov 30 17:33:01 1999 From: owner () bugs ! kde ! org (Stephan Kulow) Date: Tue, 30 Nov 1999 17:33:01 +0000 To: kde-bugs-dist Subject: Bug#2018: marked as done (pb check for readline in kdesupport) X-MARC-Message: https://marc.info/?l=kde-bugs-dist&m=94398320620316 Your message dated Tue, 30 Nov 1999 17:21:59 +0000 with message-id <384407B7.CF4EF3B3@kde.org> and subject line applied has caused the attached bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I'm talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Stephan Kulow (administrator, KDE bugs database) Received: (at submit) by bugs.kde.org; 22 Sep 1999 20:38:46 +0000 From j.saito@wanadoo.fr Wed Sep 22 22:38:46 1999 Received: from smtp-out-003.wanadoo.fr ([193.252.19.78]:10464 "EHLO wanadoo.fr") by max.tat.physik.uni-tuebingen.de with ESMTP id ; Wed, 22 Sep 1999 22:38:39 +0200 Received: from Toulouse-13-176.abo.wanadoo.fr [164.138.141.176] by wanadoo.fr for Paris Wed, 22 Sep 1999 22:36:03 +0200 (MET DST) Date: Wed, 22 Sep 1999 22:37:19 +0200 (CEST) From: Junichi Saito Sender: junichi@saito To: KDE bug tracker Subject: pb check for readline in kdesupport Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Return-Path: X-Orcpt: rfc822;submit@bugs.kde.org Package: kdesupport Version: 2.0pre Check for readline fails because of some undefined references (such as 'tgetnum' from libtermcap) found in libreadline. The following change fixes it. --- kdesupport/configure.in.orig Tue Aug 10 14:15:19 1999 +++ kdesupport/configure.in Wed Sep 22 17:09:47 1999 @@ -355,11 +355,11 @@ # check for libreadline and libtermcap if test "x$readline_ok" = "xyes" then - AC_CHECK_LIB(readline,readline,readline_ok=yes,readline_ok=no) + AC_CHECK_LIB(readline,readline,readline_ok=yes,readline_ok=no, -ltermcap) if test "x$readline_ok" = "xyes" then ISQLXX_DIR="isql++" - LIBREADLINE="-lreadline" + LIBREADLINE="-lreadline -ltermcap" fi fi The version of libreadline installed is 4.0. I compiled it myself. It's possible so the way I comiled it wasn't conform to a standard. j.