diff options
author | unknown <jimw@mysql.com> | 2005-08-11 12:26:17 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-08-11 12:26:17 -0700 |
commit | 8ee51b0541d7cc65385c2b11da4f3e79a1df55e6 (patch) | |
tree | 49969728710e8970c30af9e9005906baded7e20c /extra/yassl | |
parent | 6861b1bf9b804f1dd8490355bb2dc1628a04bf36 (diff) | |
download | mariadb-git-8ee51b0541d7cc65385c2b11da4f3e79a1df55e6.tar.gz |
Build YASSL libraries with libtool so correct PIC settings are used
automatically. (Bug #12324)
extra/yassl/src/Makefile.am:
Build library with libtool
extra/yassl/taocrypt/src/Makefile.am:
Build library with libtool
Diffstat (limited to 'extra/yassl')
-rw-r--r-- | extra/yassl/src/Makefile.am | 4 | ||||
-rw-r--r-- | extra/yassl/taocrypt/src/Makefile.am | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/extra/yassl/src/Makefile.am b/extra/yassl/src/Makefile.am index 4ebb9a2d862..83397e24168 100644 --- a/extra/yassl/src/Makefile.am +++ b/extra/yassl/src/Makefile.am @@ -1,7 +1,7 @@ INCLUDES = -I../include -I../taocrypt/include -I../mySTL -noinst_LIBRARIES = libyassl.a -libyassl_a_SOURCES = buffer.cpp cert_wrapper.cpp crypto_wrapper.cpp \ +noinst_LTLIBRARIES = libyassl.la +libyassl_la_SOURCES = buffer.cpp cert_wrapper.cpp crypto_wrapper.cpp \ handshake.cpp lock.cpp log.cpp socket_wrapper.cpp ssl.cpp \ template_instnt.cpp timer.cpp yassl_imp.cpp yassl_error.cpp yassl_int.cpp EXTRA_DIST = ../include/*.hpp ../include/openssl/*.h diff --git a/extra/yassl/taocrypt/src/Makefile.am b/extra/yassl/taocrypt/src/Makefile.am index 5bf45074a98..4549c218d87 100644 --- a/extra/yassl/taocrypt/src/Makefile.am +++ b/extra/yassl/taocrypt/src/Makefile.am @@ -1,7 +1,7 @@ INCLUDES = -I../include -I../../mySTL -noinst_LIBRARIES = libtaocrypt.a -libtaocrypt_a_SOURCES = aes.cpp aestables.cpp algebra.cpp arc4.cpp asn.cpp \ +noinst_LTLIBRARIES = libtaocrypt.la +libtaocrypt_la_SOURCES = aes.cpp aestables.cpp algebra.cpp arc4.cpp asn.cpp \ coding.cpp dh.cpp des.cpp dsa.cpp file.cpp hash.cpp integer.cpp \ md2.cpp md5.cpp misc.cpp random.cpp ripemd.cpp rsa.cpp sha.cpp \ template_instnt.cpp |