Here’s your output:
Making plugin.c
(using python)
sed -e
s/@[email protected]/xxx/ -e s/@[email protected]/0,6,5,0/ -e s/@RC
[email protected]/0,99,9,0/
-e s/@[email protected]/0.6.5.0/ -e s/@[email protected]/xxx/ -e s/@
[email protected]/0.99.9"-xxx-yyy-01"/
-e s/@[email protected]/MSVC2005EE/ < plugin.rc.in >
xxx.rc
rc /r xxx.rc
xxx.rc(5)
: error RC2167 : unrecognized VERSIONINFO field; BEGIN or comma expected
Here’s the output from a Wireshark
built-in dissector, namely agentx:
Making plugin.c
(using python)
sed -e
s/@[email protected]/agentx/ -e s/@[email protected]/0,0,1,0/ -e s/
@[email protected]/0,99,9,0/
-e s/@[email protected]/0.0.1.0/ -e s/@[email protected]/agentx/
-e
s/@[email protected]/0.99.9/ -e s/@[email protected]/MSVC6/ < plugin.rc.in
> agentx.rc
rc /r
agentx
I think this is your problem – the
last line for the agentx plugin does not have the “.rc” whereas
yours does (i.e., “rc /r xxx.rc” vs. “rc /r
agentx”).
- Chris
From:
[email protected]
[mailto:[email protected]] On
Behalf Of A Verma
Sent: Thursday, February 28, 2008
6:21 AM
To: Developer support list for
Wireshark
Subject: Re: [Wireshark-dev] Error
compiling a customdllpluginforWireshark0.99.7
I replaced the file and did the following:
But I get the same errors! back to square one! :-(
On 2/28/08, Anders
Broman <[email protected]>
wrote:
I think "plugin.rc.in" was changed
try to copy that file from another plugin in the same release.
[snip]