From owner-freebsd-ports@FreeBSD.ORG Sun Nov 23 18:48:42 2014 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD02F281 for ; Sun, 23 Nov 2014 18:48:42 +0000 (UTC) Received: from mail-ie0-x22c.google.com (mail-ie0-x22c.google.com [IPv6:2607:f8b0:4001:c03::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7CF407BB for ; Sun, 23 Nov 2014 18:48:42 +0000 (UTC) Received: by mail-ie0-f172.google.com with SMTP id tr6so62238ieb.31 for ; Sun, 23 Nov 2014 10:48:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=ElHf1R9WiXkSqrv7h8BxiE+0eEVPhy12fdbIm9xVYB4=; b=yNFAlySd/MnO/b6RrjcfOdn0LgE4GtyeBrxmbaJ8SP84cbv0vlsGq4mgERdZaJeFqz +e8QvFbTtK1d9NFKjbLUC2VNivMaeM14Ogm1G+RyG/BTxLqFDwsxhpAJbGz6HYHsNI1W JkBcIB8ulkqRq/ZQ0TzVyPlfzcZ0SVKIQhvnyQibYdcfPY2efny+Rm3fXuZQF1IBNdlF +3uBGYgN8WRWdcZFKFFP16vcjp/osZamXsg0AEX94xd5oj+zvOf9+dFa5+TgWwNMipks OAbzSIO4ZbWmQwP5sAgZuPqUmIpJEk0m7wJfdGLWcquV8gZfmz98/Cxd7hGgdIQ1KCwF LTfA== X-Received: by 10.50.164.133 with SMTP id yq5mr8297886igb.4.1416768521761; Sun, 23 Nov 2014 10:48:41 -0800 (PST) Received: from ?IPv6:2001:470:1f11:7d4:4590:b979:859d:f0a2? ([2001:470:1f11:7d4:4590:b979:859d:f0a2]) by mx.google.com with ESMTPSA id d2sm6418436ioj.30.2014.11.23.10.48.40 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 23 Nov 2014 10:48:41 -0800 (PST) Message-ID: <54722C03.7000503@gmail.com> Date: Sun, 23 Nov 2014 12:48:35 -0600 From: Ryan Frederick User-Agent: Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: Updating databases/mariadb55-server to 5.5.40 References: In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2014 18:48:42 -0000 I'm seeing the same thing on my 9.x boxes. I don't believe jemalloc(3) is in the base system prior to 10.x Ryan On 11/23/2014 12:46 PM, Phil Stone wrote: > Hi, > > Updating databases/mariadb55-server from 5.5.39 to 5.5.40 on FreeBSD > 8.4p19 leads to the following error on one of my systems: > > > -- Performing Test NEW_READLINE_INTERFACE > -- Performing Test NEW_READLINE_INTERFACE - Success > -- Performing Test READLINE_V5 > -- Performing Test READLINE_V5 - Success > -- Performing Test HAVE_HIST_ENTRY > -- Performing Test HAVE_HIST_ENTRY - Failed > CMake Error at cmake/jemalloc.cmake:9 (MESSAGE): > MariaDB no longer bundles jemalloc > Call Stack (most recent call first): > CMakeLists.txt:370 (CHECK_JEMALLOC) > -- Configuring incomplete, errors occurred! > See also > "/usr/ports/databases/mariadb55-client/work/mariadb-5.5.40/CMakeFiles/C > MakeOutput.log". > See also > "/usr/ports/databases/mariadb55-client/work/mariadb-5.5.40/CMakeFiles/C > MakeError.log". > *** Error code 1 > Stop in /usr/ports/databases/mariadb55-client. > *** Error code 1 > Stop in /usr/ports/databases/mariadb55-client. > ===>>> make build failed for databases/mariadb55-client > ===>>> Aborting update > ===>>> Update for databases/mariadb55-client failed > ===>>> Aborting update > ===>>> You can restart from the point of failure with this command > line: > portmaster databases/mariadb55-client > databases/mariadb55-server > # > > The port tree is otherwise maintained up to date thru portsnap. > > The following patch resolves the problem: > --- Makefile.orig 2014-11-22 19:46:05.000000000 +0100 > +++ Makefile 2014-11-23 14:35:18.252559000 +0100 > @@ -76,7 +76,7 @@ > .endif > > .if ${OSVERSION} < 1000012 > -CMAKE_ARGS+= -DWITH_JEMALLOC="bundled" > +CMAKE_ARGS+= -DWITH_JEMALLOC="auto" > .else > CMAKE_ARGS+= -DWITH_JEMALLOC="system" > .endif > > Is this issue specific to my configuration or did anybody else came > across the same issue? > Thank you in advance for your consideration. > > Cheers, > Phil > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" >