From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ben Key Newsgroups: gmane.emacs.devel Subject: Re: Supporting parameters that include the = character in configure.bat Date: Mon, 11 Apr 2011 19:17:59 -0500 Message-ID: References: <83lizirrli.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=001517588bfa14e84b04a0ada159 X-Trace: dough.gmane.org 1302572214 28900 80.91.229.12 (12 Apr 2011 01:36:54 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 12 Apr 2011 01:36:54 +0000 (UTC) Cc: Emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Apr 12 03:36:50 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from [140.186.70.17] (helo=lists.gnu.org) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Q9SXB-0005xX-Gr for ged-emacs-devel@m.gmane.org; Tue, 12 Apr 2011 03:36:49 +0200 Original-Received: from localhost ([::1]:57628 helo=lists2.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9SXB-0007iR-0v for ged-emacs-devel@m.gmane.org; Mon, 11 Apr 2011 21:36:49 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:33263) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9SGn-0006wd-Gy for Emacs-devel@gnu.org; Mon, 11 Apr 2011 21:19:58 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q9RME-000459-C2 for Emacs-devel@gnu.org; Mon, 11 Apr 2011 20:21:27 -0400 Original-Received: from mail-bw0-f41.google.com ([209.85.214.41]:51280) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9RMD-0003zd-3S; Mon, 11 Apr 2011 20:21:25 -0400 Original-Received: by bwz17 with SMTP id 17so5771128bwz.0 for ; Mon, 11 Apr 2011 17:21:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=VNTEZ8iY3+Ns4CdvFlq8N/st5YNE0THTYRCO6p19ZMY=; b=KODq840Zwg3D63CyTPOSU0SGl0jM3XBf4tZOgLh3l0LJrd5CzegE8fnq7SdhHQzpsM Euer5rAZ0yPgXnIuA2I5tWqO5ZEJdz1R2gAdBq2zZsbqOJeft70cNVu6zriKBpPhsg02 YXBjyPC2JQzxG6EZxoYbDpaAQ8RYmYhd0W2bI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=TZ89SyKtXEXWLaa4e9CXBnmYvDVdG0cnMYRepU8xZJry5DHvJ/JF5hNMPxwA31OelS /vFORmK4uyoe/ZHsv813DY7BuCEEgdWbYqnRSm6f0p0GQ10JvpwpxmpIy6/AJz2KqZpX ILfMnsX9FoH+GADiVEGy1Q2Vf+p9qtk5sK3bU= Original-Received: by 10.204.7.74 with SMTP id c10mr978728bkc.104.1302567499129; Mon, 11 Apr 2011 17:18:19 -0700 (PDT) Original-Received: by 10.204.118.203 with HTTP; Mon, 11 Apr 2011 17:17:59 -0700 (PDT) In-Reply-To: <83lizirrli.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.214.41 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org X-Broken-Reverse-DNS: no host name found for IP address 140.186.70.17 Xref: news.gmane.org gmane.emacs.devel:138404 Archived-At: --001517588bfa14e84b04a0ada159 Content-Type: text/plain; charset=ISO-8859-1 Hello, I am working on the patch to configure.bat to support using parameters that include the = character. I need some input on changes I am making to the usage message. My changes are as follows: The cflags and ldflags arguments support parameters that include the = character. However, since the = character is normally treated as a separator character you will need to enclose any parameter that includes the = character in quotes. For example, to include -DSITELOAD_PURESIZE_EXTRA=100000 as one of the cflags you would run configure.bat as follows: configure.bat --cflags "-DSITELOAD_PURESIZE_EXTRA=100000" Note that this capability of processing parameters that include the = character depend on command extensions. This batch file attempts to enable command extensions. If command extensions cannot be enabled, a warning message will be displayed. What is your opinion of these changes? If I should change the wording simply send me the recommended changes. Thanks. --001517588bfa14e84b04a0ada159 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hello,

I am working on the patch to configure.bat t= o support using parameters that include the =3D character.=A0 I need some i= nput on changes I am making to the usage message.=A0 My changes are as foll= ows:

The cflags and ldflags arguments support parameters that include= the =3D
character.=A0 However, since the =3D character is normally trea= ted as a
separator character you will need to enclose any parameter that= includes
the =3D character in quotes.=A0 For example, to include
-DSITELOAD_PURES= IZE_EXTRA=3D100000 as one of the cflags you would run
configure.bat as f= ollows:
configure.bat --cflags "-DSITELOAD_PURESIZE_EXTRA=3D100000&= quot;

Note that this capability of processing parameters that include the =3D=
character depend on command extensions.=A0 This batch file attempts to = enable
command extensions.=A0 If command extensions cannot be enabled, a= warning
message will be displayed.

What is your opinion of = these changes?=A0 If I should change the wording simply send me the recomme= nded changes.

Thanks.


--001517588bfa14e84b04a0ada159--