4a6b86e
4a6b86e
%define pkgname   dirsrv
4a6b86e
4a6b86e
Summary:          389 Directory Server (base)
4a6b86e
Name:             389-ds-base
4a6b86e
Version:          1.2.1
a947b98
Release:          2%{?dist}
4a6b86e
License:          GPLv2 with exceptions
4a6b86e
URL:              http://port389.org/
4a6b86e
Group:            System Environment/Daemons
4a6b86e
BuildRoot:        %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
4a6b86e
Provides:         fedora-ds-base = %{version}-%{release}
4a6b86e
Obsoletes:        fedora-ds-base < 1.2.1-1
4a6b86e
4a6b86e
BuildRequires:    nspr-devel
4a6b86e
BuildRequires:    nss-devel
4a6b86e
BuildRequires:    svrcore-devel
4a6b86e
BuildRequires:    mozldap-devel
4a6b86e
BuildRequires:    db4-devel
4a6b86e
BuildRequires:    cyrus-sasl-devel
4a6b86e
BuildRequires:    icu
4a6b86e
BuildRequires:    libicu-devel
4a6b86e
# The following are needed to build the snmp ldap-agent
4a6b86e
BuildRequires:    net-snmp-devel
4a6b86e
%ifnarch sparc sparc64 ppc ppc64
4a6b86e
BuildRequires:    lm_sensors-devel
4a6b86e
%endif
4a6b86e
BuildRequires:    bzip2-devel
4a6b86e
BuildRequires:    zlib-devel
4a6b86e
BuildRequires:    openssl-devel
4a6b86e
BuildRequires:    tcp_wrappers
4a6b86e
BuildRequires:    libselinux-devel
4a6b86e
# the following is for the pam passthru auth plug-in
4a6b86e
BuildRequires:    pam-devel
4a6b86e
4a6b86e
# the following are needed for some of our scripts
4a6b86e
Requires:         mozldap-tools
4a6b86e
Requires:         perl-Mozilla-LDAP
4a6b86e
4a6b86e
# this is needed to setup SSL if you are not using the
4a6b86e
# administration server package
4a6b86e
Requires:         nss-tools
4a6b86e
4a6b86e
# these are not found by the auto-dependency method
4a6b86e
# they are required to support the mandatory LDAP SASL mechs
4a6b86e
Requires:         cyrus-sasl-gssapi
4a6b86e
Requires:         cyrus-sasl-md5
4a6b86e
4a6b86e
# this is needed for verify-db.pl
4a6b86e
Requires:         db4-utils
4a6b86e
4a6b86e
# This picks up libperl.so as a Requires, so we add this versioned one
4a6b86e
Requires:         perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
4a6b86e
4a6b86e
# for the init script
4a6b86e
Requires(post): /sbin/chkconfig
4a6b86e
Requires(preun): /sbin/chkconfig
4a6b86e
Requires(preun): /sbin/service
4a6b86e
4a6b86e
Source0:          http://port389.org/sources/%{name}-%{version}.tar.bz2
4a6b86e
# 389-ds-git.sh should be used to generate the source tarball from git
4a6b86e
Source1:          %{name}-git.sh
4a6b86e
Source2:          %{name}-devel.README
4a6b86e
4a6b86e
%description
4a6b86e
389 Directory Server is an LDAPv3 compliant server.  The base package includes
4a6b86e
the LDAP server and command line utilities for server administration.
4a6b86e
4a6b86e
%package          devel
4a6b86e
Summary:          Development libraries for 389 Directory Server
4a6b86e
Group:            Development/Libraries
4a6b86e
Requires:         %{name} = %{version}-%{release}
4a6b86e
Requires:         mozldap-devel
4a6b86e
Provides:         fedora-ds-base-devel = %{version}-%{release}
4a6b86e
Obsoletes:        fedora-ds-base-devel < 1.2.1-1
4a6b86e
4a6b86e
%description      devel
4a6b86e
Development Libraries and headers for the 389 Directory Server base package.
4a6b86e
4a6b86e
%prep
4a6b86e
%setup -q -n %{name}-%{version}
4a6b86e
cp %{SOURCE2} README.devel
4a6b86e
4a6b86e
%build
4a6b86e
%configure --enable-autobind
4a6b86e
4a6b86e
# Generate symbolic info for debuggers
4a6b86e
export XCFLAGS=$RPM_OPT_FLAGS
4a6b86e
4a6b86e
%ifarch x86_64 ppc64 ia64 s390x sparc64
4a6b86e
export USE_64=1
4a6b86e
%endif
4a6b86e
4a6b86e
make %{?_smp_mflags}
4a6b86e
4a6b86e
%install
4a6b86e
rm -rf $RPM_BUILD_ROOT 
4a6b86e
4a6b86e
make DESTDIR="$RPM_BUILD_ROOT" install
4a6b86e
4a6b86e
mkdir -p $RPM_BUILD_ROOT/var/log/%{pkgname}
4a6b86e
mkdir -p $RPM_BUILD_ROOT/var/lib/%{pkgname}
4a6b86e
mkdir -p $RPM_BUILD_ROOT/var/lock/%{pkgname}
4a6b86e
mkdir -p $RPM_BUILD_ROOT%{_includedir}/%{pkgname}
4a6b86e
4a6b86e
#remove libtool and static libs
4a6b86e
rm -f $RPM_BUILD_ROOT%{_libdir}/%{pkgname}/*.a
4a6b86e
rm -f $RPM_BUILD_ROOT%{_libdir}/%{pkgname}/*.la
4a6b86e
rm -f $RPM_BUILD_ROOT%{_libdir}/%{pkgname}/plugins/*.a
4a6b86e
rm -f $RPM_BUILD_ROOT%{_libdir}/%{pkgname}/plugins/*.la
4a6b86e
4a6b86e
install -p -m 644 ldap/servers/slapd/slapi-plugin.h $RPM_BUILD_ROOT%{_includedir}/%{pkgname}/
4a6b86e
install -p -m 644 ldap/servers/plugins/replication/winsync-plugin.h $RPM_BUILD_ROOT%{_includedir}/%{pkgname}/
4a6b86e
4a6b86e
# make sure perl scripts have a proper shebang 
4a6b86e
sed -i -e 's|#{{PERL-EXEC}}|#!/usr/bin/perl|' $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/script-templates/template-*.pl
4a6b86e
4a6b86e
%clean
4a6b86e
rm -rf $RPM_BUILD_ROOT
4a6b86e
4a6b86e
%post
4a6b86e
/sbin/chkconfig --add %{pkgname}
4a6b86e
/sbin/ldconfig
4a6b86e
# this has been problematic - if this directory
4a6b86e
# does not exist, the server will silently fail to
4a6b86e
# start - however, if the user has already created
4a6b86e
# it, we don't want to overwrite the permissions
4a6b86e
# on it - so we can't list it explicitly in the
4a6b86e
# files section - we list it as a ghost so that
4a6b86e
# it will be removed when the rpm is removed
4a6b86e
if [ ! -d %{_localstatedir}/run/%{pkgname} ] ; then
4a6b86e
    mkdir -p %{_localstatedir}/run/%{pkgname}
4a6b86e
fi
4a6b86e
4a6b86e
%preun
4a6b86e
if [ $1 = 0 ]; then
4a6b86e
        /sbin/service %{pkgname} stop >/dev/null 2>&1 || :
4a6b86e
        /sbin/chkconfig --del %{pkgname}
4a6b86e
fi
4a6b86e
4a6b86e
%postun -p /sbin/ldconfig
4a6b86e
4a6b86e
%files
4a6b86e
%defattr(-,root,root,-)
4a6b86e
%doc LICENSE EXCEPTION LICENSE.GPLv2
4a6b86e
%dir %{_sysconfdir}/%{pkgname}
4a6b86e
%dir %{_sysconfdir}/%{pkgname}/schema
4a6b86e
%config(noreplace)%{_sysconfdir}/%{pkgname}/schema/*.ldif
4a6b86e
%dir %{_sysconfdir}/%{pkgname}/config
4a6b86e
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/slapd-collations.conf
4a6b86e
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/certmap.conf
a947b98
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/template-initconfig
4a6b86e
%config(noreplace)%{_sysconfdir}/sysconfig/%{pkgname}
4a6b86e
%{_datadir}/%{pkgname}
4a6b86e
%{_sysconfdir}/rc.d/init.d/%{pkgname}
4a6b86e
%{_bindir}/*
4a6b86e
%{_sbindir}/*
4a6b86e
%dir %{_libdir}/%{pkgname}
4a6b86e
%{_libdir}/%{pkgname}/*.so.*
4a6b86e
%{_libdir}/%{pkgname}/perl
4a6b86e
%dir %{_libdir}/%{pkgname}/plugins
4a6b86e
%{_libdir}/%{pkgname}/plugins/*.so
4a6b86e
%dir %{_localstatedir}/lib/%{pkgname}
4a6b86e
%dir %{_localstatedir}/log/%{pkgname}
4a6b86e
%dir %{_localstatedir}/lock/%{pkgname}
4a6b86e
%{_mandir}/man1/*
4a6b86e
%{_mandir}/man8/*
4a6b86e
4a6b86e
%files devel
4a6b86e
%defattr(-,root,root,-)
4a6b86e
%doc LICENSE EXCEPTION LICENSE.GPLv2 README.devel
4a6b86e
%{_includedir}/%{pkgname}
4a6b86e
%{_libdir}/%{pkgname}/*.so
4a6b86e
4a6b86e
%changelog
a947b98
* Wed Aug 19 2009 Noriko Hosoi <nhosoi@redhat.com> - 1.2.1-2
a947b98
- added template-initconfig to %files
a947b98
4a6b86e
* Mon May 18 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.1-1
4a6b86e
- change name to 389
4a6b86e
- change version to 1.2.1
4a6b86e
- added initial support for numeric string syntax
4a6b86e
- added initial support for syntax validation
4a6b86e
- added initial support for paged results including sorting
4a6b86e
4a6b86e
* Tue Apr 28 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.0-4
4a6b86e
- final release 1.2.0
4a6b86e
- Resolves: bug 475338 - LOG: the intenal type of maxlogsize, maxdiskspace and minfreespace should be 64-bit integer
4a6b86e
- Resolves: bug 496836 - SNMP ldap-agent on Solaris: Unable to open semaphore for server: 389
4a6b86e
- CVS tag: FedoraDirSvr_1_2_0 FedoraDirSvr_1_2_0_20090428
4a6b86e
4a6b86e
* Mon Apr  6 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.0-3
4a6b86e
- re-enable ppc builds
4a6b86e
4a6b86e
* Thu Apr  2 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.0-2
4a6b86e
- exclude ppc builds - needs extensive porting work
4a6b86e
4a6b86e
* Mon Mar 30 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.0-1
4a6b86e
- new release 1.2.0
4a6b86e
- Made devel package depend on mozldap-devel
4a6b86e
- only create run dir if it does not exist
4a6b86e
- CVS tag: FedoraDirSvr_1_2_0_RC1 FedoraDirSvr_1_2_0_RC1_20090330
4a6b86e
4a6b86e
* Mon Oct 30 2008 Noriko Hosoi <nhosoi@redhat.com> - 1.1.3-7
4a6b86e
- added db4-utils to Requires for verify-db.pl
4a6b86e
4a6b86e
* Mon Oct 13 2008 Noriko Hosoi <nhosoi@redhat.com> - 1.1.3-6
4a6b86e
- Enabled LDAPI autobind
4a6b86e
4a6b86e
* Thu Oct  9 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.3-5
4a6b86e
- updated update to patch bug463991-bdb47.patch
4a6b86e
4a6b86e
* Thu Oct  9 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.3-4
4a6b86e
- updated patch bug463991-bdb47.patch
4a6b86e
4a6b86e
* Mon Sep 29 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.3-3
4a6b86e
- added patch bug463991-bdb47.patch
4a6b86e
- make ds work with bdb 4.7
4a6b86e
4a6b86e
* Wed Sep 24 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.3-2
4a6b86e
- rolled back bogus winsync memory leak fix
4a6b86e
4a6b86e
* Tue Sep 23 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.3-1
4a6b86e
- winsync api improvements for modify operations
4a6b86e
4a6b86e
* Fri Jun 13 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.2-1
4a6b86e
- This is the 1.1.2 release.  The bugs fixed can be found here
4a6b86e
- https://bugzilla.redhat.com/showdependencytree.cgi?id=452721
4a6b86e
- Added winsync-plugin.h to the devel subpackage
4a6b86e
4a6b86e
* Fri Jun  6 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.1-2
4a6b86e
- bump rev to rebuild and pick up new version of ICU
4a6b86e
4a6b86e
* Fri May 23 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.1-1
4a6b86e
- 1.1.1 release candidate - several bug fixes
4a6b86e
4a6b86e
* Wed Apr 16 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.0.1-4
4a6b86e
- fix bugzilla 439829 - patch to allow working with NSS 3.11.99 and later
4a6b86e
4a6b86e
* Tue Mar 18 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.1.0.1-3
4a6b86e
- add patch to allow server to work with NSS 3.11.99 and later
4a6b86e
- do NSS_Init after fork but before detaching from console
4a6b86e
4a6b86e
* Tue Mar 18 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.1.0.1-3
4a6b86e
- add Requires for versioned perl (libperl.so)
4a6b86e
4a6b86e
* Wed Feb 27 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.0.1-2
4a6b86e
- previous fix for 434403 used the wrong patch
4a6b86e
- this is the right one
4a6b86e
4a6b86e
* Wed Feb 27 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.0.1-1
4a6b86e
- Resolves bug 434403 - GCC 4.3 build fails
4a6b86e
- Rolled new source tarball which includes Nathan's fix for the struct ucred
4a6b86e
- NOTE: Change version back to 1.1.1 for next release
4a6b86e
- this release was pulled from CVS tag FedoraDirSvr110_gcc43
4a6b86e
4a6b86e
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.1.0-5
4a6b86e
- Autorebuild for GCC 4.3
4a6b86e
4a6b86e
* Thu Dec 20 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-4
4a6b86e
- This is the GA release of Fedora DS 1.1
4a6b86e
- Removed version numbers for BuildRequires and Requires
4a6b86e
- Added full URL to source tarball
4a6b86e
4a6b86e
* Fri Dec 07 2007 Release Engineering <rel-eng at fedoraproject dot org> - 1.1.0-3
4a6b86e
- Rebuild for deps
4a6b86e
4a6b86e
* Wed Nov  7 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-2.0
4a6b86e
- This is the beta2 release
4a6b86e
- new file added to package - /etc/sysconfig/dirsrv - for setting
4a6b86e
- daemon environment as is usual in other linux daemons
4a6b86e
4a6b86e
* Thu Aug 16 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.2
4a6b86e
- fix build breakage due to open()
4a6b86e
- mock could not find BuildRequires: db4-devel >= 4.2.52
4a6b86e
- mock works if >= version is removed - it correctly finds db4.6
4a6b86e
4a6b86e
* Fri Aug 10 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.1
4a6b86e
- Change pathnames to use the pkgname macro which is dirsrv
4a6b86e
- get rid of cvsdate in source name
4a6b86e
4a6b86e
* Fri Jul 20 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.3.20070720
4a6b86e
- Added Requires for perldap, cyrus sasl plugins
4a6b86e
- Removed template-migrate* files
4a6b86e
- Added perl module directory
4a6b86e
- Removed install.inf - setup-ds.pl can now easily generate one
4a6b86e
4a6b86e
* Mon Jun 18 2007 Nathan Kinder <nkinder@redhat.com> - 1.1.0-0.2.20070320
4a6b86e
- added requires for mozldap-tools
4a6b86e
4a6b86e
* Tue Mar 20 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.1.20070320
4a6b86e
- update to latest sources
4a6b86e
- added migrateTo11 to allow migrating instances from 1.0.x to 1.1
4a6b86e
- ldapi support
4a6b86e
- fixed pam passthru plugin ENTRY method
4a6b86e
4a6b86e
* Fri Feb 23 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.1.20070223
4a6b86e
- Renamed package to fedora-ds-base, but keep names of paths/files/services the same
4a6b86e
- use the shortname macro (fedora-ds) for names of paths, files, and services instead
4a6b86e
- of name, so that way we can continue to use e.g. /etc/fedora-ds instead of /etc/fedora-ds-base
4a6b86e
- updated to latest sources
4a6b86e
4a6b86e
* Tue Feb 13 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.1.20070213
4a6b86e
- More cleanup suggested by Dennis Gilmore
4a6b86e
- This is the fedora extras candidate based on cvs tag FedoraDirSvr110a1
4a6b86e
4a6b86e
* Fri Feb  9 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.el4.20070209
4a6b86e
- latest sources
4a6b86e
- added init scripts
4a6b86e
- use /etc as instconfigdir
4a6b86e
4a6b86e
* Wed Feb  7 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.el4.20070207
4a6b86e
- latest sources
4a6b86e
- moved all executables to _bindir
4a6b86e
4a6b86e
* Mon Jan 29 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.el4.20070129
4a6b86e
- latest sources
4a6b86e
- added /var/tmp/fedora-ds to dirs
4a6b86e
4a6b86e
* Fri Jan 26 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-8.el4.20070125
4a6b86e
- added logconv.pl
4a6b86e
- added slapi-plugin.h to devel package
4a6b86e
- added explicit dirs for /var/log/fedora-ds et. al.
4a6b86e
4a6b86e
* Thu Jan 25 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-7.el4.20070125
4a6b86e
- just move all .so files into the base package from the devel package
4a6b86e
4a6b86e
* Thu Jan 25 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-6.el4.20070125
4a6b86e
- Move the plugin *.so files into the main package instead of the devel
4a6b86e
- package because they are loaded directly by name via dlopen
4a6b86e
4a6b86e
* Fri Jan 19 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-5.el4.20070125
4a6b86e
- Move the script-templates directory to datadir/fedora-ds
4a6b86e
4a6b86e
* Fri Jan 19 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-4.el4.20070119
4a6b86e
- change mozldap to mozldap6
4a6b86e
4a6b86e
* Fri Jan 19 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-3.el4.20070119
4a6b86e
- remove . from cvsdate define
4a6b86e
4a6b86e
* Fri Jan 19 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-2.el4.20070119
4a6b86e
- Having a problem building in Brew - may be Release format
4a6b86e
4a6b86e
* Fri Jan 19 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.el4.cvs20070119
4a6b86e
- Changed version to 1.1.0 and added Release 1.el4.cvs20070119
4a6b86e
- merged in changes from Fedora Extras candidate spec file
4a6b86e
4a6b86e
* Mon Jan 15 2007 Rich Megginson <rmeggins@redhat.com> - 1.1-0.1.cvs20070115
4a6b86e
- Bump component versions (nspr, nss, svrcore, mozldap) to their latest
4a6b86e
- remove unneeded patches
4a6b86e
4a6b86e
* Tue Jan 09 2007 Dennis Gilmore <dennis@ausil.us> - 1.1-0.1.cvs20070108
4a6b86e
- update to a cvs snapshot
4a6b86e
- fedorafy the spec 
4a6b86e
- create -devel subpackage
4a6b86e
- apply a patch to use mozldap not mozldap6
4a6b86e
- apply a patch to allow --prefix to work correctly
4a6b86e
4a6b86e
* Mon Dec 4 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-16
4a6b86e
- Fixed the problem where the server would crash upon shutdown in dblayer
4a6b86e
- due to a race condition among the database housekeeping threads
4a6b86e
- Fix a problem with normalized absolute paths for db directories
4a6b86e
4a6b86e
* Tue Nov 28 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-15
4a6b86e
- Touch all of the ldap/admin/src/scripts/*.in files so that they
4a6b86e
- will be newer than their corresponding script template files, so
4a6b86e
- that make will rebuild them.
4a6b86e
4a6b86e
* Mon Nov 27 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-14
4a6b86e
- Chown new schema files when copying during instance creation
4a6b86e
4a6b86e
* Tue Nov 21 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-13
4a6b86e
- Configure will get ldapsdk_bindir from pkg-config, or $libdir/mozldap6
4a6b86e
4a6b86e
* Tue Nov 21 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-12
4a6b86e
- use eval to sed ./configure into ../configure
4a6b86e
4a6b86e
* Tue Nov 21 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-11
4a6b86e
- jump through hoops to be able to run ../configure
4a6b86e
4a6b86e
* Tue Nov 21 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-10
4a6b86e
- Need to make built dir in setup section
4a6b86e
4a6b86e
* Tue Nov 21 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-9
4a6b86e
- The template scripts needed to use @libdir@ instead of hardcoding
4a6b86e
- /usr/lib
4a6b86e
- Use make DESTDIR=$RPM_BUILD_ROOT install instead of % makeinstall
4a6b86e
- do the actual build in a "built" subdirectory, until we remove
4a6b86e
- the old script templates
4a6b86e
4a6b86e
* Thu Nov 16 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-8
4a6b86e
- Make replication plugin link with libdb
4a6b86e
4a6b86e
* Wed Nov 15 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-7
4a6b86e
- Have make define LIBDIR, BINDIR, etc. for C code to use
4a6b86e
- especially for create_instance.h
4a6b86e
4a6b86e
* Tue Nov 14 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-6
4a6b86e
- Forgot to checkin new config.h.in for AC_CONFIG_HEADERS
4a6b86e
4a6b86e
* Tue Nov 14 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-5
4a6b86e
- Add perldap as a Requires; update sources
4a6b86e
4a6b86e
* Thu Nov 9 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-4
4a6b86e
- Fix ds_newinst.pl
4a6b86e
- Remove obsolete #defines
4a6b86e
4a6b86e
* Thu Nov 9 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-3
4a6b86e
- Update sources; rebuild to populate brew yum repo with dirsec-nss
4a6b86e
4a6b86e
* Tue Nov 7 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-2
4a6b86e
- Update sources
4a6b86e
4a6b86e
* Thu Nov 2 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-1
4a6b86e
- initial revision