From nobody Sun Mar 13 18:16:06 2022 X-Original-To: freebsd-database@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 310311A00AAC for ; Sun, 13 Mar 2022 18:16:09 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from anubis.delphij.net (anubis.delphij.net [64.62.153.212]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "anubis.delphij.net", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4KGnt00k5lz4WMy for ; Sun, 13 Mar 2022 18:16:08 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from [IPV6:2001:470:48ca:5:40a9:560c:6def:74a2] (unknown [IPv6:2001:470:48ca:5:40a9:560c:6def:74a2]) by anubis.delphij.net (Postfix) with ESMTPSA id F031539E58; Sun, 13 Mar 2022 11:16:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=delphij.net; s=m7e2; t=1647195367; x=1647209767; bh=cmqzcyMAuZz2sHQsPzrLF9dnRWO6pWC6z6IAJzBZTD4=; h=Date:Reply-To:To:References:From:Subject:In-Reply-To; b=PdhbLgwZ8BrW0o/5Zs12JwyDQ8p+htrO9jV5OOR+NYzNZ5oHqHxySvF8ToGbIFIje f+JHLWaEi3WOdjmIgaXQ1aqrZb4y0cUsflfurnDZtNiAHsBFMdS8nGACRL9Kek8KwD kmK5bhAlRA7ZQJIaRXrn4D6cvXClG9pNHB9UtnJefee1l482BOX63ow2fOWHHD/4Gu b5j+xvaFw+w3/uWeRmoAmqBq2ReYt3w5ZCUJ6Okvg9JJ4/9jwUqfn3xBSNnDTHSXGf 6VFLQfS1St2tlL0xfBxOSucDwBEF9yr3IQ4puRN0ZubQT8bI2m96+B6yJbDXsRuFYL SMb/g2v+qlSsQ== Message-ID: Date: Sun, 13 Mar 2022 11:16:06 -0700 List-Id: Database use and development under FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-database List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-database@freebsd.org MIME-Version: 1.0 Reply-To: d@delphij.net Content-Language: en-US To: Archimedes Gaviola , freebsd-database@freebsd.org References: From: Xin Li Organization: The FreeBSD Project Subject: Re: Berkeley DB 1.85 source install In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 4KGnt00k5lz4WMy X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=delphij.net header.s=m7e2 header.b=PdhbLgwZ; dmarc=pass (policy=reject) header.from=delphij.net; spf=pass (mx1.freebsd.org: domain of delphij@delphij.net designates 64.62.153.212 as permitted sender) smtp.mailfrom=delphij@delphij.net X-Spamd-Result: default: False [-3.11 / 15.00]; HAS_REPLYTO(0.00)[d@delphij.net]; RCVD_VIA_SMTP_AUTH(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+mx]; HAS_ORG_HEADER(0.00)[]; DKIM_TRACE(0.00)[delphij.net:+]; RCPT_COUNT_TWO(0.00)[2]; DMARC_POLICY_ALLOW(-0.50)[delphij.net,reject]; NEURAL_HAM_SHORT(-0.11)[-0.115]; FREEMAIL_TO(0.00)[gmail.com,freebsd.org]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:6939, ipnet:64.62.128.0/18, country:US]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; R_DKIM_ALLOW(-0.20)[delphij.net:s=m7e2]; FREEFALL_USER(0.00)[delphij]; FROM_HAS_DN(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; TAGGED_RCPT(0.00)[]; REPLYTO_DOM_EQ_FROM_DOM(0.00)[]; MIME_GOOD(-0.10)[text/plain]; TO_MATCH_ENVRCPT_SOME(0.00)[]; MLMMJ_DEST(0.00)[freebsd-database]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] X-ThisMailContainsUnwantedMimeParts: N Hi, On 2/20/22 17:59, Archimedes Gaviola wrote: > (re-posted as this might be the proper channel to ask) > > Hi, > > With 13.0-RELEASE, I would like to compile and install the Berkeley DB > 1.85 source from /usr/src/lib/libc/db however only in its parent > directory /usr/src/lib/libc I could perform the "make" command. Is there > a way to compile specific to the db only? If it's possible then what are > the "make" parameters I should include to invoke? No, unless write the build glues. /usr/src/lib/libc/db was a trimmed down and customized version of Berkeley DB 1.86, and it's not intended for standard alone use (and therefore, it's unlikely that we would accept changes to add build glues for it to build it as a standard alone library). If you need Berkeley DB 1.85 (or 1.86), you should be able to find the original tarball on the Internet and start from there. Cheers,