diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-09-20 04:16:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-09-20 04:16:42 +0000 |
commit | 8af3de68175a33a319387ebfb0d0160f7fe70f23 (patch) | |
tree | 930c67a8cbc04f3e859a25957ab185ea2b761603 /sys-libs/gdbm/files | |
parent | x86 stable wrt bug #382225 (diff) | |
download | historical-8af3de68175a33a319387ebfb0d0160f7fe70f23.tar.gz historical-8af3de68175a33a319387ebfb0d0160f7fe70f23.tar.bz2 historical-8af3de68175a33a319387ebfb0d0160f7fe70f23.zip |
Add patch from upstream so gdbm_compat links against gdbm #383743 by Alexandre Rostovtsev.
Package-Manager: portage-2.2.0_alpha58/cvs/Linux x86_64
Diffstat (limited to 'sys-libs/gdbm/files')
-rw-r--r-- | sys-libs/gdbm/files/gdbm-1.9.1-compat-link.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sys-libs/gdbm/files/gdbm-1.9.1-compat-link.patch b/sys-libs/gdbm/files/gdbm-1.9.1-compat-link.patch new file mode 100644 index 000000000000..bc445294eb3a --- /dev/null +++ b/sys-libs/gdbm/files/gdbm-1.9.1-compat-link.patch @@ -0,0 +1,24 @@ +fix from upstream +https://bugs.gentoo.org/383743 + +From ae9ea0011da4ba01e5639611d61c442af8d42817 Mon Sep 17 00:00:00 2001 +From: Sergey Poznyakoff <gray@gnu.org.ua> +Date: Sun, 14 Aug 2011 20:17:54 +0000 +Subject: * compat/Makefile.am (libgdbm_compat_la_LIBADD): Link against libgdbm. + +2011-08-14 Sergey Poznyakoff <gray@gnu.org.ua> + + * compat/Makefile.am (libgdbm_compat_la_LIBADD): Link against + libgdbm. Suggested by Adam Sampson. + +--- a/compat/Makefile.in ++++ b/compat/Makefile.in +@@ -23,7 +23,7 @@ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" + LTLIBRARIES = $(lib_LTLIBRARIES) +-libgdbm_compat_la_LIBADD = ++libgdbm_compat_la_LIBADD = ../src/libgdbm.la + am__objects_1 = dbminit.lo delete.lo fetch.lo store.lo seq.lo close.lo + am__objects_2 = dbmopen.lo dbmdelete.lo dbmerr.lo dbmfetch.lo \ + dbmstore.lo dbmseq.lo dbmclose.lo dbmdirfno.lo dbmpagfno.lo \ |