# MariaDB - a database server that offers drop-in replacement functionality for MySQL. # http://mariadb.org/ [buildout] extends = zlib.cfg ncurses.cfg readline.cfg parts = mariadb [mariadb] recipe = hexagonit.recipe.cmmi version = 5.2.5 url = http://www.percona.com/downloads/MariaDB/mariadb-${:version}/kvm-tarbake-jaunty-x86/mariadb-${:version}.tar.gz md5sum = a1c09a0cd1934a7a9432106123cb5a5c # compile directory is required to build mysql plugins. keep-compile-dir = true # configure: how to avoid searching for my.cnf? # - like in mysql part in http://svn.zope.org/zodbshootout/trunk/buildout.cfg?view=markup # we use embeded yassl instead of openssl to avoid compilation errors on sphinx search engine. configure-options = --enable-thread-safe-client --enable-local-infile --enable-assembler --with-pic --with-fast-mutexes --with-charset=utf8 --with-collation=utf8_unicode_ci --without-readline --with-ssl --with-zlib-dir=${zlib:location} environment = CPPFLAGS =-I${ncurses:location}/include -I${readline:location}/include 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