Removed annoying check on netinet/ip.h for OpenBSD
I prefer to remove the check rather than to add the solution used
by Wine as we don't care about the associated define:
AC_CHECK_HEADERS([ \
...
netinet/ip.h \
netinet/tcp.h \
...
],,,[
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
])