From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: How to ship native modules? Date: Tue, 21 Feb 2017 18:48:28 +0200 Message-ID: <83r32ro5gj.fsf@gnu.org> References: <83a89gq3us.fsf@gnu.org> <8360k4q0yx.fsf@gnu.org> <83tw7onrc5.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: blaine.gmane.org 1487697713 831 195.159.176.226 (21 Feb 2017 17:21:53 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Tue, 21 Feb 2017 17:21:53 +0000 (UTC) Cc: emacs-devel@gnu.org To: Elias =?utf-8?Q?M=C3=A5rtenson?= , John Wiegley Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 21 18:21:48 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cgE8J-0008AF-BO for ged-emacs-devel@m.gmane.org; Tue, 21 Feb 2017 18:21:47 +0100 Original-Received: from localhost ([::1]:47120 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cgE8P-0001Wq-3z for ged-emacs-devel@m.gmane.org; Tue, 21 Feb 2017 12:21:53 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45989) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cgDcl-0004FN-6h for emacs-devel@gnu.org; Tue, 21 Feb 2017 11:49:12 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cgDck-00078i-Ep for emacs-devel@gnu.org; Tue, 21 Feb 2017 11:49:11 -0500 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:36417) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cgDce-000787-H9; Tue, 21 Feb 2017 11:49:04 -0500 Original-Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:2120 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1cgDcd-0001Uh-KU; Tue, 21 Feb 2017 11:49:04 -0500 In-reply-to: (message from Elias =?utf-8?Q?M=C3=A5rtenson?= on Tue, 21 Feb 2017 12:13:44 +0800) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.devel:212525 Archived-At: > From: Elias MÃ¥rtenson > Date: Tue, 21 Feb 2017 12:13:44 +0800 > Cc: emacs-devel > > That leave me with only one question: With the main user of this functionality being Gnus, should GSS > support be implemented as part of Emacs proper, or shipped using ELPA? > > The pros and cons of each approach should be well understood now, and I'm willing to implement it either > way. So we're up to a policy decision on the part of the Emacs maintainers now. I looked at the C source. It's quite small, and if reimplemented as part of Emacs, will be even smaller (no need to reinvent XCAR, intern, etc.). So I see no problems with adding this to the Emacs sources, probably as a separate C file. John?