summaryrefslogtreecommitdiff
path: root/databases/openldap/options.mk
AgeCommit message (Collapse)AuthorFilesLines
2005-12-29Add (conflicting) "iodbc" and "unixodbc" options to openldap for ODBC support,ghen1-1/+24
from PR#31960. Ok by jlam and wiz.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+2
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-10-26Update databases/openldap to 2.3.11, which is the first "stable" releasejlam1-22/+2
in the 2.3.x series. This is a major update over version 2.2.x, and changes include: * Slapd(8) enhancements - Updated slapd "overlay" interface, and several example (and mostly experimental) overlays. - Updated LDAP "sync" Engine with replication support, provider now an "overlay" - Numerous access control enhancements, including experimental "don't disclose on error" capability - Configuration backend * LDAPv3 extensions, including: - LDAP Password Policy - LDAP Component Matching (requires OpenLDAP snacc) - LDAP Modify Increment
2005-05-31Packages have no business modifying PKG_DEFAULT_OPTIONS -- it's adillo1-2/+2
user settable variable. Set PKG_SUGGESTED_OPTIONS instead. Also, make use of PKG_OPTIONS_LEGACY_VARS. Reviewed by wiz.
2005-02-09Explicitely disable sasl support when the option is not selected, in casecube1-1/+3
there is a sasl library somewhere in the system, as the configure script would try using it.
2005-01-12Be a bit more descriptive about why the bdb option is enabled byxtraeme1-1/+5
default, suggested by jlam@.
2005-01-12If dynamic and bdb options are used, the hdb module is built, but notxtraeme1-1/+6
if bdb is disabled, so only build it when the bdb option has been enabled.
2004-11-29In case db4 is disallowed by bdb.buildlink3.mk, causing BDB_TYPE to betv1-1/+4
set to "none", skip bdb altogether.
2004-11-15Rework the Berkeley DB detection in buildlink3:jlam1-2/+1
* Add a db1.builtin.mk file that detects whether DB-1.85 functionality exists in the base system, and remove the distinction between "native" and the other Berkeley DB packages -- we now refer to db[1234]. This paves the way for any future databases/db1 package. * USE_DB185 shouldn't need to be set by any packages -- its correct value is now automatically determined by bdb.buildlink3.mk depending on whether we explicitly request db1 or not. By default, if you include bdb.buildlink3.mk, you want DB-1.85 functionality and USE_DB185 defaults to "yes", but if you explicitly remove db1 from the list of acceptable DBs, then USE_DB185 defaults to "no". * Set BDB_LIBS to the library options needed to link against the DB library when bdb.buildlink3.mk is included. * We only add the DB library to the linker command automatically if we want DB-1.85 functionality; otherwise assume that the package configure process can figure out how to probe for the correct headers and libraries. Edit package Makefiles to nuke redundant settings of USE_DB185.
2004-11-15USE_DB185=no; should fix build failure reported on tech-pkg bytv1-1/+2
<mlh@goathill.org>.
2004-11-08Allow bdb backend support to be optional via PKG_OPTIONS.openldap. For now,tv1-2/+18
it is still on by default to preserve compatibility (use option "-bdb" to disable). While here, fix typo in CONFIGURE_ARGS that had caused the dnssrv backend not to build; bump PKGREVISION.
2004-10-15Update linkage to libltdl, now in its own package.tv1-2/+2
2004-09-27This version of openldap no longer builds against the old version of sasl,rh1-12/+5
so don't attempt to depend on it (always use cyrus-sasl2 for SASL support). OK'ed by jlam.
2004-08-22Change the way that legacy USE_* and FOO_USE_* options are convertedjlam1-16/+1
into the bsd.options.mk framework. Instead of appending to ${PKG_OPTIONS_VAR}, it appends to PKG_DEFAULT_OPTIONS. This causes the default options to be the union of PKG_DEFAULT_OPTIONS and any old USE_* and FOO_USE_* settings. This fixes PR pkg/26590.
2004-08-05Rename Makefile.options to options.mk in the packages that I maintain.jlam1-0/+65
This follows the example of the mail/dovecot package, as suggested by <schmonz>.