From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11636 invoked by alias); 24 Feb 2014 13:44:01 -0000 Mailing-List: contact libffi-discuss-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libffi-discuss-owner@sourceware.org Received: (qmail 11624 invoked by uid 89); 24 Feb 2014 13:44:00 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_SEMBACKSCATTER,RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: e06smtp11.uk.ibm.com Received: from e06smtp11.uk.ibm.com (HELO e06smtp11.uk.ibm.com) (195.75.94.107) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Mon, 24 Feb 2014 13:43:59 +0000 Received: from /spool/local by e06smtp11.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 24 Feb 2014 13:43:56 -0000 Received: from d06dlp03.portsmouth.uk.ibm.com (9.149.20.15) by e06smtp11.uk.ibm.com (192.168.101.141) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Mon, 24 Feb 2014 13:43:54 -0000 Received: from b06cxnps4074.portsmouth.uk.ibm.com (d06relay11.portsmouth.uk.ibm.com [9.149.109.196]) by d06dlp03.portsmouth.uk.ibm.com (Postfix) with ESMTP id 450E41B0805F for ; Mon, 24 Feb 2014 13:43:34 +0000 (GMT) Received: from d06av10.portsmouth.uk.ibm.com (d06av10.portsmouth.uk.ibm.com [9.149.37.251]) by b06cxnps4074.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id s1ODhg0P3670476 for ; Mon, 24 Feb 2014 13:43:42 GMT Received: from d06av10.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av10.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id s1ODhrL4015616 for ; Mon, 24 Feb 2014 06:43:53 -0700 Received: from bl3ahm9f.de.ibm.com (dyn-9-152-212-203.boeblingen.de.ibm.com [9.152.212.203]) by d06av10.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id s1ODhrN1015609 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for ; Mon, 24 Feb 2014 06:43:53 -0700 Received: from dvogt by bl3ahm9f.de.ibm.com with local (Exim 4.76) (envelope-from ) id 1WHvp5-0006ZJ-0x for libffi-discuss@sourceware.org; Mon, 24 Feb 2014 14:43:55 +0100 Date: Mon, 24 Feb 2014 13:44:00 -0000 From: Dominik Vogt To: libffi-discuss@sourceware.org Subject: [PATCH] Fix typo in help strings for --disable-(struct|raw_api) Message-ID: <20140224134354.GA23591@linux.vnet.ibm.com> Reply-To: vogt@linux.vnet.ibm.com MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="ZGiS0Q5IWpPtfppv" Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14022413-5024-0000-0000-000008DB0FD8 X-IsSubscribed: yes X-SW-Source: 2014/txt/msg00006.txt.bz2 --ZGiS0Q5IWpPtfppv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 359 The attached patch corrects a type in some confiugre.ac help strings. They are not used anywhere, but still ... :-) ChangeLog: -- snip -- 2014-02-24 Dominik Vogt * configure.ac (AC_ARG_ENABLE struct): Fix typo in help message. (AC_ARG_ENABLE raw_api): Ditto. -- snip -- Ciao Dominik ^_^ ^_^ -- Dominik Vogt IBM Germany --ZGiS0Q5IWpPtfppv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-Fix-typo-in-help-stings-for-disable-struct-raw_api.patch" Content-length: 1236 >From 9f1540415791214d56820ec67f809509f1fbd958 Mon Sep 17 00:00:00 2001 From: Dominik Vogt Date: Mon, 24 Feb 2014 14:31:56 +0100 Subject: [PATCH] Fix typo in help stings for --disable-(struct|raw_api). --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 0d768c6..4dd919d 100644 --- a/configure.ac +++ b/configure.ac @@ -548,14 +548,14 @@ AM_CONDITIONAL(FFI_DEBUG, test "$enable_debug" = "yes") AC_ARG_ENABLE(structs, [ --disable-structs omit code for struct support], if test "$enable_structs" = "no"; then - AC_DEFINE(FFI_NO_STRUCTS, 1, [Define this is you do not want support for aggregate types.]) + AC_DEFINE(FFI_NO_STRUCTS, 1, [Define this if you do not want support for aggregate types.]) fi) AM_CONDITIONAL(FFI_DEBUG, test "$enable_debug" = "yes") AC_ARG_ENABLE(raw-api, [ --disable-raw-api make the raw api unavailable], if test "$enable_raw_api" = "no"; then - AC_DEFINE(FFI_NO_RAW_API, 1, [Define this is you do not want support for the raw API.]) + AC_DEFINE(FFI_NO_RAW_API, 1, [Define this if you do not want support for the raw API.]) fi) AC_ARG_ENABLE(purify-safety, -- 1.7.9.5 --ZGiS0Q5IWpPtfppv--