From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20600 invoked by alias); 6 May 2003 17:31:15 -0000 Mailing-List: contact sid-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: sid-owner@sources.redhat.com Received: (qmail 20584 invoked from network); 6 May 2003 17:31:13 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 6 May 2003 17:31:13 -0000 Received: from int-mx2.corp.redhat.com (nat-pool-rdu-dmz.redhat.com [172.16.52.200] (may be forged)) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id h46HVDH15963 for ; Tue, 6 May 2003 13:31:13 -0400 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx2.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h46HVCT03215 for ; Tue, 6 May 2003 13:31:12 -0400 Received: from dhcp-172-16-25-239.sfbay.redhat.com (dhcp-172-16-25-239.sfbay.redhat.com [172.16.25.239]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id h46HVCM13815 for ; Tue, 6 May 2003 10:31:12 -0700 Subject: Patch: configury tweak From: Anthony Green To: sid@sources.redhat.com Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 May 2003 17:31:00 -0000 Message-Id: <1052242321.1473.9.camel@escape> Mime-Version: 1.0 X-SW-Source: 2003-q2/txt/msg00020.txt.bz2 I just committed the following patch. Approved by fche off list. Thanks, AG 2003-05-06 Anthony Green * configure.in: The "clog" symbol is found in both libm and old versions of libstdc++. We want the one in libstdc++. Reorder the library tests to place -lm after -lstdc++. * configure: Rebuilt. Index: sid/component/configure.in =================================================================== RCS file: /cvs/cvsfiles/devo/sid/component/configure.in,v retrieving revision 1.43.2.2 diff -c -r1.43.2.2 configure.in *** configure.in 2002/12/11 22:02:32 1.43.2.2 --- configure.in 2003/05/06 17:08:06 *************** *** 18,25 **** AC_HEADER_STDC AC_HEADER_TIME - AC_CHECK_LIB(stdc++, main) AC_CHECK_LIB(m, main) dnl For lcd component only. dnl Check if we can link curses programs without libtermcap. --- 18,25 ---- AC_HEADER_STDC AC_HEADER_TIME AC_CHECK_LIB(m, main) + AC_CHECK_LIB(stdc++, main) dnl For lcd component only. dnl Check if we can link curses programs without libtermcap.