diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-06-02 06:21:14 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-06-02 06:21:14 +0000 |
commit | 14ab278788649dda5708e23c012b27f79f58333a (patch) | |
tree | d0c705c84de2ea66679b6ae6286d74fe3060a46d /Makefile.nmake | |
parent | 89a74629b27c4a462cabac80a3170fec156ad1b8 (diff) | |
download | wireshark-14ab278788649dda5708e23c012b27f79f58333a.tar.gz wireshark-14ab278788649dda5708e23c012b27f79f58333a.tar.bz2 wireshark-14ab278788649dda5708e23c012b27f79f58333a.zip |
Windows and the MSVC++ 6.0 library don't have "strptime()", so pull in
the glibc "strptime()" (modified so it doesn't require the rest of
glibc), set up the configure script to check for it, and set up
Makefile.am and Makefile.nmake to use it.
Get rid of NEED_MKSTEMP - nothing uses it.
svn path=/trunk/; revision=3500
Diffstat (limited to 'Makefile.nmake')
-rw-r--r-- | Makefile.nmake | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.nmake b/Makefile.nmake index fe62a2eb16..2f9533ddbd 100644 --- a/Makefile.nmake +++ b/Makefile.nmake @@ -1,7 +1,7 @@ ## Makefile for building ethereal.exe with Microsoft C and nmake ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake # -# $Id: Makefile.nmake,v 1.112 2001/05/30 18:52:36 guy Exp $ +# $Id: Makefile.nmake,v 1.113 2001/06/02 06:21:13 guy Exp $ include config.nmake include <win32.mak> @@ -245,7 +245,8 @@ dftest_OBJECTS = \ EXTRA_OBJECTS = \ # snprintf.obj \ # strerror.obj \ - mkstemp.obj + mkstemp.obj \ + strptime.obj ethereal_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \ gtk\libui.lib epan\ethereal.lib \ |