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 /crypto | |
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 'crypto')
-rw-r--r-- | crypto/Makefile.am (renamed from crypto/Makefile.am.tpl) | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/Makefile.am.tpl b/crypto/Makefile.am index 07a4fc6..39b143d 100644 --- a/crypto/Makefile.am.tpl +++ b/crypto/Makefile.am | |||
@@ -6,8 +6,10 @@ AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes | |||
6 | 6 | ||
7 | lib_LTLIBRARIES = libcrypto.la | 7 | lib_LTLIBRARIES = libcrypto.la |
8 | 8 | ||
9 | EXTRA_DIST = VERSION | ||
10 | |||
11 | libcrypto_la_LDFLAGS = -version-info @LIBCRYPTO_VERSION@ | ||
9 | libcrypto_la_LIBADD = libcompat.la libcompatnoopt.la | 12 | libcrypto_la_LIBADD = libcompat.la libcompatnoopt.la |
10 | libcrypto_la_LDFLAGS = -version-info libcrypto-version | ||
11 | libcrypto_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS) -DOPENSSL_NO_HW_PADLOCK | 13 | libcrypto_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS) -DOPENSSL_NO_HW_PADLOCK |
12 | 14 | ||
13 | noinst_LTLIBRARIES = libcompat.la libcompatnoopt.la | 15 | noinst_LTLIBRARIES = libcompat.la libcompatnoopt.la |