diff options
| author | Eli Zaretskii | 2013-04-01 19:28:53 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-04-01 19:28:53 +0300 |
| commit | 86e9346005b957ddadb73586c9641e68ea12a79d (patch) | |
| tree | 683c40f6e61d57905d7b7807ef42e8f1ae4038ea /src | |
| parent | cbbb6bfd46dbab26a570b853959da6ecaada4a93 (diff) | |
| download | emacs-86e9346005b957ddadb73586c9641e68ea12a79d.tar.gz emacs-86e9346005b957ddadb73586c9641e68ea12a79d.zip | |
Fixed misc compilation warnings and errors. Dumping errors out.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 5 | ||||
| -rw-r--r-- | src/w32.c | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 62c1e51e298..283396acc89 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -274,6 +274,9 @@ W32_RES_LINK=@W32_RES_LINK@ | |||
| 274 | ## else xfont.o | 274 | ## else xfont.o |
| 275 | FONT_OBJ=@FONT_OBJ@ | 275 | FONT_OBJ=@FONT_OBJ@ |
| 276 | 276 | ||
| 277 | ## Empty for MinGW, cm.o for the rest. | ||
| 278 | CM_OBJ=@CM_OBJ@ | ||
| 279 | |||
| 277 | LIBGPM = @LIBGPM@ | 280 | LIBGPM = @LIBGPM@ |
| 278 | 281 | ||
| 279 | ## -lresolv, or empty. | 282 | ## -lresolv, or empty. |
| @@ -344,7 +347,7 @@ ALL_OBJC_CFLAGS=$(ALL_CFLAGS) $(GNU_OBJC_CFLAGS) | |||
| 344 | ## be dumped as pure by dump-emacs. | 347 | ## be dumped as pure by dump-emacs. |
| 345 | base_obj = dispnew.o frame.o scroll.o xdisp.o menu.o $(XMENU_OBJ) window.o \ | 348 | base_obj = dispnew.o frame.o scroll.o xdisp.o menu.o $(XMENU_OBJ) window.o \ |
| 346 | charset.o coding.o category.o ccl.o character.o chartab.o bidi.o \ | 349 | charset.o coding.o category.o ccl.o character.o chartab.o bidi.o \ |
| 347 | cm.o term.o terminal.o xfaces.o $(XOBJ) $(GTK_OBJ) $(DBUS_OBJ) \ | 350 | $(CM_OBJ) term.o terminal.o xfaces.o $(XOBJ) $(GTK_OBJ) $(DBUS_OBJ) \ |
| 348 | emacs.o keyboard.o macros.o keymap.o sysdep.o \ | 351 | emacs.o keyboard.o macros.o keymap.o sysdep.o \ |
| 349 | buffer.o filelock.o insdel.o marker.o \ | 352 | buffer.o filelock.o insdel.o marker.o \ |
| 350 | minibuf.o fileio.o dired.o \ | 353 | minibuf.o fileio.o dired.o \ |
| @@ -4430,9 +4430,9 @@ fstat (int desc, struct stat * buf) | |||
| 4430 | } | 4430 | } |
| 4431 | 4431 | ||
| 4432 | int | 4432 | int |
| 4433 | utime (const char *name, struct _utimbuf *times) | 4433 | utime (const char *name, struct utimbuf *times) |
| 4434 | { | 4434 | { |
| 4435 | struct _utimbuf deftime; | 4435 | struct utimbuf deftime; |
| 4436 | HANDLE fh; | 4436 | HANDLE fh; |
| 4437 | FILETIME mtime; | 4437 | FILETIME mtime; |
| 4438 | FILETIME atime; | 4438 | FILETIME atime; |