diff options
| author | Miles Bader | 2007-07-15 04:47:46 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-07-15 04:47:46 +0000 |
| commit | 8c406a9bc42ee77fcbbb4201fe8bda855eafd832 (patch) | |
| tree | 14c8fa2e72341edd9db40b17079fd5208b1554c8 /nt | |
| parent | 9bdeb5e9bedd773cc6845bc29a98e1e2a208f1ff (diff) | |
| parent | 6f8a87c027ebd6f9cfdac5c0df97d651227bec62 (diff) | |
| download | emacs-8c406a9bc42ee77fcbbb4201fe8bda855eafd832.tar.gz emacs-8c406a9bc42ee77fcbbb4201fe8bda855eafd832.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 806-813)
- Merge from emacs--rel--22
- Update from CVS
* emacs--rel--22 (patch 51-58)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 233-236)
- Merge from emacs--devo--0
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-230
Diffstat (limited to 'nt')
| -rw-r--r-- | nt/ChangeLog | 11 | ||||
| -rw-r--r-- | nt/gmake.defs | 3 | ||||
| -rw-r--r-- | nt/inc/sys/socket.h | 3 | ||||
| -rw-r--r-- | nt/nmake.defs | 3 |
4 files changed, 17 insertions, 3 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 65f3bc7b622..df2344dc3af 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2007-07-14 Jason Rumney <jasonr@gnu.org> | ||
| 2 | |||
| 3 | * inc/sys/socket.h: Include winsock2.h and ws2tcpip.h instead | ||
| 4 | of winsock.h. | ||
| 5 | |||
| 6 | 2007-07-11 Jason Rumney <jasonr@gnu.org> | ||
| 7 | |||
| 8 | * gmake.defs (OLE32): New library to link. | ||
| 9 | |||
| 10 | * nmake.defs (OLE32): Likewise. | ||
| 11 | |||
| 1 | 2007-06-25 Jason Rumney <jasonr@gnu.org> | 12 | 2007-06-25 Jason Rumney <jasonr@gnu.org> |
| 2 | 13 | ||
| 3 | * cmdproxy.c (main): Set console codepages to "ANSI". | 14 | * cmdproxy.c (main): Set console codepages to "ANSI". |
diff --git a/nt/gmake.defs b/nt/gmake.defs index 15ec2bf0ea3..c08ca32200f 100644 --- a/nt/gmake.defs +++ b/nt/gmake.defs | |||
| @@ -176,8 +176,9 @@ MPR = -lmpr | |||
| 176 | SHELL32 = -lshell32 | 176 | SHELL32 = -lshell32 |
| 177 | USER32 = -luser32 | 177 | USER32 = -luser32 |
| 178 | WSOCK32 = -lwsock32 | 178 | WSOCK32 = -lwsock32 |
| 179 | WINMM = -lwinmm | 179 | WINMM = -lwinmm |
| 180 | WINSPOOL = -lwinspool | 180 | WINSPOOL = -lwinspool |
| 181 | OLE32 = -lole32 | ||
| 181 | 182 | ||
| 182 | ifdef NOOPT | 183 | ifdef NOOPT |
| 183 | DEBUG_CFLAGS = -DEMACSDEBUG | 184 | DEBUG_CFLAGS = -DEMACSDEBUG |
diff --git a/nt/inc/sys/socket.h b/nt/inc/sys/socket.h index 0923dd9246b..2e52c74691e 100644 --- a/nt/inc/sys/socket.h +++ b/nt/inc/sys/socket.h | |||
| @@ -51,7 +51,8 @@ Boston, MA 02110-1301, USA. */ | |||
| 51 | #define timeval ws_timeval | 51 | #define timeval ws_timeval |
| 52 | #endif | 52 | #endif |
| 53 | 53 | ||
| 54 | #include <winsock.h> | 54 | #include <winsock2.h> |
| 55 | #include <ws2tcpip.h> | ||
| 55 | 56 | ||
| 56 | /* redefine select to reference our version */ | 57 | /* redefine select to reference our version */ |
| 57 | #ifdef MUST_REDEF_SELECT | 58 | #ifdef MUST_REDEF_SELECT |
diff --git a/nt/nmake.defs b/nt/nmake.defs index 5f52bc18c62..03ae2f851fa 100644 --- a/nt/nmake.defs +++ b/nt/nmake.defs | |||
| @@ -123,8 +123,9 @@ MPR = mpr.lib | |||
| 123 | SHELL32 = shell32.lib | 123 | SHELL32 = shell32.lib |
| 124 | USER32 = user32.lib | 124 | USER32 = user32.lib |
| 125 | WSOCK32 = wsock32.lib | 125 | WSOCK32 = wsock32.lib |
| 126 | WINMM = winmm.lib | 126 | WINMM = winmm.lib |
| 127 | WINSPOOL = winspool.lib | 127 | WINSPOOL = winspool.lib |
| 128 | OLE32 = ole32.lib | ||
| 128 | 129 | ||
| 129 | !ifdef NOOPT | 130 | !ifdef NOOPT |
| 130 | DEBUG_CFLAGS = -DEMACSDEBUG | 131 | DEBUG_CFLAGS = -DEMACSDEBUG |