Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-bugs: [Wireshark-bugs] [Bug 5378] New: missing path seperator in config.nmake

Date: Tue, 9 Nov 2010 14:47:23 -0800 (PST)
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5378

           Summary: missing path seperator in config.nmake
           Product: Wireshark
           Version: 1.4.1
          Platform: Other
        OS/Version: Windows XP
            Status: NEW
          Severity: Trivial
          Priority: Low
         Component: Wireshark
        AssignedTo: wireshark-bugs@xxxxxxxxxxxxx
        ReportedBy: michael.s.wells@xxxxxxxx


Build Information:
Version 1.4.1-MLRS-SYSBUS

Copyright 1998-2010 Gerald Combs <gerald@xxxxxxxxxxxxx> and contributors.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Compiled with GTK+ 2.16.6, (32-bit) with GLib 2.22.4, with WinPcap (version
unknown), with libz 1.2.3, without POSIX capabilities, without libpcre, with
SMI
0.4.8, with c-ares 1.7.1, with Lua 5.1, without Python, with GnuTLS 2.8.5, with
Gcrypt 1.4.5, with MIT Kerberos, with GeoIP, with PortAudio V19-devel (built
Nov
 9 2010), with AirPcap.

Running on Windows XP Service Pack 3, build 2600, without WinPcap, GnuTLS
2.8.5,
Gcrypt 1.4.5, without AirPcap.

Built using Microsoft Visual C++ 10.0 build 30319

Wireshark is Open Source Software released under the GNU General Public
License.

Check the man page and http://www.wireshark.org for more information.
--
1) I am using the files from wireshark-1.4.1.tar.bz2 and Visual Studio 2010 to
build a binary package under Windows.

2) Whilst executing 'nmake -f makefile.nmake packaging' I got the following
error:

IF YOU GET AN ERROR HERE, check the MSVC_VARIANT setting in config.nmake:
MSVC2005 vs. MSVC2005EE! (wireshark.nsi:437)
File: "C:\Program Files\Microsoft Visual Studio
10.0\VC\redist\x86\Microsoft.VC100.CRT*.*" -> no files found.

The problem is in the config.nmake file ~line 891: missing '\' before '*.*'

3) I made the following change locally from:

!ELSEIF "$(MSVC_VARIANT)" == "MSVC2010"
MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio
10.0\VC\redist\$(TARGET_MACHINE)\Microsoft.VC100.CRT*.*

To:

!ELSEIF "$(MSVC_VARIANT)" == "MSVC2010"
MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio
10.0\VC\redist\$(TARGET_MACHINE)\Microsoft.VC100.CRT\*.*

4) Step 2 no longer generates an error and build completes.

5) I looked at the latest version of the file (config.nmake) and it is still
missing the path seperator.

-- 
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.