Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Nov 2014 19:01:44 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 195320] [MAINTAINER] [PATCH] ports/databases/mariadb55-server: Fix build on 9.x
Message-ID:  <bug-195320-13-g8rBsWafRO@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-195320-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-195320-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195320

John Marino <marino@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |marino@FreeBSD.org

--- Comment #1 from John Marino <marino@FreeBSD.org> ---
No, there is a reason.  Please use the code from mariadb100-server, e.g. 

.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000012
CMAKE_ARGS+=    -DWITH_JEMALLOC="system"
.else
CMAKE_ARGS+=    -DWITH_JEMALLOC="no"
.endif



or at least


.if ${OPSYS} == FreeBSD 
CMAKE_ARGS+=    -DWITH_JEMALLOC="system"
.else
CMAKE_ARGS+=    -DWITH_JEMALLOC="no"
.endif


DragonFly does not have jemalloc.

-- 
You are receiving this mail because:
You are the assignee for the bug.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-195320-13-g8rBsWafRO>