emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r111234: Fix compilation warnings in


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111234: Fix compilation warnings in the Windows build.
Date: Fri, 14 Dec 2012 21:43:12 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111234
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Fri 2012-12-14 21:43:12 +0200
message:
  Fix compilation warnings in the Windows build.
  
   src/editfns.c [HAVE_PWD_H]: Include grp.h.
   src/makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
modified:
  src/ChangeLog
  src/editfns.c
  src/makefile.w32-in
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-12-14 18:59:00 +0000
+++ b/src/ChangeLog     2012-12-14 19:43:12 +0000
@@ -1,3 +1,9 @@
+2012-12-14  Eli Zaretskii  <address@hidden>
+
+       * editfns.c [HAVE_PWD_H]: Include grp.h.
+
+       * makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
+
 2012-12-14  Paul Eggert  <address@hidden>
 
        Fix permissions bugs with setgid directories etc. (Bug#13125)

=== modified file 'src/editfns.c'
--- a/src/editfns.c     2012-12-14 18:59:00 +0000
+++ b/src/editfns.c     2012-12-14 19:43:12 +0000
@@ -24,6 +24,7 @@
 
 #ifdef HAVE_PWD_H
 #include <pwd.h>
+#include <grp.h>
 #endif
 
 #include <unistd.h>

=== modified file 'src/makefile.w32-in'
--- a/src/makefile.w32-in       2012-12-11 02:06:53 +0000
+++ b/src/makefile.w32-in       2012-12-14 19:43:12 +0000
@@ -781,6 +781,7 @@
        $(SRC)/editfns.c \
        $(SRC)/blockinput.h \
        $(NT_INC)/pwd.h \
+       $(NT_INC)/grp.h \
        $(NT_INC)/unistd.h \
        $(GNU_LIB)/intprops.h \
        $(GNU_LIB)/strftime.h \


reply via email to

[Prev in Thread] Current Thread [Next in Thread]