diff options
| author | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-12-11 21:00:55 +0900 |
|---|---|---|
| committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-12-11 22:05:28 +0900 |
| commit | b10ff615ebb1ceca423a8ad34792aa7952b8ee3a (patch) | |
| tree | d85c467707f44fd4be6ca31bc08f3ead368b1d13 /ssl | |
| parent | a3a03842f68732cc08c0241c40cf99fd11a8a3a4 (diff) | |
| download | portable-b10ff615ebb1ceca423a8ad34792aa7952b8ee3a.tar.gz portable-b10ff615ebb1ceca423a8ad34792aa7952b8ee3a.tar.bz2 portable-b10ff615ebb1ceca423a8ad34792aa7952b8ee3a.zip | |
Add crypto/bytestring with autotools
Diffstat (limited to 'ssl')
| -rw-r--r-- | ssl/Makefile.am | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/ssl/Makefile.am b/ssl/Makefile.am index d12928e..8a778ca 100644 --- a/ssl/Makefile.am +++ b/ssl/Makefile.am | |||
| @@ -1,7 +1,9 @@ | |||
| 1 | include $(top_srcdir)/Makefile.am.common | 1 | include $(top_srcdir)/Makefile.am.common |
| 2 | 2 | ||
| 3 | noinst_LTLIBRARIES = libbs.la | ||
| 4 | |||
| 3 | if ENABLE_LIBTLS_ONLY | 5 | if ENABLE_LIBTLS_ONLY |
| 4 | noinst_LTLIBRARIES = libssl.la | 6 | noinst_LTLIBRARIES += libssl.la |
| 5 | else | 7 | else |
| 6 | lib_LTLIBRARIES = libssl.la | 8 | lib_LTLIBRARIES = libssl.la |
| 7 | endif | 9 | endif |
| @@ -21,11 +23,14 @@ libssl_la_objects.mk: Makefile | |||
| 21 | 23 | ||
| 22 | libssl_la_LDFLAGS = -version-info @LIBSSL_VERSION@ -no-undefined -export-symbols $(top_srcdir)/ssl/ssl.sym | 24 | libssl_la_LDFLAGS = -version-info @LIBSSL_VERSION@ -no-undefined -export-symbols $(top_srcdir)/ssl/ssl.sym |
| 23 | libssl_la_LIBADD = $(abs_top_builddir)/crypto/libcrypto.la $(PLATFORM_LDADD) | 25 | libssl_la_LIBADD = $(abs_top_builddir)/crypto/libcrypto.la $(PLATFORM_LDADD) |
| 26 | libssl_la_LIBADD += libbs.la | ||
| 27 | |||
| 28 | libbs_la_SOURCES = bs_ber.c | ||
| 29 | libbs_la_SOURCES += bs_cbb.c | ||
| 30 | libbs_la_SOURCES += bs_cbs.c | ||
| 31 | noinst_HEADERS = bytestring.h | ||
| 24 | 32 | ||
| 25 | libssl_la_SOURCES = bio_ssl.c | 33 | libssl_la_SOURCES = bio_ssl.c |
| 26 | libssl_la_SOURCES += bs_ber.c | ||
| 27 | libssl_la_SOURCES += bs_cbb.c | ||
| 28 | libssl_la_SOURCES += bs_cbs.c | ||
| 29 | libssl_la_SOURCES += d1_both.c | 34 | libssl_la_SOURCES += d1_both.c |
| 30 | libssl_la_SOURCES += d1_lib.c | 35 | libssl_la_SOURCES += d1_lib.c |
| 31 | libssl_la_SOURCES += d1_pkt.c | 36 | libssl_la_SOURCES += d1_pkt.c |
| @@ -75,7 +80,6 @@ libssl_la_SOURCES += tls13_record.c | |||
| 75 | libssl_la_SOURCES += tls13_record_layer.c | 80 | libssl_la_SOURCES += tls13_record_layer.c |
| 76 | libssl_la_SOURCES += tls13_server.c | 81 | libssl_la_SOURCES += tls13_server.c |
| 77 | 82 | ||
| 78 | noinst_HEADERS = bytestring.h | ||
| 79 | noinst_HEADERS += srtp.h | 83 | noinst_HEADERS += srtp.h |
| 80 | noinst_HEADERS += dtls_locl.h | 84 | noinst_HEADERS += dtls_locl.h |
| 81 | noinst_HEADERS += ssl_locl.h | 85 | noinst_HEADERS += ssl_locl.h |
