diff options
| author | Geoff Voelker | 1997-09-03 00:19:12 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1997-09-03 00:19:12 +0000 |
| commit | 90eef3d95b3d492f0324550e0cab48d9e513a1c4 (patch) | |
| tree | 927b8c169a4f316277b6dae3685b84af604e4c65 /lib-src/makefile.nt | |
| parent | d234707dbbe46b56bf45cfdaa3558c35b6219d9a (diff) | |
| download | emacs-90eef3d95b3d492f0324550e0cab48d9e513a1c4.tar.gz emacs-90eef3d95b3d492f0324550e0cab48d9e513a1c4.zip | |
(movemail.exe): Link wsock32.lib before LIBS.
Diffstat (limited to 'lib-src/makefile.nt')
| -rw-r--r-- | lib-src/makefile.nt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib-src/makefile.nt b/lib-src/makefile.nt index d1bda95ca74..e0076920f67 100644 --- a/lib-src/makefile.nt +++ b/lib-src/makefile.nt | |||
| @@ -72,7 +72,8 @@ MOVEMAILOBJS = $(BLD)\movemail.obj \ | |||
| 72 | $(GETOPTOBJS) | 72 | $(GETOPTOBJS) |
| 73 | 73 | ||
| 74 | $(BLD)\movemail.exe: $(MOVEMAILOBJS) getopt.h | 74 | $(BLD)\movemail.exe: $(MOVEMAILOBJS) getopt.h |
| 75 | $(LINK) -out:$@ $(LINK_FLAGS) -debug:FULL $(MOVEMAILOBJS) $(LIBS) wsock32.lib | 75 | # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib |
| 76 | $(LINK) -out:$@ $(LINK_FLAGS) -debug:FULL $(MOVEMAILOBJS) wsock32.lib $(LIBS) | ||
| 76 | 77 | ||
| 77 | ETAGSOBJ = $(BLD)\etags.obj \ | 78 | ETAGSOBJ = $(BLD)\etags.obj \ |
| 78 | $(BLD)\getopt.obj \ | 79 | $(BLD)\getopt.obj \ |