| 1 |
# MariaDB - a database server that offers drop-in replacement functionality for MySQL.
|
| 2 |
# http://mariadb.org/
|
| 3 |
|
| 4 |
[buildout]
|
| 5 |
extends =
|
| 6 |
zlib.cfg
|
| 7 |
ncurses.cfg
|
| 8 |
readline.cfg
|
| 9 |
|
| 10 |
parts =
|
| 11 |
mariadb
|
| 12 |
|
| 13 |
[mariadb]
|
| 14 |
recipe = hexagonit.recipe.cmmi
|
| 15 |
version = 5.2.5
|
| 16 |
url = http://www.percona.com/downloads/MariaDB/mariadb-${:version}/kvm-tarbake-jaunty-x86/mariadb-${:version}.tar.gz
|
| 17 |
md5sum = a1c09a0cd1934a7a9432106123cb5a5c
|
| 18 |
# compile directory is required to build mysql plugins.
|
| 19 |
keep-compile-dir = true
|
| 20 |
# configure: how to avoid searching for my.cnf?
|
| 21 |
# - like in mysql part in http://svn.zope.org/zodbshootout/trunk/buildout.cfg?view=markup
|
| 22 |
# we use embeded yassl instead of openssl to avoid compilation errors on sphinx search engine.
|
| 23 |
configure-options =
|
| 24 |
--enable-thread-safe-client
|
| 25 |
--enable-local-infile
|
| 26 |
--enable-assembler
|
| 27 |
--with-pic
|
| 28 |
--with-fast-mutexes
|
| 29 |
--with-charset=utf8
|
| 30 |
--with-collation=utf8_unicode_ci
|
| 31 |
--without-readline
|
| 32 |
--with-ssl
|
| 33 |
--with-zlib-dir=${zlib:location}
|
| 34 |
|
| 35 |
environment =
|
| 36 |
CPPFLAGS =-I${ncurses:location}/include -I${readline:location}/include
|
| 37 |
LDFLAGS =-L${readline:location}/lib -L${ncurses:location}/lib -Wl,-rpath -Wl,${zlib:location}/lib -Wl,-rpath -Wl,${ncurses:location}/lib -Wl,-rpath -Wl,${readline:location}/lib
|