Ethereal-dev: Re: [Ethereal-dev] Windows build of 0.8.19 fails - missing image/mergecap.rc.in

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Gilbert Ramirez <gram@xxxxxxxxxx>
Date: Mon, 23 Jul 2001 14:28:32 -0400
On Mon, Jul 23, 2001 at 06:58:56PM +0100, Neil Piercy wrote:
> [Please CC me as I'm not subscribed]
> 
> Attempt to build 0.8.19 under VC++ v6 using the makefile.nmake fails when trying
> to nmake in the image subdirectory due to the problem described above - or what
> have I missed something (quick scan of archives for this month didn't seem to
> have this listed) ?

Sorry; I forgot to put that file in the list of files that
gets packaged into the distribution. Here's that file.

--gilbert
#include "winver.h"

ETHEREAL_ICON		ICON			"ethereal.ico"

VS_VERSION_INFO VERSIONINFO
 FILEVERSION @RC_VERSION@,0
 PRODUCTVERSION @RC_VERSION@,0
 FILEFLAGSMASK 0x0L
#ifdef _DEBUG
 FILEFLAGS 0x3L
#else
 FILEFLAGS 0x2L
#endif
 FILEOS 0x4L
 FILETYPE 0x1L
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904b0"
        BEGIN
            VALUE "CompanyName", "The Ethereal developer community\0"
            VALUE "FileDescription", "Mergecap\0"
            VALUE "FileVersion", "@VERSION@\0"
            VALUE "InternalName", "Mergecap @VERSION@\0"
            VALUE "LegalCopyright", "Copyright © 2000 Gerald Combs <gerald@xxxxxxxxxxxx>, Gilbert Ramirez <gram@xxxxxxxxxx> and others\0"
            VALUE "OriginalFilename", "Mergecap.exe\0"
            VALUE "ProductName", "Mergecap\0"
            VALUE "ProductVersion", "@VERSION@\0"
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x409, 1200
    END
END