|
Re: LibSocket help for DJGPP
I have legacy app that does TCP/IP (SOCK_STREAM) with DJGPP/wsock in
DOS. Four years later I have been asked to update it.
However I can no longer find version of DJGPP that builds wsock.
So I learned about libsocket. I am trying to build libsocket, and as
yet do not know if I can use just the .a file or will have to compile
stuff. This is the error I am getting with both wsock and libsocket.
For TCP/IP with DJGPP and DOS, is libsocket the current only solution?
thank you,
tom friedel
C:\friedel\LIBSOC~1\contrib\ls080\test\lowlevel\sockvxd>make -k
gcc -I../../../include -c create.c
create.c: In function `main':
create.c:40: can't find a register in class `AREG' while reloading
`asm'
make.exe: *** [create.o] Error 1
gcc -I../../../include -c destroy.c
destroy.c: In function `main':
destroy.c:40: can't find a register in class `AREG' while reloading
`asm'
make.exe: *** [destroy.o] Error 1
gcc -I../../../include -c create2.c
create2.c: In function `main':
create2.c:30: can't find a register in class `AREG' while reloading
`asm'
make.exe: *** [create2.o] Error 1
make.exe: Target `default' not remade because of errors.
|