all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Andy Moreton <andrewjmoreton@gmail.com>
To: 18383@debbugs.gnu.org
Subject: bug#18383: Build failure
Date: Mon, 01 Sep 2014 21:14:54 +0100	[thread overview]
Message-ID: <86k35n85dt.fsf@gmail.com> (raw)
In-Reply-To: <5404C6E8.1070304@alice.it>

On Mon 01 Sep 2014, Angelo Graziosi wrote:

> Current trun, rev. 117801, fails to build (I tried on MSYS2-MinGW64) with this
> compiler error:
>
> gcc -std=gnu99  -c -mtune=generic   -DUSE_CRT_DLL=1 -I /tmp/emacs/nt/inc
> -Demacs  -I. -I. -I../lib -I../lib  -mtune=generic
> -IC:/msys64/mingw64/include/librsvg-2.0
> -IC:/msys64/mingw64/include/gdk-pixbuf-2.0 -pthread
> -IC:/msys64/mingw64/include/cairo -IC:/msys64/mingw64/include/glib-2.0
> -IC:/msys64/mingw64/lib/glib-2.0/include -mms-bitfields
> -IC:/msys64/mingw64/include/pixman-1 -I/mingw64/include/libpng16
> -I/mingw64/include/harfbuzz  -IC:/msys64/mingw64/include
> -I/mingw64/include/freetype2 -IC:/msys64/mingw64/include/libpng16
> -IC:/msys64/mingw64/include/libxml2 -IC:/msys64/mingw64/include/dbus-1.0
> -IC:/msys64/mingw64/lib/dbus-1.0/include           -MMD -MF deps/fileio.d -MP
> -IC:/msys64/mingw64/include/p11-kit-1 
> -IC:/msys64/mingw64/include      -I/mingw64/include/noX -Ofast -g0 -pipe
> fileio.c
> fileio.c: In function 'Fexpand_file_name':
> fileio.c:1345:26: error: 'aidr' undeclared (first use in this function)
>       newdirlen = strlen (aidr);
>                           ^
> fileio.c:1345:26: note: each undeclared identifier is reported only once for
> each function it appears in
>

It looks like a typo in r117801. This fixed the Mingw64 build for me:

=== modified file 'src/fileio.c'
--- src/fileio.c        2014-09-01 16:05:43 +0000
+++ src/fileio.c        2014-09-01 20:10:44 +0000
@@ -1342,7 +1342,7 @@
              memcpy (adir, SSDATA (tem), newdirlen + 1);
            }
          else
-           newdirlen = strlen (aidr);
+           newdirlen = strlen (adir);
          newdir = adir;
        }



HTH,

    AndyM






      reply	other threads:[~2014-09-01 20:14 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-01 19:20 bug#18383: Build failure Angelo Graziosi
2014-09-01 20:14 ` Andy Moreton [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=86k35n85dt.fsf@gmail.com \
    --to=andrewjmoreton@gmail.com \
    --cc=18383@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.