aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-08-04 23:05:32 +0000
committerGerald Combs <gerald@wireshark.org>2008-08-04 23:05:32 +0000
commit7d8e29f50173a90dbf9e4dafe7d16c0dea2724b9 (patch)
treee075825ae64f0b14cb8dd595f7d0eb13744e9a56 /wsutil
parentda85c3dfab63630c4370d8d4c9104d4a6c2550b2 (diff)
From Pascal Quantin via bug 2719: Fix support for Microsoft Visual C++ 2008.
From me: Instead of adding adns_config.h, place it a custom adns package in wireshark-win32-libs. Update tools/win32-setup.sh accordingly. Split the MSVC2008EE variant into MSVC2008 and MSVC2008EE, similar to MSVC2005 and MSVC2005EE. We have to worry about vcredist_x86.exe in both cases. Add Pascal to AUTHORS. Update the Developer's Guide. svn path=/trunk/; revision=25921
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/Makefile.nmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/wsutil/Makefile.nmake b/wsutil/Makefile.nmake
index e57355a342..01a91325df 100644
--- a/wsutil/Makefile.nmake
+++ b/wsutil/Makefile.nmake
@@ -36,7 +36,7 @@ libwsutil.dll : $(OBJECTS) libwsutil.def ..\image\libwsutil.res
/IMPLIB:libwsutil.lib \
..\image\libwsutil.res \
$(OBJECTS) $(libwsutil_LIBS)
-!IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
+!IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20" || "$(MSVC_VARIANT)" == "MSVC2008EE"
mt.exe -nologo -manifest "libwsutil.dll.manifest" -outputresource:libwsutil.dll;2
!ENDIF