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: gnutls error Date: Sun, 16 Jul 2017 20:15:44 +0300 Message-ID: <834luce20v.fsf@gnu.org> References: <871spif2se.fsf@yandex.com> <834lueez97.fsf@gnu.org> <83379yexyx.fsf@gnu.org> <83tw2den7o.fsf@gnu.org> <83bmoke9nv.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1500225349 22152 195.159.176.226 (16 Jul 2017 17:15:49 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 16 Jul 2017 17:15:49 +0000 (UTC) Cc: emacs-devel@gnu.org To: Dani Moncayo Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jul 16 19:15:44 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 1dWn8v-0005Ii-Pd for ged-emacs-devel@m.gmane.org; Sun, 16 Jul 2017 19:15:41 +0200 Original-Received: from localhost ([::1]:46325 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dWn91-0000v4-3v for ged-emacs-devel@m.gmane.org; Sun, 16 Jul 2017 13:15:47 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:54793) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dWn8u-0000un-K9 for emacs-devel@gnu.org; Sun, 16 Jul 2017 13:15:41 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dWn8r-0006Vj-HH for emacs-devel@gnu.org; Sun, 16 Jul 2017 13:15:40 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:49161) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dWn8r-0006Vf-DR; Sun, 16 Jul 2017 13:15:37 -0400 Original-Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:3206 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dWn8q-0002hg-RD; Sun, 16 Jul 2017 13:15:37 -0400 In-reply-to: (message from Dani Moncayo on Sun, 16 Jul 2017 18:02:17 +0200) 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:216741 Archived-At: > From: Dani Moncayo > Date: Sun, 16 Jul 2017 18:02:17 +0200 > Cc: Emacs development discussions > > > OK. Can you show the preprocessed source of fns.c? (Let me know if > > you need help in how to produce it.) > > I've tried to produce it, by adding this rule to the file > "build-dir/src/Makefile": > > fns.i: fns.c > $(AM_V_CC)$(CC) -E $(CPPFLAGS) $(ALL_CFLAGS) $(PROFILING_CFLAGS) $< > $@ > > and then doing: > cd build-dir/src > make fns.i > > I'm attaching the preprocessed source. Let me know if this is not > what you want. It is, thanks. The problem is that you have an outdated globals.h in the source tree, and the build picks it up instead of the version produced during the build, which is somewhere in the build tree. I guess you started by building in the source tree, and then switched to an out-of-tree builds, and didn't clean up the source tree. Or something to that effect.