buildout.cfg 702 Bytes
Newer Older
1 2 3 4
[buildout]
parts =
  openldap
extends =
Łukasz Nowak's avatar
Łukasz Nowak committed
5 6
  ../openssl/buildout.cfg
  ../cyrus-sasl/buildout.cfg
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

[openldap]
recipe = hexagonit.recipe.cmmi
url = ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.4.25.tgz
md5sum = ec63f9c2add59f323a0459128846905b
configure-options =
  --disable-static
  --disable-slapd
  --enable-backends=no
  --enable-overlays=no
  --with-cyrus-sasl
  --without-fetch
  --disable-rewrite
  --disable-odbc
  --with-threads
  --with-tls=openssl

environment =
  CPPFLAGS=-I${openssl:location}/include -I${cyrus-sasl:location}/include
26
  LDFLAGS=-L${openssl:location}/lib -Wl,-rpath=${openssl:location}/lib -L${cyrus-sasl:location}/lib -Wl,-rpath=${cyrus-sasl:location}/lib