diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-12-01 19:03:16 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-12-01 19:03:16 +0000 |
commit | ed23abe17e99d3952cae907c8022bbb6413cf7eb (patch) | |
tree | 0eefb7ed1adb97308767364332186cec07052c8d /user/cyrus-sasl/cyrus-sasl-2.1.25-avoid_pic_overwrite.patch | |
parent | 3dc61fbde70d4f1b62d956f66d37d514668663dd (diff) | |
download | packages-ed23abe17e99d3952cae907c8022bbb6413cf7eb.tar.gz packages-ed23abe17e99d3952cae907c8022bbb6413cf7eb.tar.bz2 packages-ed23abe17e99d3952cae907c8022bbb6413cf7eb.tar.xz packages-ed23abe17e99d3952cae907c8022bbb6413cf7eb.zip |
user/cyrus-sasl: bugfix bump to 2.1.27
Diffstat (limited to 'user/cyrus-sasl/cyrus-sasl-2.1.25-avoid_pic_overwrite.patch')
-rw-r--r-- | user/cyrus-sasl/cyrus-sasl-2.1.25-avoid_pic_overwrite.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/user/cyrus-sasl/cyrus-sasl-2.1.25-avoid_pic_overwrite.patch b/user/cyrus-sasl/cyrus-sasl-2.1.25-avoid_pic_overwrite.patch deleted file mode 100644 index 2e5b1750d..000000000 --- a/user/cyrus-sasl/cyrus-sasl-2.1.25-avoid_pic_overwrite.patch +++ /dev/null @@ -1,27 +0,0 @@ -Author: Fabian Fagerholm <fabbe@debian.org> -Description: This patch makes sure the non-PIC version of libsasldb.a, which -is created out of non-PIC objects, is not going to overwrite the PIC version, -which is created out of PIC objects. The PIC version is placed in .libs, and -the non-PIC version in the current directory. This ensures that both non-PIC -and PIC versions are available in the correct locations. ---- a/lib/Makefile.am -+++ b/lib/Makefile.am -@@ -78,7 +78,7 @@ endif - - libsasl2.a: libsasl2.la $(SASL_STATIC_OBJS) - @echo adding static plugins and dependencies -- $(AR) cru .libs/$@ $(SASL_STATIC_OBJS) -+ $(AR) cru $@ $(SASL_STATIC_OBJS) - @for i in ./libsasl2.la ../sasldb/libsasldb.la ../plugins/lib*.la; do \ - if test ! -f $$i; then continue; fi; . $$i; \ - for j in $$dependency_libs foo; do \ ---- a/sasldb/Makefile.am -+++ b/sasldb/Makefile.am -@@ -63,6 +63,6 @@ libsasldb_a_SOURCES = - EXTRA_libsasldb_a_SOURCES = - - libsasldb.a: libsasldb.la $(SASL_DB_BACKEND_STATIC) -- $(AR) cru .libs/$@ $(SASL_DB_BACKEND_STATIC) -+ $(AR) cru $@ $(SASL_DB_BACKEND_STATIC) - - |