emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r111743: MS-Windows followup for revi


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111743: MS-Windows followup for revision 111741.
Date: Tue, 12 Feb 2013 05:52:04 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111743
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Tue 2013-02-12 05:52:04 +0200
message:
  MS-Windows followup for revision 111741.
  
   lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/memrchr.$(O).
   ($(BLD)/memrchr.$(O)): New dependency.
  
   nt/inc/ms-w32.h: Add prototype for memrchr.
modified:
  ChangeLog
  lib/makefile.w32-in
  nt/ChangeLog
  nt/inc/ms-w32.h
=== modified file 'ChangeLog'
--- a/ChangeLog 2013-02-11 23:37:18 +0000
+++ b/ChangeLog 2013-02-12 03:52:04 +0000
@@ -1,3 +1,8 @@
+2013-02-12  Eli Zaretskii  <address@hidden>
+
+       * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/memrchr.$(O).
+       ($(BLD)/memrchr.$(O)): New dependency.
+
 2013-02-11  Paul Eggert  <address@hidden>
 
        Tune by using memchr and memrchr.

=== modified file 'lib/makefile.w32-in'
--- a/lib/makefile.w32-in       2013-01-02 16:13:04 +0000
+++ b/lib/makefile.w32-in       2013-02-12 03:52:04 +0000
@@ -34,6 +34,7 @@
             $(BLD)/getopt.$(O)  \
             $(BLD)/getopt1.$(O) \
             $(BLD)/gettime.$(O) \
+            $(BLD)/memrchr.$(O) \
             $(BLD)/strftime.$(O) \
             $(BLD)/time_r.$(O) \
             $(BLD)/timespec-add.$(O) \
@@ -201,6 +202,10 @@
        $(CONFIG_H) \
        $(MD5_H)
 
+$(BLD)/memrchr.$(O) : \
+       $(GNU_LIB)/memrchr.c \
+       $(CONFIG_H)
+
 $(BLD)/sha1.$(O) : \
        $(GNU_LIB)/sha1.c \
        $(NT_INC)/stdalign.h \

=== modified file 'nt/ChangeLog'
--- a/nt/ChangeLog      2013-02-01 06:30:51 +0000
+++ b/nt/ChangeLog      2013-02-12 03:52:04 +0000
@@ -1,3 +1,7 @@
+2013-02-12  Eli Zaretskii  <address@hidden>
+
+       * inc/ms-w32.h: Add prototype for memrchr.
+
 2013-02-01  Paul Eggert  <address@hidden>
 
        Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).

=== modified file 'nt/inc/ms-w32.h'
--- a/nt/inc/ms-w32.h   2013-01-02 16:13:04 +0000
+++ b/nt/inc/ms-w32.h   2013-02-12 03:52:04 +0000
@@ -394,6 +394,9 @@
 extern int getloadavg (double *, int);
 extern int getpagesize (void);
 
+extern void * memrchr (void const *, int, size_t);
+
+
 #if defined (__MINGW32__)
 
 /* Define to 1 if the system has the type `long long int'. */


reply via email to

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