aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharlie Root <root@rocinante.obtuse.com>2014-07-10 08:36:47 -0600
committerCharlie Root <root@rocinante.obtuse.com>2014-07-10 08:36:47 -0600
commitabe7bee3601b8c6ec91954f1bef23aa6c908cec6 (patch)
tree8d189f7af250a01258231ad19447fdbd11ed02fb
parentb3543f9c59ad616148915e857184e914f06c2dbc (diff)
downloadportable-abe7bee3601b8c6ec91954f1bef23aa6c908cec6.tar.gz
portable-abe7bee3601b8c6ec91954f1bef23aa6c908cec6.tar.bz2
portable-abe7bee3601b8c6ec91954f1bef23aa6c908cec6.zip
Make things build again - add some missing headers
ok bcook@
-rw-r--r--.gitignore3
-rw-r--r--crypto/Makefile.am.tpl2
-rw-r--r--include/Makefile.am7
3 files changed, 10 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 01afda2..daeedcd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -169,4 +169,5 @@ crypto/ui/
169crypto/whrlpool/ 169crypto/whrlpool/
170crypto/x509/ 170crypto/x509/
171crypto/x509v3/ 171crypto/x509v3/
172 172openbsd/
173.gitmodules
diff --git a/crypto/Makefile.am.tpl b/crypto/Makefile.am.tpl
index 6f94fdf..1aa8e8b 100644
--- a/crypto/Makefile.am.tpl
+++ b/crypto/Makefile.am.tpl
@@ -65,5 +65,7 @@ libcompat_la_SOURCES += compat/strtonum.c
65endif 65endif
66 66
67noinst_HEADERS = des/ncbc_enc.c 67noinst_HEADERS = des/ncbc_enc.c
68noinst_HEADERS += compat/thread_private.h
69noinst_HEADERS += compat/chacha_private.h
68libcrypto_la_SOURCES = 70libcrypto_la_SOURCES =
69EXTRA_libcrypto_la_SOURCES = 71EXTRA_libcrypto_la_SOURCES =
diff --git a/include/Makefile.am b/include/Makefile.am
index f2860a4..7f8cfbd 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -1,3 +1,8 @@
1SUBDIRS = openssl 1SUBDIRS = openssl
2 2
3noinst_HEADERS = pqueue.h stdlib.h string.h machine/endian.h 3noinst_HEADERS = pqueue.h
4noinst_HEADERS += stdlib.h
5noinst_HEADERS += string.h
6noinst_HEADERS += unistd.h
7noinst_HEADERS += machine/endian.h
8noinst_HEADERS += sys/types.h