https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2719
--- Comment #3 from Pascal Quantin <pascal.quantin@xxxxxxxxx> 2008-07-18 23:25:45 PDT ---
I have the same issue with the file open dialog when compiling wireshark 1.0.99
or 1.0.2 with MSVC2008EE. I had not noticed the issue yet :(
For the xcopy thing, I addressed the issue by adding wildcards:
--- Makefile.nmake (r�vision 25757)
+++ Makefile.nmake (copie de travail)
@@ -875,7 +875,7 @@
install-generated-files:
set copycmd=/y
!IF "$(MSVC_VARIANT)" == "MSVC2008EE"
- xcopy "$(MSVCR_DLL)" $(INSTALL_DIR)
+ xcopy "$(MSVCR_DLL)" $(INSTALL_DIR)\*.*
!ENDIF
if not exist $(INSTALL_DIR) mkdir $(INSTALL_DIR)
!IFDEF ENABLE_LIBWIRESHARK
For adns, I did the same change + I changed the inclusion of afxres.h in
adns_dll.rc file by the inclusion of windows.h as afxres.h is not part of
MSVC2008EE distribution (no MFC support).
--
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.