Mike Hollis wrote these words on 11/18/10 15:25 CST:
> The above ticket mentioned db-4.8.30 as a solution. I saw that the
> ticket was recently updated , and followed the links and noted
> db-5.1.19 was being considered but may have some issues with Cyrus-SASL.
I have a patch that will allow cyrus to build. Builds fine, but I haven't
actually used cyrus for any authentication yet. It'll probably be fine,
time will tell. I've attached the patch.
> I'm thinking of starting a new devel LFS build. I've been lazy and
> using jhalfs so I think I'll do a manual build and try db-5.1.19 .
> Db-4.5.20 is already linked to far too many packages to backtrack on
> this build.
I recently started a new build and have used BDB-5.1 and OpenSSL-1.0.0
since the beginning and haven't run into anything I couldn't handle
so far.
> I am pretty unfamilar with TRAC. What does " milestone changed from
> future to 6.7 " mean ? I will guess that the next release version
> of BLFS will be 6.7 and the package will be used in that release.
Yes, that is the goal. We are trying to get a release out soon with
the target platform as LFS-6.7, so we keep the BLFS version the same.
Hence, the future to 6.7 updates. So far it looks okay. I've tested
BDB with many packages so far, without any issues. LDAP's database
is fine, sendmail's alias database is fine, etc.
I ran a few batch updates to the Trac tickets to remove all the
6.5 milestones and either batch updated to "future" or "6.7", which
we are hoping to release rather soon. I know I'm working as fast
as I can, but my time each day is limited. Ken is doing a great
job, and DJ will be picking it up here soon (or so he mentioned).
I'd like to get as many folks working on it as possible so we can
do a release soon.
--
Randy
rmlscsi: [bogomips 1003.28] [GNU ld version 2.16.1] [gcc (GCC) 4.0.3]
[GNU C Library stable release version 2.3.6] [Linux 2.6.14.3 i686]
15:53:00 up 16 days, 22:47, 1 user, load average: 0.95, 0.21, 0.06
--- sasldb/db_berkeley.c.orig 2010-10-04 21:11:15.044010468 -0400
+++ sasldb/db_berkeley.c 2010-10-04 21:12:18.921998718 -0400
@@ -100,7 +100,7 @@
ret = db_create(mbdb, NULL, 0);
if (ret == 0 && *mbdb != NULL)
{
-#if DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1
+#if (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1) || DB_VERSION_MAJOR == 5
ret = (*mbdb)->open(*mbdb, NULL, path, NULL, DB_HASH, flags, 0660);
#else
ret = (*mbdb)->open(*mbdb, path, NULL, DB_HASH, flags, 0660);
--- utils/dbconverter-2.c.orig 2010-10-04 21:23:39.778000256 -0400
+++ utils/dbconverter-2.c 2010-10-04 21:24:50.384999893 -0400
@@ -214,7 +214,7 @@
ret = db_create(mbdb, NULL, 0);
if (ret == 0 && *mbdb != NULL)
{
-#if DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1
+#if (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1) || DB_VERSION_MAJOR == 5
ret = (*mbdb)->open(*mbdb, NULL, path, NULL, DB_HASH, DB_CREATE, 0664);
#else
ret = (*mbdb)->open(*mbdb, path, NULL, DB_HASH, DB_CREATE, 0664);
--
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page