From owner-freebsd-questions@FreeBSD.ORG Thu Sep 20 06:52:06 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DB4616A420 for ; Thu, 20 Sep 2007 06:52:06 +0000 (UTC) (envelope-from aliyaharbouri@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.170]) by mx1.freebsd.org (Postfix) with ESMTP id 207A713C47E for ; Thu, 20 Sep 2007 06:52:05 +0000 (UTC) (envelope-from aliyaharbouri@gmail.com) Received: by ug-out-1314.google.com with SMTP id a2so414000ugf for ; Wed, 19 Sep 2007 23:52:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=v1hPWxhjQ/042LWfnnES1oc1INgMFLkM4yF8vHnSQn4=; b=UTu9BY50q3GvVRJetIG0uQ0z6oz6C8HfPRZBCvgQH6emM0C39fcKB2kahAXhfZc/QdSfvdC/LgJJn4EfYK3+5fLSdDRQCEi4/to5cce+mpFZh9SENH+n/Ce2vy3XvzZDn7AWcAiqJrOAwVY2jQHPkH6nJhMjhg7cL9WiPr8dMuM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=SO2LAW63KcCVDkloFJO6plqEjuAz5Cf+BiNjbtWdZ16mhfgmgn63+WUrakQ9BV0bZjhwqJOHKtQvAlw1CRds6jzlWWc2dBFWQHT7b7xT8vToahAXJGc1lqRTtB+ameYFngUoYXP0ms3hDOwK3FigdozBBCS+pcgBK3qJ03xKkWE= Received: by 10.67.30.3 with SMTP id h3mr2849314ugj.1190271124615; Wed, 19 Sep 2007 23:52:04 -0700 (PDT) Received: by 10.67.91.14 with HTTP; Wed, 19 Sep 2007 23:52:04 -0700 (PDT) Message-ID: Date: Wed, 19 Sep 2007 23:52:04 -0700 From: "Aliya Harbouri" To: "Dan Nelson" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20070920025713.GE7562@dan.emsphone.com> <20070920041533.GF7562@dan.emsphone.com> Cc: freebsd-questions@freebsd.org Subject: Re: Which knobs do I use to control BDB use in MySQL-server port? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Sep 2007 06:52:06 -0000 Hi Dan, One last thing (It's way past my bedtime here ;-p) > See that "--with-berkeley-db" in there? :-( A little digging in the mysql ditribution's source files dredged up the "CONF_COMMAND" variable. Do-ing, CONF_COMMAND="--without-berkeley-db"; export $CONF_COMMAND perl -pi -e 's/^(CONFIGURE_ARGS.*)with-berkeley-db(.*)$/$1without-berkeley-db$2/g' Makefile Seems to do the trick as far as the build /process/ goes, grep berkeley-db ./work/mysql-5.0.45/config.log | grep "$ ./configure" $ ./configure --localstatedir=/var/db/mysql --without-debug --without-readline --without-libedit --without-bench --without-extra-tools --with-libwrap --with-mysqlfs --with-low-memory --with-comment=FreeBSD port: mysql-server-5.0.45 --enable-thread-safe-client --with-openssl=/usr/local --enable-assembler --without-berkeley-db --with-named-thread-libs=-pthread --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info/ --build=i386-portbld-freebsd6.2 See the "--without-berkeley-db" is there, now. I'll check the build's output with ldd when the build finishes. For now, my pooch inists that it's "lights out" <:-} Ali