OpenBSD port related changes.
This commit is contained in:
parent
dd8d2acd3c
commit
ef9c9ab9b6
3 changed files with 11 additions and 0 deletions
|
@ -114,6 +114,10 @@ else
|
|||
;;
|
||||
ipv4:freebsd*) sysdesc=bsd
|
||||
;;
|
||||
ipv6:openbsd*) sysdesc=bsd-v6
|
||||
;;
|
||||
ipv4:openbsd*) sysdesc=bsd
|
||||
;;
|
||||
*) AC_MSG_ERROR([Cannot determine correct system configuration. Please use --with-sysconfig to set it manually.])
|
||||
;;
|
||||
esac
|
||||
|
|
|
@ -54,3 +54,7 @@
|
|||
|
||||
/* struct sockaddr_in(6) */
|
||||
#undef HAVE_SIN_LEN
|
||||
|
||||
/* We have stdint.h */
|
||||
#undef HAVE_STDINT_H
|
||||
|
||||
|
|
|
@ -13,5 +13,8 @@
|
|||
|
||||
#include <sys/types.h>
|
||||
#include <netinet/in.h>
|
||||
#ifdef HAVE_STDINT_H
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue