summaryrefslogtreecommitdiff
path: root/databases/openldap
AgeCommit message (Collapse)AuthorFilesLines
2006-01-31Backport a change from 1.5.22 to 1.5.18 that fixes some issues withtv_libtool_1_5_18_tmpdirfixtv17-863/+0
temp dir creation when using relink-based finalization.
2005-10-26Remove non-existent directory.jlam1-2/+1
2005-10-26Update databases/openldap to 2.3.11, which is the first "stable" releasejlam16-183/+189
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-08-19Use -f to force removal of the default files.reed1-2/+2
My error was: /bin/rm /home/reed/pkg/share/examples/openldap/schema/corba.schema.default override r--r--r-- reed/2022 for /home/reed/pkg/share/examples/openldap/schema/corba.schema.default? (For several files it was interactive to remove.) This is when doing non-privileged builds. (An alternative to this is to make it install the *default files with NONBINMODE in the first place.)
2005-08-03Use the correct LDAP type instead of the SASL type, which is onlyjlam4-11/+12
available if building with SASL support. Noted in private mail by Joerg Sonnenberger. Bump PKGREVISION to 1.
2005-08-01Note that the sparc64 patch is actually a hack for gcc<3.3.jlam2-3/+5
2005-08-01Update databases/openldap to version 2.2.27. From now on, we'll bejlam9-116/+107
tracking the latest release on the 2.2.x branch, which is generally the stable branch of OpenLDAP. Changes from version 2.2.20 include: Fixed bugs in slapd behavior. Fixed bugs in various backends (bdb, hdb, ldbm, ldap) for slapd Fixed pcache all-attrs bug (ITS#3741) Fixed syncrepl runqueue (ITS#3542) Fixed ACL dn=* <what> clause Fixed ACL val default style parsing crasher (ITS#3700) Fixed slapcat unclean exits (ITS#3764) Fixed libldap sasl connection assert (ITS#3278) Removed broken libldap fast synchronous search result processing (ITS#3612) Fixed slap tool log initialization (ITS#3579) Fixed slapi modify/increment support (ITS#3522) Fixed slapi plugins called multiple times with glue (ITS#3529) Fixed slapi 64-bit portability (ITS#3556) Fixed libldap fdset re-init for restart (ITS#3524) Fixed libldap ldap_extended_operation_s (ITS#3552) Added libldap fast synchronous search result processing Fixed slurpd replog locking (ITS#3421) Fixed slaptest failure if databases cannot be started (ITS#3461) Fixed slaptest with dynamically loaded password mechs (ITS#3495) Fixed libldap timeout option cleanup (ITS#3487)
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-05-11Rename MAKE_VARS to MAKEVARS so that it more closely resemblesjlam1-2/+2
"MAKEFLAGS". Both "MAKEVARS" and "MAKEFLAGS" affect the package-level make process, not the software's own make process.
2005-05-11I mixed up MAKE_FLAGS with MAKEFLAGS. The latter is what we actually usejlam1-3/+3
to pass make flags to bmake.
2005-05-09Don't assign to PKG_OPTIONS.<pkg> which has special meaning to thejlam1-7/+7
options framework. Rename PKG_OPTIONS.* to PKG_BUILD_OPTIONS.*.
2005-05-09Teach bsd.pkg.mk to create a phase-specific "makevars.mk" file thatjlam1-3/+3
caches variable definitions that were computed by make. These variables are specified by listing them in MAKE_VARS, e.g., .if !defined(FOO) FOO!= very_time_consuming_command .endif MAKE_VARS+= FOO bsd.pkg.mk will include only the one generated during the most recent phase. A particular phase's makevars.mk file consists of variable definitions that are a superset of all of the ones produced in previous phases of the build. The caching is useful because bsd.pkg.mk invokes make recursively, which in the example above has the potential to run the very time-consuming command each time unless we cause FOO to be defined for the sub-make processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't consistently applied to every invocation of make, and also because MAKE_FLAGS can overflow the maximum length of a make variable very quickly if we add many values to it. One important and desirable property of variables cached via MAKE_VARS is that they only apply to the current package, and not to any dependencies whose builds may have been triggered by the current package. The makevars.mk files are generated by new targets fetch-vars, extract-vars, patch-vars, etc., and these targets are built during the corresponding real-* target to ensure that they are being invoked with PKG_PHASE set to the proper value. Also, remove the variables cache file that bsd.wrapper.mk was generating since the new makevars.mk files provide the same functionality at a higher level. Change all WRAPPER_VARS definitions that were used by the old wrapper-phase cache file into MAKE_VARS definitions.
2005-05-08PKG_OPTIONS.<pkg> isn't a good approximation to PKG_OPTIONS for thejlam1-3/+10
package because PKG_OPTION.<pkg> could contain negative options, which are never part of PKG_OPTIONS. Instead, use the show-var target to display the value. We cache it in WRAPPER_VARS and in MAKE_FLAGS to prevent reinvoking the show-var target recursively.
2005-05-03Remove duplicate share/examples/rc.d/slurpd entry.wiz1-2/+1
2005-05-02RCD_SCRIPTS_EXAMPLEDIR is no longer customizable.reed1-1/+4
And always is defined as share/examples/rc.d which was the default before. This rc.d scripts are not automatically added to PLISTs now also. So add to each corresponding PLIST as required. This was discussed on tech-pkg in late January and late April. Todo: remove the RCD_SCRIPTS_EXAMPLEDIR uses in MESSAGES and elsewhere and remove the RCD_SCRIPTS_EXAMPLEDIR itself.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests in addition to SHA1 ones.agc1-1/+2
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-24Fix alignment/LP64 issue on NetBSD/sparc64 encountered while trying theseb3-3/+60
syncrepl engine with SASL. Bump PKGREVISION. Approved by jlam@.
2005-01-12Change a = to a += so that all of the necessary OWN_DIRS_PERMS arejlam1-2/+3
created. This is needed for slapd to start properly with a default install. Bump the PKGREVISION to 1.
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 notxtraeme2-3/+8
if bdb is disabled, so only build it when the bdb option has been enabled.
2005-01-06Changes 2.2.20:adam2-7/+6
Fixed slapd sanity check on protocol in authz-regexp URI (ITS#3411) Fixed slapd ID to DN mapping when values need DN escaping (ITS#3419) Fixed slapd sl_realloc memory overrun (ITS#3420, #3404, #3296) Fixed slapd syncrepl bugs (ITS#3423, #3425, #3443, #3448) Fixed slapd bad tag handling Fixed slapd error return for modrdn invalid access (ITS#3450) Fixed back-bdb locks in backend_group (ITS#3263, #3365) Fixed back-bdb/back-hdb listing of permissive control (ITS#3453) Fixed back-ldap failed connection retry (ITS#3217) Fixed back-ldap/back-meta memory handling in attr mapping Fixed back-meta modrdn newSuperior target selection Fixed back-sql segfault when logging and delete_rule is NULL (ITS#3407) Build Environment Fixed slurpd build on Windows
2004-12-28Use LIBMODE instead of 444.minskim3-5/+6
2004-12-28The default location of the pkgsrc-installed rc.d scripts is nowreed1-1/+2
under share/examples/rc.d. The variable name already was named RCD_SCRIPTS_EXAMPLEDIR. This is from ideas from Greg Woods and others. Also bumped PKGREVISION for all packages using RCD_SCRIPTS mechanism (as requested by wiz).
2004-12-22Update databases/openldap to 2.2.19. Changes from version 2.2.18 include:jlam3-10/+9
* Fixed slapd check for mandatory filter in authz-regexp URI * Fixed slapd bad descriptor check * Fixed slapd ACI when the subject contains '#' * Fixed back-ldap malformed URI check for multiple URIs * Fixed back-ldap/back-meta static definition of be_open() * Fixed back-bdb cache bugs, ctxcsn memory leak
2004-12-14Revert previous -- -current's sched_yield has been fixed.wiz2-17/+6
adam says ok.
2004-12-14Fixed building on NetBSD 2.0 and -currentadam3-18/+29
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-27The OpenLDAP libraries do NOT include any SLP code, so don't includejlam1-11/+2
openslp/buildlink3.mk. Also, simplify the kerberos/sasl checks.
2004-11-26Bump the PKGREVISION after changes in patch-ag to honor DL_*.jlam1-2/+2
2004-11-26Teach openldap to use DL_{CFLAGS,LDFLAGS,LIBS} when linking slapd whenjlam2-5/+16
building dynamic backends or when using Cyrus SASL.
2004-11-25Default PTHREAD_AUTO_VARS to the safer value of "no". Most packagesjlam1-6/+1
that use pthreads already implement their own probes for pthreads, so we don't need to auto-add the compiler/linker flags.
2004-11-19The man pages should refer to the real location of the config files, notjlam3-3/+28
where they were installed (in the example location) during the "install" step. Bump PKGREVISION.
2004-11-18We don't actually want everything to be built with pthreads -- onlyjlam5-4/+41
libldap_r and slurpd. Patch those Makefiles (patch-aj, patch-ak) to pass $(PTHREAD_CFLAGS) and $(PTHREAD_LDFLAGS) to the build. The configure process correctly adds any necessary libraries, so adding $(PTHREAD_LIBS) isn't needed. Bump the PKGREVISION since the LDAP libraries are no longer linked against libpthread. This fixes PR pkg/28259.
2004-11-17Update databases/openldap to the latest release, version 2.2.18.jlam3-20/+5
Changes from version 2.2.13 include numerous fixes for locking in the Berkeley DB backend, SASL-encoding fixes in libldap, and many bug fixes in slapd.
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,tv3-7/+23
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-11-08Bring options handling in buildlink3.mk into sync with current options.mk.markd1-8/+11
2004-10-15Update linkage to libltdl, now in its own package.tv2-4/+4
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-4/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
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-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-45/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
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.jlam2-3/+3
This follows the example of the mail/dovecot package, as suggested by <schmonz>.
2004-08-04We only need the full dependency on libtool if we build the dynamicjlam2-3/+4
modules. Bump the PKGREVISION.
2004-07-30Convert to use bsd.options.mk. The relevant options variable to setjlam3-39/+38
for each package can be determined by invoking: make show-var VARNAME=PKG_OPTIONS_VAR The old options are still supported unless the variable named in PKG_OPTIONS_VAR is set within make(1) (usually via /etc/mk.conf).
2004-07-24cyrus-sasl configure option takes no argument.jlam1-4/+4
2004-07-24Need to bump the version in buildlink3.mk since the shlib major wasjlam1-4/+4
bumped.