From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Pormr-0008IZ-VB for garchives@archives.gentoo.org; Mon, 14 Feb 2011 06:19:54 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56D7CE09D9; Mon, 14 Feb 2011 06:19:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2479FE09CF for ; Mon, 14 Feb 2011 06:19:47 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BCDEF1B40B4 for ; Mon, 14 Feb 2011 06:19:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 2798E8006A for ; Mon, 14 Feb 2011 06:19:46 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <663ce763ca460a5644fc03d018ad55de038967ad.vapier@gentoo> Subject: [gentoo-commits] proj/sandbox:master commit in: / X-VCS-Repository: proj/sandbox X-VCS-Files: configure.ac X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 663ce763ca460a5644fc03d018ad55de038967ad Date: Mon, 14 Feb 2011 06:19:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 531ffe1825cac6d4219f8e9597b1b65c commit: 663ce763ca460a5644fc03d018ad55de038967ad Author: Diego Elio Petten=C3=B2 gmail com> AuthorDate: Sun May 17 13:33:33 2009 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Feb 14 06:08:13 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sandbox.git;a= =3Dcommit;h=3D663ce763 use libtool 2.2 macro and avoid dirty hacks Since we're already depending on a not-yet-released automake version, we may as well depend on the already-released libtool 2.2. This way we can avoid the dirty trick of undefining the macros to check for CXX and F77. Signed-off-by: Diego Elio Petten=C3=B2 gmail.com> Signed-off-by: Mike Frysinger gentoo.org> --- configure.ac | 9 +-------- 1 files changed, 1 insertions(+), 8 deletions(-) diff --git a/configure.ac b/configure.ac index e85d152..a0a0a76 100644 --- a/configure.ac +++ b/configure.ac @@ -31,14 +31,7 @@ AC_PROG_EGREP AC_CHECK_PROGS([READELF], [readelf eu-readelf], [false]) AM_MISSING_PROG([AUTOM4TE], [autom4te]) =20 -AC_ENABLE_SHARED -AC_DISABLE_STATIC -dnl Next four lines is a hack to prevent libtool checking for CXX/F77 -m4_undefine([AC_PROG_CXX]) -m4_defun([AC_PROG_CXX],[]) -m4_undefine([AC_PROG_F77]) -m4_defun([AC_PROG_F77],[]) -AC_PROG_LIBTOOL +LT_INIT([disable-static]) =20 AC_PREFIX_DEFAULT([/usr]) =20