From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?iso-8859-1?Q?Vincent_Bela=EFche?= Newsgroups: gmane.emacs.devel Subject: Can't build latest emacs on MSW + CRLF display issue Date: Sun, 25 Aug 2013 13:52:53 +0200 Message-ID: <807gfadm22.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: ger.gmane.org 1377431618 4330 80.91.229.3 (25 Aug 2013 11:53:38 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 25 Aug 2013 11:53:38 +0000 (UTC) Cc: Karl Berry To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Aug 25 13:53:42 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VDYt3-0005Ad-6U for ged-emacs-devel@m.gmane.org; Sun, 25 Aug 2013 13:53:41 +0200 Original-Received: from localhost ([::1]:45706 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDYt2-0001Za-TW for ged-emacs-devel@m.gmane.org; Sun, 25 Aug 2013 07:53:40 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34062) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDYsv-0001ZI-Bx for emacs-devel@gnu.org; Sun, 25 Aug 2013 07:53:38 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VDYsq-00079F-1U for emacs-devel@gnu.org; Sun, 25 Aug 2013 07:53:33 -0400 Original-Received: from smtp09.smtpout.orange.fr ([80.12.242.131]:34029 helo=smtp.smtpout.orange.fr) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VDYsp-00078w-P6 for emacs-devel@gnu.org; Sun, 25 Aug 2013 07:53:27 -0400 Original-Received: from CHOUNEK ([92.135.119.244]) by mwinf5d18 with ME id GztR1m00D5GUJNL03ztRAG; Sun, 25 Aug 2013 13:53:26 +0200 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 80.12.242.131 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:163011 Archived-At: --=-=-= Content-Type: text/plain Hello, I have been trying to build the latest emacs on MSWindowsXP + MinGW and I came across the following issues: - during the build I get the following error message In toplevel form: url/url-proxy.el:24:1:Error: Symbol's function definition is void: cl-member - during the make-install I get the following error message gcc -o oo-spd/i386/profile.exe -gdwarf-2 -g3 oo-spd/i386/profile.o ../lib/oo-spd/i386/libgnu.a oo-spd/i386/ntlib.o -ladvapi32 mingw32-make.exe[1]: Leaving directory `C:/Programme/GNU/installation/emacs-install/emacs/trunk/lib-src' mingw32-make.exe[1]: *** No rule to make target `../lisp/international/mule.elc', needed by `DOC'. Stop. mingw32-make.exe: *** [all-other-dirs-gmake] Error 2 Anyway, the build has gone far enough so that I have an emacs.exe with the latest source, and it confirmed a problem which I had with my previous build, the display of ^M at ends of lines seems buggy: Here are two pictures: http://savannah.gnu.org/bugs/download.php?file_id=28919 http://savannah.gnu.org/bugs/download.php?file_id=28920 Both pictures concern visiting info files, but the first one (cr.info) has the ^M hidden, and the second one (bbdb.info) has the ^M shown. My feeling is that there is some inconsistency, but maybe I misunderstood the criterion that triggers ^M hiding. Both info files have consistent CRLF endings which I checked with the attached eol_status.cpp tool. I must say also that I met a problem on bbdb.info which then I could never reproduce: at some point of time it was displayed w/o the ^M at for almost the whole file except in the last few tens lines where the ^M endings were displayed. VBR, Vincent. --=-=-= Content-Type: text/plain Content-Disposition: inline; filename=eol_status.cpp #include #include #include #include using namespace std; int main(int ac,char const* av[]) { if(ac < 2){ cerr << "Usage: eol_status [FILE]"; return -1; } ifstream in(av[1],ios_base::binary); if(!in.is_open()){ cerr << "Can't open file ``"<