1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-25 10:47:00 +00:00

Adapt to addition of ignore-value.h in 2011-02-03T19:29:35Z!eggert@cs.ucla.edu.

src/makefile.w32-in (IGNORE_VALUE_H): New variable.
 ($(BLD)/sysdep.$(O)): Depend on $(IGNORE_VALUE_H).
 nt/config.nt (inline) [__GNUC__]: Define (for gnulib).
This commit is contained in:
Eli Zaretskii 2011-02-04 11:17:36 +02:00
parent 6f52d86e95
commit a5d733f5d7
4 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2011-02-04 Eli Zaretskii <eliz@gnu.org>
* config.nt (inline) [__GNUC__]: Define (for gnulib).
2011-01-31 Eli Zaretskii <eliz@gnu.org>
* config.nt (VERSION): Uncomment definition.

View File

@ -340,6 +340,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
/* If using GNU, then support inline function declarations. */
#ifdef __GNUC__
#define INLINE __inline__
#define inline __inline__
#else
#define INLINE
#endif

View File

@ -1,3 +1,8 @@
2011-02-04 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (IGNORE_VALUE_H): New variable.
($(BLD)/sysdep.$(O)): Depend on $(IGNORE_VALUE_H).
2011-02-03 Paul Eggert <eggert@cs.ucla.edu>
allow C code to suppress warnings about ignored return values

View File

@ -347,6 +347,7 @@ CONFIG_H = $(EMACS_ROOT)/src/s/ms-w32.h \
$(EMACS_ROOT)/src/m/intel386.h \
$(EMACS_ROOT)/src/config.h \
$(EMACS_ROOT)/nt/inc/sys/stat.h
IGNORE_VALUE_H = $(EMACS_ROOT)/lib/ignore-value.h
$(BLD)/alloc.$(O) : \
$(SRC)/alloc.c \
@ -1388,6 +1389,7 @@ $(BLD)/sysdep.$(O) : \
$(EMACS_ROOT)/nt/inc/sys/file.h \
$(EMACS_ROOT)/nt/inc/sys/socket.h \
$(EMACS_ROOT)/nt/inc/sys/time.h \
$(IGNORE_VALUE_H) \
$(SRC)/lisp.h \
$(SRC)/atimer.h \
$(SRC)/blockinput.h \