]> git.eshelyaron.com Git - emacs.git/commitdiff
MS-Windows followup for 2013-02-11T23:37:18Z!eggert@cs.ucla.edu.
authorEli Zaretskii <eliz@gnu.org>
Tue, 12 Feb 2013 03:52:04 +0000 (05:52 +0200)
committerEli Zaretskii <eliz@gnu.org>
Tue, 12 Feb 2013 03:52:04 +0000 (05:52 +0200)
 lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/memrchr.$(O).
 ($(BLD)/memrchr.$(O)): New dependency.

 nt/inc/ms-w32.h: Add prototype for memrchr.

ChangeLog
lib/makefile.w32-in
nt/ChangeLog
nt/inc/ms-w32.h

index 0da3969fa110252da89031099f248e61a8899f02..6a90eb178f5f57e7d2589f0729f6a48e5001baf2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-02-12  Eli Zaretskii  <eliz@gnu.org>
+
+       * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/memrchr.$(O).
+       ($(BLD)/memrchr.$(O)): New dependency.
+
 2013-02-11  Paul Eggert  <eggert@cs.ucla.edu>
 
        Tune by using memchr and memrchr.
index d5128cc9a618422aa5b71f5b0c4d6bc8772e3db2..cd62fbcd13d362920b26e95f29d4e084582425b4 100644 (file)
@@ -34,6 +34,7 @@ GNULIBOBJS = $(BLD)/c-ctype.$(O) \
             $(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 @@ $(BLD)/md5.$(O) : \
        $(CONFIG_H) \
        $(MD5_H)
 
+$(BLD)/memrchr.$(O) : \
+       $(GNU_LIB)/memrchr.c \
+       $(CONFIG_H)
+
 $(BLD)/sha1.$(O) : \
        $(GNU_LIB)/sha1.c \
        $(NT_INC)/stdalign.h \
index b2a481354bcaf7d5587eb306d812872fa611ea85..1d3f7b7f49fcd528fe95e9ca9190dda9ea807f54 100644 (file)
@@ -1,3 +1,7 @@
+2013-02-12  Eli Zaretskii  <eliz@gnu.org>
+
+       * inc/ms-w32.h: Add prototype for memrchr.
+
 2013-02-01  Paul Eggert  <eggert@cs.ucla.edu>
 
        Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
index c10c4d9e02d2f7e7db59a36b37b8441c3fe0a8d9..a74c74b4548f7c214187425d74783451c64fdac9 100644 (file)
@@ -394,6 +394,9 @@ extern int sys_putenv (char *);
 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'. */