From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 17 04:08:15 2022 Received: (at submit) by debbugs.gnu.org; 17 Aug 2022 08:08:15 +0000 Received: from localhost ([127.0.0.1]:49379 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOE62-0003sC-0N for submit@debbugs.gnu.org; Wed, 17 Aug 2022 04:08:15 -0400 Received: from lists.gnu.org ([209.51.188.17]:53892) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOE5x-0003s1-2X for submit@debbugs.gnu.org; Wed, 17 Aug 2022 04:08:12 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:47558) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oOE5v-0007HW-SN for bug-auctex@gnu.org; Wed, 17 Aug 2022 04:08:08 -0400 Received: from mout02.posteo.de ([185.67.36.66]:40555) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oOE5t-0007SM-DW for bug-auctex@gnu.org; Wed, 17 Aug 2022 04:08:07 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id B3A10240103 for ; Wed, 17 Aug 2022 10:08:02 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4M70xt132Mz9rxS for ; Wed, 17 Aug 2022 10:07:59 +0200 (CEST) Date: Wed, 17 Aug 2022 08:07:55 +0000 (UTC) Message-Id: <20220817.100755.2166006918337609630.wl@gnu.org> To: bug-auctex@gnu.org Subject: two patches to silence `autogen.sh` From: Werner LEMBERG Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Wed_Aug_17_10_07_55_2022_813)--" Content-Transfer-Encoding: 7bit Received-SPF: pass client-ip=185.67.36.66; envelope-from=werner.lemberg@posteo.de; helo=mout02.posteo.de X-Spam_score_int: -39 X-Spam_score: -4.0 X-Spam_bar: ---- X-Spam_report: (-4.0 / 5.0 requ) BAYES_00=-1.9, HEADER_FROM_DIFFERENT_DOMAINS=0.249, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.1 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.1 (--) ----Next_Part(Wed_Aug_17_10_07_55_2022_813)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit I've just discovered that two weeks ago I sent this e-mail to 'auctex', which is the wrong list. No wonder that there wasn't any reaction :-) The attached two patches make `./autogen.sh` run without warnings. Werner ----Next_Part(Wed_Aug_17_10_07_55_2022_813)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="0001-Fix-autoconf-warnings.patch" >From 6154ebc4e11856bbffab8cad24895083c7175d8c Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Mon, 1 Aug 2022 16:33:11 +0200 Subject: [PATCH 1/2] Fix `autoconf` warnings * configure.ac: Run `autoupdate`. * aclocal.m4: s/AC_FD_CC/AS_MESSAGE_LOG_FD/. --- aclocal.m4 | 6 +++--- configure.ac | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/aclocal.m4 b/aclocal.m4 index 383a5935..c6c73054 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -13,10 +13,10 @@ dnl assigned from the command line arguments from $5. AC_DEFUN(EMACS_LISP, [ elisp="$2" OUTPUT=./conftest-$$ - echo "${EMACS}" -batch $3 -eval "(let* (patsubst([$4], [\w+], [(\&(pop command-line-args-left))])(x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" $5 >& AC_FD_CC 2>&1 - "${EMACS}" -batch $3 -eval "(let* (patsubst([$4], [\w+], [(\&(pop command-line-args-left))])(x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" $5 >& AC_FD_CC 2>&1 + echo "${EMACS}" -batch $3 -eval "(let* (patsubst([$4], [\w+], [(\&(pop command-line-args-left))])(x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" $5 >& AS_MESSAGE_LOG_FD 2>&1 + "${EMACS}" -batch $3 -eval "(let* (patsubst([$4], [\w+], [(\&(pop command-line-args-left))])(x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" $5 >& AS_MESSAGE_LOG_FD 2>&1 $1="`cat ${OUTPUT}`" - echo "=> [$]{$1}" >& AC_FD_CC 2>&1 + echo "=> [$]{$1}" >& AS_MESSAGE_LOG_FD 2>&1 rm -f ${OUTPUT} ]) diff --git a/configure.ac b/configure.ac index fe7616d5..81c09653 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ dnl along with AUCTeX; see the file COPYING. If not, write to the Free dnl Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, dnl MA 02110-1301, USA. -AC_INIT(auctex,13.1,bug-auctex@gnu.org) +AC_INIT([auctex],[13.1],[bug-auctex@gnu.org]) AC_CHECK_PROGS_REQUIRED(MAKECMD, make, [make not found, aborting!]) AC_PROG_MAKE_SET @@ -268,7 +268,8 @@ AC_SHELL_QUOTIFY(TEXI2HTML) AC_SHELL_QUOTIFY(TEXI2DVI) AC_SHELL_QUOTIFY(TEXI2PDF) -AC_OUTPUT(Makefile tex-site.el.out:tex-site.el.in doc/Makefile auctex.el preview.el latex/Makefile) +AC_CONFIG_FILES([Makefile tex-site.el.out:tex-site.el.in doc/Makefile auctex.el preview.el latex/Makefile]) +AC_OUTPUT cat >&2 <From 4531e7362e1c87fc32f6ec5e20cafe53e00da86b Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Mon, 1 Aug 2022 16:45:23 +0200 Subject: [PATCH 2/2] Avoid `makeinfo` warnings * doc/changes.texi, doc/wininstall.texi: Protect `@cindex` entries with `@ifclear rawfile`. --- doc/changes.texi | 2 ++ doc/wininstall.texi | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/doc/changes.texi b/doc/changes.texi index 6c0a5723..59949002 100644 --- a/doc/changes.texi +++ b/doc/changes.texi @@ -1136,8 +1136,10 @@ inserted by typing @key{"}. Completion support for options of some @LaTeX{} packages was added. @item +@ifclear rawfile @cindex @file{auctex.el} @cindex @file{tex-site.el} +@end ifclear Already in version 11.81 the way to activate @AUCTeX{} changed substantially. This should now be done with @code{(load "auctex.el" nil t t)} instead of the former @code{(require 'tex-site)}. Related to this diff --git a/doc/wininstall.texi b/doc/wininstall.texi index 230f8e22..1c812d4d 100644 --- a/doc/wininstall.texi +++ b/doc/wininstall.texi @@ -47,8 +47,10 @@ containing the programs to the @env{PATH} environment variable if necessary. Here is how to do that in W2000/XP: @enumerate +@ifclear rawfile @cindex Adding to @env{PATH} in Windows @cindex @env{PATH} in Windows +@end ifclear @item On the desktop, right click ``My Computer'' and select properties. @item @@ -303,7 +305,9 @@ in either a site-wide @file{site-start.el} or your personal startup file (usually accessible as @file{~/.emacs} or @file{~/.emacs.d/init.el} from within Emacs). +@ifclear rawfile @cindex @file{tex-mik.el} +@end ifclear The default configuration of @AUCTeX{} is probably not the best fit for Windows systems with MiK@TeX{}. You might want to add @lisp -- 2.37.1 ----Next_Part(Wed_Aug_17_10_07_55_2022_813)---- From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 17 08:33:46 2022 Received: (at 57258) by debbugs.gnu.org; 17 Aug 2022 12:33:46 +0000 Received: from localhost ([127.0.0.1]:49734 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOIEy-0000NN-Vw for submit@debbugs.gnu.org; Wed, 17 Aug 2022 08:33:46 -0400 Received: from eggs.gnu.org ([209.51.188.92]:36190) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOIEw-0000N6-3B for 57258@debbugs.gnu.org; Wed, 17 Aug 2022 08:33:43 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:50618) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oOIEq-00062N-Rj; Wed, 17 Aug 2022 08:33:36 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=mjq6ZVI5v0hOqKWxSUqiq5+Eakx77g3sXqkz/gbiQTI=; b=UCzTPP+ux/T2vdKV54+D hYTRWc7O6B5+qeLXqfldjeGthoXL0GMl+FZhCSY3VNEkJFsBsgxE4/EnrL4mtdHp7lwsTge2G8sYW FHhYUwwXkafCk8lon+UtHMhA8SBBUw7RHKMaHJmeRY9HBbE7Hq6QHdwY2Bo5v5IlN5BE6OlK6y9kv ofrjoPCaQsX+ZQ9CcNxvHntFTM+qsJd97w/B3tw1ngM3MoOOtQoM4XjQ2Oc2O/OlrmgBnZfRPihSN gBgHBeBVy1SZ2vYDFa7xoEFA4VM/bhdcMiTC+YNYvyfFDxAcBV6SCaDpQTwu/NCAtgJ3EuZPCGG2y atTuW2BKZtzdLQ==; Received: from pd9fb77f7.dip0.t-ipconnect.de ([217.251.119.247]:63667 helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oOIEq-0001SB-DU; Wed, 17 Aug 2022 08:33:36 -0400 From: Arash Esbati To: Werner LEMBERG Subject: Re: bug#57258: two patches to silence `autogen.sh` In-Reply-To: <20220817.100755.2166006918337609630.wl@gnu.org> (Werner LEMBERG's message of "Wed, 17 Aug 2022 08:07:55 +0000 (UTC)") References: <20220817.100755.2166006918337609630.wl@gnu.org> Date: Wed, 17 Aug 2022 14:33:22 +0200 Message-ID: <86zgg3oxrh.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 57258 Cc: 57258@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi Werner, Werner LEMBERG writes: > I've just discovered that two weeks ago I sent this e-mail to > 'auctex', which is the wrong list. No wonder that there wasn't any > reaction :-) I saw your message there but was busy to fix AUCTeX to run with the latest Emacs at all[1]. > The attached two patches make `./autogen.sh` run without warnings. Thanks, I tested them locally and they both work. I have one question though: Does your change means that building AUCTeX requires a minimum version of autoconf? I'm in general easy with it, we should only mention it in our installation guide. Best, Arash Footnotes: [1] https://lists.gnu.org/archive/html/auctex-devel/2022-08/msg00013.html From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 17 09:12:02 2022 Received: (at 57258) by debbugs.gnu.org; 17 Aug 2022 13:12:02 +0000 Received: from localhost ([127.0.0.1]:49762 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOIq1-0001LI-5w for submit@debbugs.gnu.org; Wed, 17 Aug 2022 09:12:02 -0400 Received: from mout02.posteo.de ([185.67.36.66]:37209) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOIpv-0001Ky-7P for 57258@debbugs.gnu.org; Wed, 17 Aug 2022 09:11:59 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id 5E87D240101 for <57258@debbugs.gnu.org>; Wed, 17 Aug 2022 15:11:49 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4M77hN2qndz9rxM; Wed, 17 Aug 2022 15:11:48 +0200 (CEST) Date: Wed, 17 Aug 2022 13:11:44 +0000 (UTC) Message-Id: <20220817.151144.598158646250712660.wl@gnu.org> To: arash@gnu.org Subject: Re: bug#57258: two patches to silence `autogen.sh` From: Werner LEMBERG In-Reply-To: <86zgg3oxrh.fsf@gnu.org> References: <20220817.100755.2166006918337609630.wl@gnu.org> <86zgg3oxrh.fsf@gnu.org> Mime-Version: 1.0 Content-Type: Text/Plain; charset=utf-8 Content-Transfer-Encoding: base64 X-Spam-Score: -2.1 (--) X-Debbugs-Envelope-To: 57258 Cc: 57258@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.1 (---) DQo+PiBUaGUgYXR0YWNoZWQgdHdvIHBhdGNoZXMgbWFrZSBgLi9hdXRvZ2VuLnNoYCBydW4gd2l0 aG91dCB3YXJuaW5ncy4NCj4gDQo+IFRoYW5rcywgSSB0ZXN0ZWQgdGhlbSBsb2NhbGx5IGFuZCB0 aGV5IGJvdGggd29yay4gIEkgaGF2ZSBvbmUgcXVlc3Rpb24NCj4gdGhvdWdoOiBEb2VzIHlvdXIg Y2hhbmdlIG1lYW5zIHRoYXQgYnVpbGRpbmcgQVVDVGVYIHJlcXVpcmVzIGEgbWluaW11bQ0KPiB2 ZXJzaW9uIG9mIGF1dG9jb25mPyAgSSdtIGluIGdlbmVyYWwgZWFzeSB3aXRoIGl0LCB3ZSBzaG91 bGQgb25seQ0KPiBtZW50aW9uIGl0IGluIG91ciBpbnN0YWxsYXRpb24gZ3VpZGUuDQoNCkkgZG9u J3QgdGhpbmsgc28uICBNYWNybyBgQUNfRkRfQ0NgIHdhcyByZXBsYWNlZCBieSBgQUNfRkRfTE9H YCwgd2hpY2gNCmluIHR1cm4gd2FzIHJlcGxhY2VkIGJ5IGBBU19NRVNTQUdFX0xPR19GRGA7IGJv dGggaGFwcGVuZWQgaW4gMjAwMC4NClRoaXMgY29ycmVzcG9uZHMgdG8gYXV0b2NvbmYgMi41MCwg d2hpY2ggaXMgbm8gbG9uZ2VyIHdvcnRoIG9mIGJlaW5nDQptZW50aW9uZWQgSU1ITyDigJMgaXQg cHJlY2VkZXMgdGhlIGNoYW5nZSBmcm9tIGBjb25maWd1cmUuaW5gIHRvDQpgY29uZmlndXJlLmFj YCwgZm9yIGV4YW1wbGUuDQoNCg0KICAgIFdlcm5lcg0K From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 18 03:40:13 2022 Received: (at 57258-done) by debbugs.gnu.org; 18 Aug 2022 07:40:13 +0000 Received: from localhost ([127.0.0.1]:53608 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOa8S-00055G-07 for submit@debbugs.gnu.org; Thu, 18 Aug 2022 03:40:13 -0400 Received: from eggs.gnu.org ([209.51.188.92]:47370) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOa8N-000550-Vp for 57258-done@debbugs.gnu.org; Thu, 18 Aug 2022 03:40:10 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:56022) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oOa8I-0005VP-HH; Thu, 18 Aug 2022 03:40:02 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=GgYIrxtpiujpAedynZzW4FF+7HFA3RUbqZ5QVjeiOXQ=; b=o+b+gVdyylObKLCUN1rd y7L/sIwEm53dzMhy8EdsrqjDgyNQ5YKR8EhfH8tJqAs8cdPefd6dlk+mKk/x5fNCXshu8OANQZ2Fg SwLYsNKbUPJPzG9l+lvmqqlrVmYcySSiuX8fDVgbnLaRXjOni8m8MVDMCmp1tloHlS3OBMS+2Lqil kiOkG46yHQfLUmAmQihIHpE+mpSNL2QaJx8/lfGVvZYvXtZZXg7IqNmkU570VvEICDVYaBUVyxWkK dMPhsPqDxYsWMMWbaPJyp1WDGY02BWWIYi69dML05yL7exhBsm+aJxcKZfRBMc9LSY06EN0AC8VXh Jt5+Ea3hmspFiQ==; Received: from pd9fb77f7.dip0.t-ipconnect.de ([217.251.119.247]:61970 helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oOa8F-0004mY-8I; Thu, 18 Aug 2022 03:40:01 -0400 From: Arash Esbati To: Werner LEMBERG Subject: Re: bug#57258: two patches to silence `autogen.sh` In-Reply-To: <20220817.151144.598158646250712660.wl@gnu.org> (Werner LEMBERG's message of "Wed, 17 Aug 2022 13:11:44 +0000 (UTC)") References: <20220817.100755.2166006918337609630.wl@gnu.org> <86zgg3oxrh.fsf@gnu.org> <20220817.151144.598158646250712660.wl@gnu.org> Date: Thu, 18 Aug 2022 09:39:44 +0200 Message-ID: <86bksiknjz.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 57258-done Cc: 57258-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Werner LEMBERG writes: > I don't think so. Macro `AC_FD_CC` was replaced by `AC_FD_LOG`, which > in turn was replaced by `AS_MESSAGE_LOG_FD`; both happened in 2000. > This corresponds to autoconf 2.50, which is no longer worth of being > mentioned IMHO =E2=80=93 it precedes the change from `configure.in` to > `configure.ac`, for example. Thanks for the clarification. The README.GIT file says: You will need to have a working and rather current copy of `makeinfo', `autoconf' and of `perl'. So I think we're good. Again, many thanks for the patch, I'm closing this report. Best, Arash From unknown Tue Aug 19 02:58:54 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 15 Sep 2022 11:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator