libsasl: add 0014_avoid_pic_overwrite.patch from Debian.
This commit is contained in:
parent
321dcac6d5
commit
2f3bf68b32
2 changed files with 28 additions and 1 deletions
27
srcpkgs/libsasl/patches/0014_avoid_pic_overwrite.patch
Normal file
27
srcpkgs/libsasl/patches/0014_avoid_pic_overwrite.patch
Normal file
|
@ -0,0 +1,27 @@
|
|||
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.
|
||||
--- cyrus-sasl2.orig/lib/Makefile.am
|
||||
+++ cyrus-sasl2/lib/Makefile.am
|
||||
@@ -80,7 +80,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 \
|
||||
--- cyrus-sasl2.orig/sasldb/Makefile.am
|
||||
+++ cyrus-sasl2/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)
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'libsasl'
|
||||
pkgname=libsasl
|
||||
version=2.1.26
|
||||
revision=1
|
||||
revision=2
|
||||
build_style=gnu-configure
|
||||
configure_args="--enable-cram --enable-digest --enable-auth-sasldb
|
||||
--enable-plain --enable-anon --enable-login --enable-gssapi --enable-ntlm
|
||||
|
|
Loading…
Reference in a new issue