From: Ruben Kerkhof Date: Tue, 30 Sep 2014 20:57:09 +0000 (+0200) Subject: polarssl: don't build empty objects X-Git-Tag: rec-3.7.0-rc1~232^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F1759%2Fhead;p=thirdparty%2Fpdns.git polarssl: don't build empty objects Fixes the following warnings on OSX: /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-havege.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-md2.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-md4.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-memory_buffer_alloc.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-memory.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-padlock.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-pkcs11.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-threading.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-havege.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-md2.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-md4.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-memory_buffer_alloc.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-memory.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-padlock.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-pkcs11.o) has no symbols /Library/Developer/CommandLineTools/usr/bin/ranlib: file: .libs/libpolarssl.a(libpolarssl_la-threading.o) has no symbols --- diff --git a/pdns/ext/polarssl-1.3.2/library/Makefile.am b/pdns/ext/polarssl-1.3.2/library/Makefile.am index 25fbd43622..e17208a4fe 100644 --- a/pdns/ext/polarssl-1.3.2/library/Makefile.am +++ b/pdns/ext/polarssl-1.3.2/library/Makefile.am @@ -1,4 +1,4 @@ noinst_LTLIBRARIES=libpolarssl.la -libpolarssl_la_SOURCES=aes.c arc4.c asn1parse.c asn1write.c base64.c bignum.c blowfish.c camellia.c certs.c cipher.c cipher_wrap.c ctr_drbg.c debug.c des.c dhm.c ecdh.c ecdsa.c ecp.c entropy.c entropy_poll.c error.c gcm.c havege.c md2.c md4.c md5.c md.c md_wrap.c memory_buffer_alloc.c memory.c net.c oid.c padlock.c pbkdf2.c pem.c pk.c pkcs11.c pkcs12.c pkcs5.c pkparse.c pk_wrap.c pkwrite.c rsa.c sha1.c sha256.c sha512.c ssl_cache.c ssl_ciphersuites.c ssl_cli.c ssl_srv.c ssl_tls.c threading.c timing.c version.c x509.c x509_create.c x509_crl.c x509_crt.c x509_csr.c x509write_crt.c x509write_csr.c xtea.c +libpolarssl_la_SOURCES=aes.c arc4.c asn1parse.c asn1write.c base64.c bignum.c blowfish.c camellia.c certs.c cipher.c cipher_wrap.c ctr_drbg.c debug.c des.c dhm.c ecdh.c ecdsa.c ecp.c entropy.c entropy_poll.c error.c gcm.c md5.c md.c md_wrap.c net.c oid.c pbkdf2.c pem.c pk.c pkcs12.c pkcs5.c pkparse.c pk_wrap.c pkwrite.c rsa.c sha1.c sha256.c sha512.c ssl_cache.c ssl_ciphersuites.c ssl_cli.c ssl_srv.c ssl_tls.c timing.c version.c x509.c x509_create.c x509_crl.c x509_crt.c x509_csr.c x509write_crt.c x509write_csr.c xtea.c libpolarssl_la_CPPFLAGS=-I$(srcdir)/../include -D_FILE_OFFSET_BITS=64 -Wall -W -Wdeclaration-after-statement