From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Greg Minshall Newsgroups: gmane.emacs.devel Subject: Re: make check fails? (emacs-26.1 w/modules) Date: Mon, 03 Sep 2018 18:12:40 +0300 Message-ID: <21034.1535987560@minshall-apollo.minshall.org> References: <16923.1535985554@minshall-apollo.minshall.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Trace: blaine.gmane.org 1535987496 28921 195.159.176.226 (3 Sep 2018 15:11:36 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Mon, 3 Sep 2018 15:11:36 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Sep 03 17:11:32 2018 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 1fwqVn-0007Pm-PB for ged-emacs-devel@m.gmane.org; Mon, 03 Sep 2018 17:11:31 +0200 Original-Received: from localhost ([::1]:45712 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fwqXt-0000jH-T0 for ged-emacs-devel@m.gmane.org; Mon, 03 Sep 2018 11:13:41 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50611) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fwqXA-0000jC-CF for emacs-devel@gnu.org; Mon, 03 Sep 2018 11:12:57 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fwqX7-0006gR-3W for emacs-devel@gnu.org; Mon, 03 Sep 2018 11:12:56 -0400 Original-Received: from hiwela.pair.com ([209.68.5.201]:60625) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fwqX5-0006Zf-34 for emacs-devel@gnu.org; Mon, 03 Sep 2018 11:12:52 -0400 Original-Received: from hiwela.pair.com (localhost [127.0.0.1]) by hiwela.pair.com (Postfix) with ESMTP id 73FD39804D8 for ; Mon, 3 Sep 2018 11:12:42 -0400 (EDT) Original-Received: from minshall-entroware-apollo.cliq.com (unknown [196.41.40.162]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by hiwela.pair.com (Postfix) with ESMTPSA id 1D0638F082E for ; Mon, 3 Sep 2018 11:12:42 -0400 (EDT) Original-Received: from minshall-apollo.minshall.org (localhost [127.0.0.1]) by minshall-entroware-apollo.cliq.com (Postfix) with ESMTP id 3880A6C04F1 for ; Mon, 3 Sep 2018 18:12:40 +0300 (+03) In-reply-to: Your message of "Mon, 03 Sep 2018 17:39:14 +0300." <16923.1535985554@minshall-apollo.minshall.org> X-Mailer: MH-E 8.6+git; nmh 1.6; GNU Emacs 26.1 Content-ID: <21033.1535987560.1@minshall-apollo.minshall.org> X-detected-operating-system: by eggs.gnu.org: FreeBSD 9.x X-Received-From: 209.68.5.201 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:229207 Archived-At: oops. i take back my one observation: > the only thing i notice odd is that test/data/emacs-module/mod-test.c, > when (presumably) registering, calls : provide (env, "mod-test"); rather > than some variant of Fprovide(). but, since i don't really know how > modules are expected to behave, i can't really say. as it turns out, provide() is provided in mod-test.c itself, as a wrapper for, essentially, Qprovide(), which i guess to be correct. btw, i should have mentioned that the dynamic library for mod-test appears to exist, have emacs_module_init in it: ---- bash minshall-apollo: {1184} ls -l test/data/emacs-module/mod-test.so -rwxrwxr-x 1 minshall minshall 68712 Sep 3 17:23 test/data/emacs-module/m= od-test.so* bash minshall-apollo: {1185} nm test/data/emacs-module/mod-test.so | grep = emacs_module_init 0000000000000ee0 T emacs_module_init ---- cheers, Greg