The thing to do in dealing with long lists of errors (such as the list that confronts you) is to deal with the very first error. Often, when that first error is fixed, the rest just disappear.
The first error is:
C:\Perl\bin\Remote-Connection\afxv_w32.h(178) : error C2371: 'HKEY' :
+redefinition; different basic types C:\Program Files\Microsoft Visual
+ Studio 8\VC\PlatformSDK\include\windef.h(246) : see declaration of '
+HKEY'
It looks to me that, at line 178 of C:\Perl\bin\Remote-Connection\afxv_w32.h, HKEY is being redefined, and your compiler is upset about that. So ... try to fix that first.
One thing I've just noticed from your first post in this thread is that you've assigned
LD => '$(CC)'. I think that's rather unusual for a Microsoft compiler. Normally I'm used to seeing
link assigned to
LD. I don't know much about C++, and I don't think this has anything to do with the immediate problem, but it's something to bear in mind if you experience linking errors later on.
Cheers,
Rob
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.