diff options
author | Brent Cook <bcook@openbsd.org> | 2014-12-06 18:59:25 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-12-06 18:59:25 -0600 |
commit | 976f64d932bc5fac8d18dd95feddcfb4f3782551 (patch) | |
tree | 649dc41764f1fdf66e69f24dd53eb978f6181b67 /tls | |
parent | 14f4175b67a8cd6c01955340b4e20d75e4e25708 (diff) | |
download | portable-976f64d932bc5fac8d18dd95feddcfb4f3782551.tar.gz portable-976f64d932bc5fac8d18dd95feddcfb4f3782551.tar.bz2 portable-976f64d932bc5fac8d18dd95feddcfb4f3782551.zip |
read all library versions directly from files
This makes building and testing easier because the library Makefile.am
files are use directly rather than as templates. Thanks to Wouter Clarie
for the idea.
Diffstat (limited to 'tls')
-rw-r--r-- | tls/Makefile.am (renamed from tls/Makefile.am.tpl) | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tls/Makefile.am.tpl b/tls/Makefile.am index 55461c6..7f65ea5 100644 --- a/tls/Makefile.am.tpl +++ b/tls/Makefile.am | |||
@@ -3,8 +3,9 @@ include $(top_srcdir)/Makefile.am.common | |||
3 | if ENABLE_LIBTLS | 3 | if ENABLE_LIBTLS |
4 | lib_LTLIBRARIES = libtls.la | 4 | lib_LTLIBRARIES = libtls.la |
5 | 5 | ||
6 | libtls_la_LDFLAGS = -version-info libtls-version | 6 | EXTRA_DIST = VERSION |
7 | 7 | ||
8 | libtls_la_LDFLAGS = -version-info @LIBTLS_VERSION@ | ||
8 | libtls_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS) | 9 | libtls_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS) |
9 | 10 | ||
10 | libtls_la_SOURCES = tls.c | 11 | libtls_la_SOURCES = tls.c |