diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-10-06 14:02:04 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-10-06 14:02:04 +0200 |
commit | 82a152928f820a6aeb02ef8cd9ebfa7d3bcaae48 (patch) | |
tree | 0dd1472607450fac076ef4986c654c537153a1e8 /debian/patches/multiarch_dll_search_path.patch | |
parent | 6e9c41a892ed0e0da326e0278b3221ce3f5713b8 (diff) | |
parent | ba8d09abe681600aad991f4a75e904615b7ed29f (diff) |
Merge tag 'upstream/1.0.24'debian/1.0.24-1.2
Upstream version 1.0.24
Diffstat (limited to 'debian/patches/multiarch_dll_search_path.patch')
-rw-r--r-- | debian/patches/multiarch_dll_search_path.patch | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/debian/patches/multiarch_dll_search_path.patch b/debian/patches/multiarch_dll_search_path.patch deleted file mode 100644 index 703a408..0000000 --- a/debian/patches/multiarch_dll_search_path.patch +++ /dev/null @@ -1,42 +0,0 @@ -Description: Keep /usr/lib/sane as a fallback for SANE backends - Make /usr/lib/arch_triplet/sane the default location for SANE backends, - but keep /usr/lib/sane as a fallback for now. -Author: Julien BLACHE <jblache@debian.org> - ---- a/backend/dll.c -+++ b/backend/dll.c -@@ -430,7 +430,7 @@ - - if (path) - { -- src_len = strlen (path) + strlen (STRINGIFY (LIBDIR)) + 1 + 1; -+ src_len = strlen (path) + strlen (DEB_DLL_LIBDIR) + 1 + 1; - src = malloc (src_len); - if (!src) - { -@@ -438,12 +438,11 @@ - return SANE_STATUS_NO_MEM; - } - orig_src = src; -- snprintf (src, src_len, "%s:%s", path, STRINGIFY (LIBDIR)); -+ snprintf (src, src_len, "%s:%s", path, DEB_DLL_LIBDIR); - } - else - { -- src = STRINGIFY (LIBDIR); -- src = strdup (src); -+ src = strdup (DEB_DLL_LIBDIR); - if (!src) - { - DBG (1, "load: strdup failed: %s\n", strerror (errno)); ---- a/backend/Makefile.in -+++ b/backend/Makefile.in -@@ -1868,7 +1868,7 @@ - top_build_prefix = @top_build_prefix@ - top_builddir = @top_builddir@ - top_srcdir = @top_srcdir@ --AM_CPPFLAGS = -I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include -DLIBDIR="$(libdir)/sane" -+AM_CPPFLAGS = -I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include -DLIBDIR="$(libdir)/sane" -DDEB_DLL_LIBDIR="\"$(libdir)/sane:$(prefix)/lib/sane\"" - AM_LDFLAGS = @STRICT_LDFLAGS@ - # The -rpath option is added because we are creating _LTLIBRARIES based - # on configure substitution. This causes automake to not know the |