This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Winsock problem


I'm having a problem with the Winsock stuff in g++ -- perhaps someone could
tell me what I'm doing wrong.

The following code snipet compiles/links fine as a 'C' file, but not as a
'CPP' or 'CC' file :

==

#define         Win32_Winsock		// emulate Winsock 1.1
#include        <windows.h>
#include        <stdio.h>

main()
{
        SOCKET  sfh;
        printf ("cygnus rules!\n");
        exit (0);
}

bash> gcc -o test.exe test.c		; works fine, but

bash> gcc -o test.exe test.cpp		; fails miserably


== 

What's the diff? Obviously there's something amiss with the c++ includes, or
just my setup, eh?

--
Cameron S. Thomas
csthomas@egsoftware.com
e.g. Software, Inc.
Tel: (503) 294-7025 x233
Fax: (503) 294-7130
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]