From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: sqlite3 Date: Wed, 08 Dec 2021 05:25:08 +0200 Message-ID: <83h7bjye0b.fsf@gnu.org> References: <87tufmjyai.fsf@gnus.org> <87sfv5ljxn.fsf@gnus.org> <8735n5leza.fsf@gnus.org> <837dch1qox.fsf@gnu.org> <87ee6odu65.fsf@gnus.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="37885"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Lars Ingebrigtsen Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Dec 08 04:26:24 2021 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1munb5-0009c7-RC for ged-emacs-devel@m.gmane-mx.org; Wed, 08 Dec 2021 04:26:24 +0100 Original-Received: from localhost ([::1]:42472 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1munb4-0000y2-3L for ged-emacs-devel@m.gmane-mx.org; Tue, 07 Dec 2021 22:26:22 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:54266) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1muna8-0000Dj-TU for emacs-devel@gnu.org; Tue, 07 Dec 2021 22:25:24 -0500 Original-Received: from [2001:470:142:3::e] (port=41218 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1muna7-00049R-8s; Tue, 07 Dec 2021 22:25:24 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=ferdCx9GKHcID/LgJ3FFHFT0ly6zlVLd5qLknhNLh9w=; b=SrUF0RcAp6TR q2k9M8JL4hykzzZeJn0HM9Mzr3FBXHlziMrYDp62hL5GMgxEcbheC62ZJG7ZFVnbTK9QmLXbJcYWW ErCyQXZ9UeJ0l6FmRAi6loNeYHQz3idIlkvue3RyB+oLmi5xXRU7709JrRgsKV+o6I/FsDJw7gTL6 N3H+YLZA0z9nf7O2yOzZgZYFptAdCBEr8OZdN4Uqk/FN/y4xXOyG9apD27zRQy09hZmLESGQNl1qb dPe9DYd0LVvR/Lynat3VFAfHe04gMlNDZOinFdh3r83998sV7KV5WYNRlXLewS0Fy3RpRaFhozQVB H0scxVjeEQVPisv1cGEM7g==; Original-Received: from [87.69.77.57] (port=1788 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1muna6-00006x-ND; Tue, 07 Dec 2021 22:25:23 -0500 In-Reply-To: <87ee6odu65.fsf@gnus.org> (message from Lars Ingebrigtsen on Tue, 07 Dec 2021 21:41:38 +0100) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:281307 Archived-At: > From: Lars Ingebrigtsen > Cc: emacs-devel@gnu.org > Date: Tue, 07 Dec 2021 21:41:38 +0100 > > Eli Zaretskii writes: > > > Your MinGW build will refuse to start if the SQLite DLL is not > > available, which is something we'd like to avoid, because it allows > > people to decide which optional libraries they install with an Emacs > > binary which someone else compiled. > > So to test this I should move the sqlite DLL somewhere else (after > building) and see whether it still works Move or rename it, yes. > or is there an easier way to make the DLL loading fail? You could start a new Command Prompt window, change PATH in that window so that it doesn't include the directory where the sqlite DLL lives, then start Emacs from that window.