diff options
author | Brent Cook <busterb@gmail.com> | 2014-11-19 07:43:07 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-12-03 17:07:17 -0600 |
commit | cccdd689e39b51af02b156229e5236a2a69dcdcb (patch) | |
tree | 79a77dcdc785a109aaaeb4a2a47507933525e47b /include/Makefile.am | |
parent | 1bbde19a7c0db8d25fb496dea3e05e3dbc0bbeaf (diff) | |
download | portable-cccdd689e39b51af02b156229e5236a2a69dcdcb.tar.gz portable-cccdd689e39b51af02b156229e5236a2a69dcdcb.tar.bz2 portable-cccdd689e39b51af02b156229e5236a2a69dcdcb.zip |
add minimal winsock->BSD networking header shims
also add license header to existing shims
Diffstat (limited to 'include/Makefile.am')
-rw-r--r-- | include/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 4811145..543713e 100644 --- a/include/Makefile.am +++ b/include/Makefile.am | |||
@@ -1,11 +1,26 @@ | |||
1 | SUBDIRS = openssl | 1 | SUBDIRS = openssl |
2 | 2 | ||
3 | noinst_HEADERS = err.h | 3 | noinst_HEADERS = err.h |
4 | noinst_HEADERS += netdb.h | ||
5 | noinst_HEADERS += poll.h | ||
4 | noinst_HEADERS += pqueue.h | 6 | noinst_HEADERS += pqueue.h |
5 | noinst_HEADERS += stdio.h | 7 | noinst_HEADERS += stdio.h |
6 | noinst_HEADERS += stdlib.h | 8 | noinst_HEADERS += stdlib.h |
7 | noinst_HEADERS += string.h | 9 | noinst_HEADERS += string.h |
10 | noinst_HEADERS += syslog.h | ||
8 | noinst_HEADERS += unistd.h | 11 | noinst_HEADERS += unistd.h |
12 | noinst_HEADERS += win32netcompat.h | ||
13 | |||
14 | noinst_HEADERS += arpa/inet.h | ||
15 | |||
9 | noinst_HEADERS += machine/endian.h | 16 | noinst_HEADERS += machine/endian.h |
17 | |||
18 | noinst_HEADERS += netinet/in.h | ||
19 | noinst_HEADERS += netinet/tcp.h | ||
20 | |||
21 | noinst_HEADERS += sys/ioctl.h | ||
10 | noinst_HEADERS += sys/mman.h | 22 | noinst_HEADERS += sys/mman.h |
23 | noinst_HEADERS += sys/select.h | ||
24 | noinst_HEADERS += sys/socket.h | ||
25 | noinst_HEADERS += sys/times.h | ||
11 | noinst_HEADERS += sys/types.h | 26 | noinst_HEADERS += sys/types.h |