summaryrefslogtreecommitdiff
path: root/databases/openldap
AgeCommit message (Collapse)AuthorFilesLines
2004-04-23mk/bsd.pkg.install.mk now automatically registersreed1-3/+1
the RCD_SCRIPTS rc.d script(s) to the PLIST. This GENERATE_PLIST idea is part of Greg A. Woods' PR #22954. This helps when the RC_SCRIPTS are installed to a different ${RCD_SCRIPTS_EXAMPLEDIR}. (Later, the default RCD_SCRIPTS_EXAMPLEDIR will be changed to be more clear that they are the examples.) These patches also remove the etc/rc.d/ scripts from PLISTs (of packages that use RCD_SCRIPTS). (This also removes now unused references from openssh* makefiles. Note that qmail package has not been changed yet.) I have been doing automatic PLIST registration for RC_SCRIPTS for over a year. Not all of these packages have been tested, but many have been tested and used. Somethings maybe to do: - a few packages still manually install the rc.d scripts to hard-coded etc/rc.d. These need to be fixed. - maybe remove from mk/${OPSYS}.pkg.dist mtree specifications too.
2004-04-17Update openldap to 2.1.30.xtraeme3-9/+9
OpenLDAP 2.1.30 Release Fixed slapd userdb checkpass bug (ITS#3048) Fixed back-ldbm IDL delete bug (ITS#3046) Fixed libldap schema parsing bugs (ITS#2920, ITS#3065) Fixed liblutil NS MTA MD5 passwd len bug (ITS#2899) Removed lint (ITS#3086) Documentation Updated slapd.conf(5) manpage (ITS#2525)
2004-03-31Update openldap to 2.1.29 (latest stable release).xtraeme4-45/+9
Changes: OpenLDAP 2.1.29 Release Fixed slapd SASL invalid authcID crash (ITS#2961) Fixed slapd sasl-regexp debug crash (ITS#3033) Fixed back-bdb empty suffix bug (ITS#2970) Fixed back-bdb IDL avl_delete failure bug (ITS#3004) Fixed libldap assert failure (ITS#2982) OpenLDAP 2.1.28 Release Fixed back-bdb slapadd crash (ITS#2974) Fixed typo in ACL STYLE slap_style_e enum (ITS#3001) Added ACL set logging (ITS#2949) Fixed '=' escape in DN (ITS#3009) Documentation Fixed ldapmodify(1) manpage (ITS#3002) Fixed ldapmodrdn(1) manpage (ITS#3003) OpenLDAP 2.1.27 Release Fixed slapd replog ordering bug (ITS#2512) Fixed slapd uninitialized variable bug Fixed libldap SASL client callbacks (ITS#2926) Build Environment Fixed gai_strerr portability problem (ITS#2643) Fixed DNS res_query portability problem
2004-03-26PKGREVISION bump after openssl-security-fix-update to 0.9.6m.wiz3-4/+6
Buildlink files: RECOMMENDED version changed to current version.
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-12OpenLDAP expects to use the BDB-compat headers.jlam1-1/+3
2004-03-07NetBSD-current needs -lcrypto when linking in Heimdal.markd2-1/+15
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-8/+11
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-21The OpenLDAP libraries don't need the Kerberos libraries.jlam1-4/+1
2004-02-21Refine comment a bit to be more precise.jlam1-2/+2
2004-02-21Enable linking against shared libraries, and correctly enable detection ofjlam1-1/+4
the Kerberos libraries.
2004-02-20Reenable the use of GNU pth on systems without native pthreads. Bumpjlam3-12/+32
the PKGREVISION. The fix was provided by Nick Hudson and modifies the libldap initialization routine to call the GNU pth initialization routine before using it. The resulting slapd/slurpd passes the test suite included in the OpenLDAP sources. This fixes PR 24473.
2004-02-19If the threads are non-native, then don't build openldap with threadsjlam2-7/+22
support. The slapd built without threads passes all of its test except for the replication test, which is because slurpd is not built (slurpd requires threads). Bump the PKGREVISION. This is in response to PR 24473. As a debugging aid in case someone attempts to really fix the PR, if _OPENLDAP_REQUIRE_THREADS is "yes", then openldap will forcibly build using GNU pth if native threads aren't available.
2004-02-18+etc/rc.d/slurpdjlam1-1/+2
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-02-14Update databases/openldap to 2.1.25 (latest stable release as ofjlam7-42/+60
20031217. Changes from version 2.1.22 include many bug fixes including memory leaks, adding lutil_passwd extensions, and adding config file keywords to control the replication daemon.
2004-01-24Append to BUILDLINK_DEPENDS.<pkg> instead of setting a default value. Injlam1-4/+4
the normal case when BUILDLINK_DEPENDS.<pkg> isn't specified, it receives a value only once due to the multiple inclusion protection in the bulldlink3.mk files. In the case where a package includes several buildlink3.mk files that each want a slightly different version of another dependency, having BUILDLINK_DEPENDS.<pkg> be a list allows for the strictest <pkg> dependency to be matched.
2004-01-21Convert to use krb5.buildlink3.mk to get Kerberos 5 support. Tested tojlam2-3/+7
build and install properly using Heimdal.
2004-01-21Whitespacejlam1-3/+3
2004-01-09Fix the dynamic PLIST generated when building this package with pkgviewsjlam5-13/+72
by delaying installation of config files until INSTALL script time.
2004-01-09bl3ifyjlam1-10/+10
2004-01-05Use S/+$// instead of C/\+$// to save a backslash. Very highlyjlam1-2/+2
recommended by seb :)
2004-01-04Re-arrange to match example buildlink3.mk file in bsd.buildlink3.mk.jlam1-10/+7
2004-01-03Initial sprinkling of work-in-progress buildlink3.mk files for using thejlam1-0/+28
buildlink3 framework.
2003-12-04Add a patch and bump PKGREVISION for a patch by Christian Limpach for aagc3-3/+38
problem noted on current-users by Murray Armfield. The problem was: "Just try executing slapindex to get quite a verbose libpthread invalid mutex message. slapd still core dumps on shutdown." Thanks to Christian for fixing this.
2003-11-12PKGREVISION++ after openssl update.jschauma1-2/+2
2003-09-29Delint, style, whitespace.salo1-35/+42
2003-09-29PKGREVISION++salo3-5/+18
Obey PKG_SYSCONFDIR.
2003-09-27Just added a comment into Makefile as a reminder why PKG_SYSCONFBASE isreed1-1/+3
used instead of PKG_SYSCONFDIR. The openldap build defines a ldap_subdir (as /openldap) which is automatically appended (unless using --without-subdir which also breaks share and libexec). (Okay'd by wiz.)
2003-09-18Put patch-ad back, probably still needed on sparc64.markd2-1/+127
2003-09-18Update openldap to version 2.1.22.markd8-317/+85
This release contains the following major enhancements: * Transactional backend * Improved Unicode handling * Improved DN handlng * Improved Referral handling * SASL authentication/authorization mapping * SASL in-directory storage of authentication secrets * Enhanced administrative limits/access controls * Meta backend (experimental) * Monitor backend (experimental) * Virtual "glue" backend (experimental) * LDAP C++ API * Updated LDAP C and TCL APIs * LDAPv3 extensions, including: - Enhanced Language Tag/Range Support - 'Who am i?' Extended Operation - 'Matched Values' Control - 'NOOP' Control plus lots of bug fixes. Update (to 2.1.20) from Juan RP in PR pkg/21682 with some tidy up and update to 2.1.22 by Marc Recht and me. Also closes PR pkg/21217 by Jean-Luc Wasmer and PR pkg/20972 by Jeremy Reed.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-05-08Pthreads not needed -- only used by executable, not bywiz1-3/+1
any of the openldap libraries. Closes PR 21490 by Todd Vierling.
2003-05-02Dependency bumps, needed because of devel/pth's major bump, and relatedwiz2-4/+4
dependency bumps.
2003-02-17convert to use test target from bsd.pkg.mkdillo1-5/+2
addresses PR pkg/19416
2003-01-29As usual, prevent compiling SHA1 from blowing up on sparc64 by movingkleink3-3/+129
each round into a separate function. Bump to 2.0.27nb2.
2003-01-28Instead of including bsd.pkg.install.mk directly in a package Makefile,jlam1-2/+2
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set to "YES". This enforces the requirement that bsd.pkg.install.mk be included at the end of a package Makefile. Idea suggested by Julio M. Merino Vidal <jmmv at menta.net>.
2003-01-19Don't use pthread_attr_setstacksize unless _POSIX_THREAD_ATTR_STACKSIZEskrll3-2/+18
is defined. This lets openldap compile on -current. Fixes PR 19921. PKGREVISION++
2002-10-17Solaris's builtin [ and /usr/bin/test don't know -e. Use -r instead.bouyer1-2/+2
2002-10-09Unused.wiz1-52/+0
2002-09-23Update to 2.0.27; notable changes include:kleink3-9/+9
OpenLDAP 2.0.27 Release Build environment Fix getopt(3) detection OpenLDAP 2.0.26 Release Fixed slapd ACL buffer size bug (ITS#1963) Fixed slapd ACL filters w/substrings bug (ITS#2023, ITS#2027) Fxied slapd directory string space bug (ITS#2072) Fixed slurpd reject file handling bugs (ITS#2007, ITS#2009) Fixed back-ldbm indirect IDL bug (ITS#2039) Fixed libldap buffer size bugs (ITS#1935, ITS#1936) Fixed libldap gethostbyname mutex init bug (ITS#2019) Fixed liblutil passwd bug (ITS#2055) Fixed sasl large reads and writes (ITS#1983, also ITS#910,ITS#1861) Updated back-ldbm reindexing - slapindex rebuilds dn2id index Build environment Require version 1.5 if Cyrus SASL is present Remove tempnam checking and replacment implementation
2002-09-20Make these scripts more portable by taking advantage of automatic rc.dgrant1-2/+2
script handling and using @RCD_SCRIPTS_SHELL@. as discussed with jlam.
2002-09-19Take advantage of the auto-generation and installation of rc.d scripts.jlam1-11/+1
2002-09-12Default to slapd=NO if it's not defined.jlam1-1/+2
2002-09-10USE_PTHREAD died a long time ago; match pthread handling from buildlink.mk.jlam1-5/+3
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam5-13/+52
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
2002-08-19Update to 2.0.25. Fixes many random bugs.mycroft3-9/+9
OpenLDAP 2.0.25 Release Fixed slapd extended op reqdata crash bug (ITS#1721) OpenLDAP 2.0.24 Release Fixed slapd max incoming macro bug (ITS#1828) Fixed slapd acl group/dnaddr bug (ITS#1607) Fixed slapd connection management bug (ITS#1655) Fixed slapd port ntoh / addr init bugs (ITS#1615, ITS#1728) Fixed slapd PF_lOCAL typo (ITS#1660) Fixed slapd extended ops with NULL reqdata bug (ITS#1721) Fixed slapd replog logging without replica (ITS#1335) Fixed slapd NULL attrval indexing (ITS#1843) Fixed slurpd tls init bug (ITS#1613) Fixed back-ldbm dn normalization bug in onelevel searches (ITS#1654) Fixed back-ldbm modrdn root dn check (ITS#1761) Fixed back-ldbm idl overrun bug (ITS#1570) Fixed back-ldbm passwd textlen bug (ITS#1742) Fixed ber_bvstrdup() empty string bug (ITS#1662) Fixed ldapsearch filter bug (ITS#1649) Fixed maildap NULL domain bug (ITS#1022) Fixed libldap hostless URL bug (ITS#1697) Fixed liblutil /dev/urandom incomplete reads (ITS#1834) Fixed libldap_r threadpool free list (ITS#1839) Fixed libldap_r NT threads cond_broadcast (ITS#1865) Fixed sasl writes > 64K (ITS#1861) Fixed sasl session callback corruption (ITS#1799) Build environment Removed lint (ITS#1744) Documentation Updated release documents
2002-08-01Really remove USE_PTHREAD.jlam1-8/+5
2002-08-01Adjust to new pthread.buildlink.mk: remove USE_PTHREAD and replace withjlam1-12/+11
appropriate PTHREAD_OPTS incantation, and move the checks for the value of PTHREAD_TYPE below the inclusion of pthread.buildlink.mk.