aboutsummaryrefslogtreecommitdiff
path: root/tls/Makefile.am
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2018-02-25 01:59:39 +0900
committerkinichiro <kinichiro.inoguchi@gmail.com>2018-02-25 21:56:05 +0900
commit3681d02253d29229e265720984ce81a35206de4c (patch)
tree95590bed234fb09e40e14feb5cdb6c0120f07334 /tls/Makefile.am
parent47781e69e2946011ea7bd0723e98a2fedff88980 (diff)
downloadportable-3681d02253d29229e265720984ce81a35206de4c.tar.gz
portable-3681d02253d29229e265720984ce81a35206de4c.tar.bz2
portable-3681d02253d29229e265720984ce81a35206de4c.zip
Add compat bits for libtls on Windows
Diffstat (limited to 'tls/Makefile.am')
-rw-r--r--tls/Makefile.am7
1 files changed, 7 insertions, 0 deletions
diff --git a/tls/Makefile.am b/tls/Makefile.am
index bfe9571..58c0344 100644
--- a/tls/Makefile.am
+++ b/tls/Makefile.am
@@ -30,3 +30,10 @@ libtls_la_SOURCES += tls_peer.c
30libtls_la_SOURCES += tls_util.c 30libtls_la_SOURCES += tls_util.c
31libtls_la_SOURCES += tls_verify.c 31libtls_la_SOURCES += tls_verify.c
32noinst_HEADERS = tls_internal.h 32noinst_HEADERS = tls_internal.h
33
34if HOST_WIN
35libtls_la_SOURCES += compat/ftruncate.c
36libtls_la_SOURCES += compat/getuid.c
37libtls_la_SOURCES += compat/pread.c
38libtls_la_SOURCES += compat/pwrite.c
39endif