Recently I was trying to compile connectsock.c from Internetworking With TCP/IP Volume III: Client-Server Programming and Applications, Linux/POSIX Socket Version (with D. Stevens), 2000. 0-13-032071-4
Compile Error
|
1 2 |
connectsock.c: In function connectsock: connectsock.c:52:28: error: struct hostent has no member named h_addr |
Solution? Modify the Make file!
Before:
|
1 2 |
DEFS = CFLAGS = -W -pedantic -ansi -g ${DEFS} ${INCLUDE} |
After:
|
1 2 |
DEFS = CFLAGS =-W-pedantic-ansi-g $ {DEFS} $ {INCLUDE}-D_GNU_SOURCE |