From patchwork Mon Nov 15 16:22:15 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 71238 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id AA2BEB710D for ; Tue, 16 Nov 2010 03:23:30 +1100 (EST) Received: (qmail 12013 invoked by alias); 15 Nov 2010 16:23:15 -0000 Received: (qmail 11981 invoked by uid 22791); 15 Nov 2010 16:23:11 -0000 X-SWARE-Spam-Status: No, hits=-6.1 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_HI, SPF_HELO_PASS, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 15 Nov 2010 16:22:19 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id oAFGMHTH018125 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 15 Nov 2010 11:22:17 -0500 Received: from hase (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id oAFGMF3S024828; Mon, 15 Nov 2010 11:22:16 -0500 From: Andreas Schwab To: Paolo Bonzini Cc: Andreas =?utf-8?Q?Simb=C3=BCrger?= , gcc-patches@gcc.gnu.org, gcc-graphite@googlegroups.com Subject: Re: [PATCH] Support official CLooG.org versions. References: <4CCC738A.405@gnu.org> <1289505716-9480-1-git-send-email-simbuerg@googlemail.com> <4CE15710.5000205@gnu.org> X-Yow: I decided to be JOHN TRAVOLTA instead!! Date: Mon, 15 Nov 2010 17:22:15 +0100 In-Reply-To: <4CE15710.5000205@gnu.org> (Paolo Bonzini's message of "Mon, 15 Nov 2010 16:51:44 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Paolo Bonzini writes: > On 11/15/2010 04:38 PM, Andreas Schwab wrote: >>> > + AC_ARG_WITH(cloog_include, >> The option is called --with-cloog-include, not --with-cloog_include. >> >>> > + AC_ARG_WITH(cloog_lib, >> Likewise. > > I noticed the same, but since it doesn't matter (either works) and > other AC_ARG_WITH invocations are using underscores, 2010-11-15 Andreas Schwab * configure.ac: Fix spelling in option names. * configure: Regenerated. config/: * cloog.m4 (CLOOG_INIT_FLAGS): Fix spelling in option names. Index: configure.ac =================================================================== --- configure.ac (revision 166757) +++ configure.ac (working copy) @@ -1273,9 +1273,9 @@ AC_ARG_WITH(mpc, [ --with-mpc=PATH specify prefix directory for installed MPC package. Equivalent to --with-mpc-include=PATH/include plus --with-mpc-lib=PATH/lib]) -AC_ARG_WITH(mpc_include, [ --with-mpc-include=PATH +AC_ARG_WITH(mpc-include, [ --with-mpc-include=PATH specify directory for installed MPC include files]) -AC_ARG_WITH(mpc_lib, [ --with-mpc-lib=PATH specify directory for the installed MPC library]) +AC_ARG_WITH(mpc-lib, [ --with-mpc-lib=PATH specify directory for the installed MPC library]) if test "x$with_mpc" != x; then gmplibs="-L$with_mpc/lib $gmplibs" @@ -1306,9 +1306,9 @@ AC_ARG_WITH(mpfr, [ --with-mpfr=PATH specify prefix directory for installed MPFR package. Equivalent to --with-mpfr-include=PATH/include plus --with-mpfr-lib=PATH/lib]) -AC_ARG_WITH(mpfr_include, [ --with-mpfr-include=PATH +AC_ARG_WITH(mpfr-include, [ --with-mpfr-include=PATH specify directory for installed MPFR include files]) -AC_ARG_WITH(mpfr_lib, [ --with-mpfr-lib=PATH specify directory for the installed MPFR library]) +AC_ARG_WITH(mpfr-lib, [ --with-mpfr-lib=PATH specify directory for the installed MPFR library]) if test "x$with_mpfr" != x; then gmplibs="-L$with_mpfr/lib $gmplibs" @@ -1339,8 +1339,8 @@ AC_ARG_WITH(gmp, [ --with-gmp=PATH specify prefix directory for the installed GMP package. Equivalent to --with-gmp-include=PATH/include plus --with-gmp-lib=PATH/lib]) -AC_ARG_WITH(gmp_include, [ --with-gmp-include=PATH specify directory for installed GMP include files]) -AC_ARG_WITH(gmp_lib, [ --with-gmp-lib=PATH specify directory for the installed GMP library]) +AC_ARG_WITH(gmp-include, [ --with-gmp-include=PATH specify directory for installed GMP include files]) +AC_ARG_WITH(gmp-lib, [ --with-gmp-lib=PATH specify directory for the installed GMP library]) if test "x$with_gmp" != x; then @@ -1539,8 +1539,8 @@ AC_ARG_WITH(ppl, [ --with-ppl=PATH Specify prefix directory for the installed PPL package Equivalent to --with-ppl-include=PATH/include plus --with-ppl-lib=PATH/lib]) -AC_ARG_WITH(ppl_include, [ --with-ppl-include=PATH Specify directory for installed PPL include files]) -AC_ARG_WITH(ppl_lib, [ --with-ppl-lib=PATH Specify the directory for the installed PPL library]) +AC_ARG_WITH(ppl-include, [ --with-ppl-include=PATH Specify directory for installed PPL include files]) +AC_ARG_WITH(ppl-lib, [ --with-ppl-lib=PATH Specify the directory for the installed PPL library]) case $with_ppl in no) Index: config/cloog.m4 =================================================================== --- config/cloog.m4 (revision 166757) +++ config/cloog.m4 (working copy) @@ -28,11 +28,11 @@ [Specify prefix directory for the installed CLooG-PPL package. Equivalent to --with-cloog-include=PATH/include plus --with-cloog-lib=PATH/lib])]) - AC_ARG_WITH(cloog_include, + AC_ARG_WITH([cloog-include], [AS_HELP_STRING( [--with-cloog-include=PATH], [Specify directory for installed CLooG include files])]) - AC_ARG_WITH(cloog_lib, + AC_ARG_WITH([cloog-lib], [AS_HELP_STRING( [--with-cloog-lib=PATH], [Specify the directory for the installed CLooG library])])