summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--configure.ac2
-rw-r--r--slapi-nis.spec7
3 files changed, 9 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 07329e5..d71a6b4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+0.28 * When building with OpenLDAP libraries, link with -lldap_r and
+ not with -lldap (rmeggins).
0.27 * Switch to slapi rwlocks instead of libpthread or NSPR rwlocks
(the rest of #730394/730403).
0.26 * Switch to libpthread rwlocks instead of NSPR rwlocks (part of
diff --git a/configure.ac b/configure.ac
index aceeb22..044a83b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -72,7 +72,7 @@ dirsrv)
openldap)
runtime_modules="nss nspr"
LDAP_CFLAGS=
- LDAP_LIBS="-lldap -llber"
+ LDAP_LIBS="-lldap_r -llber"
;;
*)
runtime_modules="nss nspr"
diff --git a/slapi-nis.spec b/slapi-nis.spec
index 4e6f205..27c864d 100644
--- a/slapi-nis.spec
+++ b/slapi-nis.spec
@@ -5,13 +5,14 @@
%endif
Name: slapi-nis
-Version: 0.27
+Version: 0.28
Release: 1%{?dist}
Summary: NIS Server and Schema Compatibility plugins for Directory Server
Group: System Environment/Daemons
License: GPLv2
URL: http://slapi-nis.fedorahosted.org/
Source0: https://fedorahosted.org/releases/s/l/slapi-nis/slapi-nis-%{version}.tar.gz
+#Source1: https://fedorahosted.org/releases/s/l/slapi-nis/slapi-nis-%{version}.tar.gz.sig
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: 389-ds-base-devel, %{ldap_impl}-devel, tcp_wrappers-devel
BuildRequires: nspr-devel, nss-devel, /usr/bin/rpcgen
@@ -64,6 +65,10 @@ rm -rf $RPM_BUILD_ROOT
%{_sbindir}/nisserver-plugin-defs
%changelog
+* Mon Dec 19 2011 Nalin Dahyabhai <nalin@redhat.com> - 0.28-1
+- when configured with --with-ldap=openldap, link with -lldap_r rather
+ than -lldap (rmeggins)
+
* Tue Dec 6 2011 Nalin Dahyabhai <nalin@redhat.com> - 0.27-1
- when building for 389-ds, use Slapi_RWLocks if they appear to be available
(the rest of #730394/#730403)