mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
334768c1bb
make depend, make tests, and make install all work when build directory is not the $srcdir. Also modified library handling such that -lpthread more likely to be last. WARNING: new orderring requires use of LDFLAGS to set global loader options such as -L/usr/local/lib. If you put this in LIBS, some libraries may not be found a link time. Likely broke Kerberos/LDAPD support. Don't have those in my testbed.
41 lines
1.4 KiB
Bash
Executable File
41 lines
1.4 KiB
Bash
Executable File
DATADIR=$SRCDIR/data
|
|
|
|
LDIF2LDBM=../servers/slapd/tools/ldif2ldbm
|
|
SLAPD=../servers/slapd/slapd
|
|
SLURPD=../servers/slurpd/slurpd
|
|
LDAPSEARCH=../clients/tools/ldapsearch
|
|
LDAPMODIFY=../clients/tools/ldapmodify
|
|
LDAPADD=../clients/tools/ldapadd
|
|
PORT=9009
|
|
SLAVEPORT=9010
|
|
DBDIR=./test-db
|
|
REPLDIR=./test-repl
|
|
CONF=$DATADIR/slapd-master.conf
|
|
ACLCONF=$DATADIR/slapd-acl.conf
|
|
MASTERCONF=$DATADIR/slapd-repl-master.conf
|
|
SLAVECONF=$DATADIR/slapd-repl-slave.conf
|
|
LDIF=$DATADIR/test.ldif
|
|
LDIFORDERED=$DATADIR/test-ordered.ldif
|
|
BASEDN="o=University of Michigan, c=US"
|
|
MANAGERDN="cn=Manager, o=University of Michigan, c=US"
|
|
PASSWD=secret
|
|
BABSDN="cn=Barbara Jensen, ou=Information Technology Division, ou=People, o=University of Michigan, c=US"
|
|
BJORNSDN="cn=Bjorn Jensen, ou=Information Technology Division, ou=People, o=University of Michigan, c=US"
|
|
JAJDN="cn=James A Jones 1, ou=Alumni Association, ou=People, o=University of Michigan, c=US"
|
|
MASTERLOG=$DBDIR/master.log
|
|
SLAVELOG=$DBDIR/slave.log
|
|
SLURPLOG=$DBDIR/slurp.log
|
|
SEARCHOUT=$DBDIR/ldapsearch.out
|
|
SEARCHFLT=$DBDIR/ldapsearch.flt
|
|
LDIFFLT=$DBDIR/ldif.flt
|
|
MASTEROUT=$DBDIR/master.out
|
|
SLAVEOUT=$DBDIR/slave.out
|
|
TESTOUT=$DBDIR/ldapsearch.out
|
|
SEARCHOUTMASTER=$DATADIR/search.out.master
|
|
MODIFYOUTMASTER=$DATADIR/modify.out.master
|
|
ADDDELOUTMASTER=$DATADIR/adddel.out.master
|
|
MODRDNOUTMASTER=$DATADIR/modrdn.out.master
|
|
ACLOUTMASTER=$DATADIR/acl.out.master
|
|
REPLOUTMASTER=$DATADIR/repl.out.master
|
|
MODSRCHFILTERS=$DATADIR/modify.search.filters
|