All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pete Zaitcev <zaitcev@redhat.com>
To: Jeff Garzik <jeff@garzik.org>
Cc: Project Hail List <hail-devel@vger.kernel.org>
Subject: [Patch 1/1] CLD: fix crash in __mutex_get_max (libdb-4.7.so) on F13
Date: Sun, 29 Nov 2009 18:17:44 -0700	[thread overview]
Message-ID: <20091129181744.578f4b20@redhat.com> (raw)

Fedora 13 comes with db4.8 and apparently the compat-db4.7 is bust.
Let us link with 4.8 as a workaround.

Signed-Off-By: Pete Zaitcev <zaitcev@redhat.com>

---
 configure.ac |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Not sure how safe or desirable this is, but it seems to work.

commit 77e89dfc8f0a9296ebfb02d5ca34d48f083df50c
Author: Master <zaitcev@hitlain.zaitcev.lan>
Date:   Sun Nov 29 18:12:40 2009 -0700

    Fix crash in __mutex_get_max because db4.7 is toast on F13
    by letting to link against db4.8.

diff --git a/configure.ac b/configure.ac
index b1247b6..aec971f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -73,11 +73,12 @@ dnl AC_TYPE_PID_T
 dnl -----------------------------
 dnl Checks for required libraries
 dnl -----------------------------
-AC_CHECK_LIB(db-4.7, db_create, DB4_LIBS=-ldb-4.7,
+AC_CHECK_LIB(db-4.8, db_create, DB4_LIBS=-ldb-4.8,
+	AC_CHECK_LIB(db-4.7, db_create, DB4_LIBS=-ldb-4.7,
 	AC_CHECK_LIB(db-4.6, db_create, DB4_LIBS=-ldb-4.6,
 	AC_CHECK_LIB(db-4.5, db_create, DB4_LIBS=-ldb-4.5,
 	AC_CHECK_LIB(db-4.4, db_create, DB4_LIBS=-ldb-4.4,
-	AC_CHECK_LIB(db-4.3, db_create, DB4_LIBS=-ldb-4.3, exit 1)))))
+	AC_CHECK_LIB(db-4.3, db_create, DB4_LIBS=-ldb-4.3, exit 1))))))
 AC_CHECK_LIB(argp, argp_parse, ARGP_LIBS=-largp)
 AC_CHECK_LIB(crypto, MD5_Init, CRYPTO_LIBS=-lcrypto)
 AC_CHECK_LIB(resolv, ns_initparse, RESOLV_LIBS=-lresolv)

             reply	other threads:[~2009-11-30  1:17 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-30  1:17 Pete Zaitcev [this message]
2009-11-30  1:38 ` [Patch 1/1] CLD: fix crash in __mutex_get_max (libdb-4.7.so) on F13 Jeff Garzik
2009-11-30  2:05   ` Pete Zaitcev
2009-12-02  1:18   ` Pete Zaitcev
2009-12-02 10:40     ` Jeff Garzik
2009-11-30 13:34 ` Jeff Garzik

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20091129181744.578f4b20@redhat.com \
    --to=zaitcev@redhat.com \
    --cc=hail-devel@vger.kernel.org \
    --cc=jeff@garzik.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.