diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/sysdep.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2ab5101fc6f..51e8d112c9d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-12-29 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * sysdep.c [WINDOWSNT]: Include sys/socket.h, without which this | ||
| 4 | file doesn't compile on MS-Windows. | ||
| 5 | |||
| 1 | 2014-12-28 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2014-12-28 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Fix produce_composite_width typo | 8 | Fix produce_composite_width typo |
diff --git a/src/sysdep.c b/src/sysdep.c index 013c86b859d..7158f38dba2 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -110,6 +110,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 110 | #define _P_WAIT 0 | 110 | #define _P_WAIT 0 |
| 111 | int _cdecl _spawnlp (int, const char *, const char *, ...); | 111 | int _cdecl _spawnlp (int, const char *, const char *, ...); |
| 112 | int _cdecl _getpid (void); | 112 | int _cdecl _getpid (void); |
| 113 | /* The following is needed for O_CLOEXEC, F_SETFD, FD_CLOEXEC, and | ||
| 114 | several prototypes of functions called below. */ | ||
| 115 | #include <sys/socket.h> | ||
| 113 | #endif | 116 | #endif |
| 114 | 117 | ||
| 115 | #include "syssignal.h" | 118 | #include "syssignal.h" |