forked from jengelh/openldap2
Accepting request 62461 from network:ldap:OpenLDAP:RE24
OBS-URL: https://build.opensuse.org/request/show/62461 OBS-URL: https://build.opensuse.org/package/show/network:ldap/openldap2?expand=0&rev=66
This commit is contained in:
parent
b31d8853df
commit
24a254134d
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 22 09:46:04 UTC 2011 - rhafer@suse.de
|
||||||
|
|
||||||
|
- Surpress gcc warnings about extra format string arguments for 2.3.x
|
||||||
|
built as well.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 14 11:09:36 UTC 2011 - rhafer@suse.de
|
Mon Feb 14 11:09:36 UTC 2011 - rhafer@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package openldap2-client
|
# spec file for package openldap2
|
||||||
#
|
#
|
||||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
%define run_test_suite 1
|
%define run_test_suite 1
|
||||||
|
|
||||||
Name: openldap2-client
|
Name: openldap2-client
|
||||||
BuildRequires: cyrus-sasl-devel libopenssl-devel
|
BuildRequires: cyrus-sasl-devel libopenssl-devel
|
||||||
%if %sles_version == 9 || %sles_version == 10
|
%if %sles_version == 9 || %sles_version == 10
|
||||||
BuildRequires: -libopenssl-devel -pwdutils openssl-devel
|
BuildRequires: -libopenssl-devel -pwdutils openssl-devel
|
||||||
@ -33,11 +33,11 @@ BuildRequires: db-devel openslp-devel tcpd-devel unixODBC-devel
|
|||||||
%if %sles_version == 9 || %sles_version == 10
|
%if %sles_version == 9 || %sles_version == 10
|
||||||
BuildRequires: -db-devel libdb-4_5-devel
|
BuildRequires: -db-devel libdb-4_5-devel
|
||||||
%endif
|
%endif
|
||||||
Group: Productivity/Networking/LDAP/Clients
|
Group: Productivity/Networking/LDAP/Servers
|
||||||
Conflicts: openldap
|
Conflicts: openldap
|
||||||
Requires: libldap-2_4-2 = %{version}
|
Requires: libldap-2_4-2 = %{version}
|
||||||
PreReq: %insserv_prereq %fillup_prereq /usr/sbin/useradd /usr/sbin/groupadd /usr/bin/grep
|
PreReq: %insserv_prereq %fillup_prereq /usr/sbin/useradd /usr/sbin/groupadd /usr/bin/grep
|
||||||
Summary: The OpenLDAP commandline client tools
|
Summary: The OpenLDAP Server
|
||||||
%else
|
%else
|
||||||
Group: Productivity/Networking/LDAP/Clients
|
Group: Productivity/Networking/LDAP/Clients
|
||||||
Conflicts: openldap-client
|
Conflicts: openldap-client
|
||||||
@ -80,14 +80,6 @@ Authors:
|
|||||||
--------
|
--------
|
||||||
The OpenLDAP Project <project@openldap.org>
|
The OpenLDAP Project <project@openldap.org>
|
||||||
|
|
||||||
This package contains the OpenLDAP client utilities.
|
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
|
||||||
--------
|
|
||||||
The OpenLDAP Project <project@openldap.org>
|
|
||||||
|
|
||||||
|
|
||||||
%package -n openldap2-back-perl
|
%package -n openldap2-back-perl
|
||||||
License: BSD3c(or similar) ; openldap 2.8
|
License: BSD3c(or similar) ; openldap 2.8
|
||||||
Summary: OpenLDAP Perl Back-End
|
Summary: OpenLDAP Perl Back-End
|
||||||
@ -163,17 +155,6 @@ Authors:
|
|||||||
%else
|
%else
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The Lightweight Directory Access Protocol (LDAP) is used to access
|
|
||||||
online directory services. It runs directly over TCP and can be used to
|
|
||||||
access a stand-alone LDAP directory service or to access a directory
|
|
||||||
service that has an X.500 back-end.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
|
||||||
--------
|
|
||||||
The OpenLDAP Project <project@openldap.org>
|
|
||||||
|
|
||||||
This package contains the OpenLDAP client utilities.
|
This package contains the OpenLDAP client utilities.
|
||||||
|
|
||||||
|
|
||||||
@ -293,7 +274,7 @@ cd ../openldap-2.3.37
|
|||||||
libtoolize --force
|
libtoolize --force
|
||||||
#aclocal -I build
|
#aclocal -I build
|
||||||
autoreconf
|
autoreconf
|
||||||
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -DLDAP_DEPRECATED"
|
export CFLAGS="$RPM_OPT_FLAGS -Wno-format-extra-args -fno-strict-aliasing -DLDAP_DEPRECATED"
|
||||||
./configure --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc \
|
./configure --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc \
|
||||||
--localstatedir=/var/run/slapd --libexecdir=/usr/lib/openldap \
|
--localstatedir=/var/run/slapd --libexecdir=/usr/lib/openldap \
|
||||||
--libdir=%{_libdir} --mandir=%{_mandir} --enable-aci \
|
--libdir=%{_libdir} --mandir=%{_mandir} --enable-aci \
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 22 09:46:04 UTC 2011 - rhafer@suse.de
|
||||||
|
|
||||||
|
- Surpress gcc warnings about extra format string arguments for 2.3.x
|
||||||
|
built as well.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 14 11:09:36 UTC 2011 - rhafer@suse.de
|
Mon Feb 14 11:09:36 UTC 2011 - rhafer@suse.de
|
||||||
|
|
||||||
|
@ -33,11 +33,11 @@ BuildRequires: db-devel openslp-devel tcpd-devel unixODBC-devel
|
|||||||
%if %sles_version == 9 || %sles_version == 10
|
%if %sles_version == 9 || %sles_version == 10
|
||||||
BuildRequires: -db-devel libdb-4_5-devel
|
BuildRequires: -db-devel libdb-4_5-devel
|
||||||
%endif
|
%endif
|
||||||
Group: Productivity/Networking/LDAP/Clients
|
Group: Productivity/Networking/LDAP/Servers
|
||||||
Conflicts: openldap
|
Conflicts: openldap
|
||||||
Requires: libldap-2_4-2 = %{version}
|
Requires: libldap-2_4-2 = %{version}
|
||||||
PreReq: %insserv_prereq %fillup_prereq /usr/sbin/useradd /usr/sbin/groupadd /usr/bin/grep
|
PreReq: %insserv_prereq %fillup_prereq /usr/sbin/useradd /usr/sbin/groupadd /usr/bin/grep
|
||||||
Summary: The OpenLDAP commandline client tools
|
Summary: The OpenLDAP Server
|
||||||
%else
|
%else
|
||||||
Group: Productivity/Networking/LDAP/Clients
|
Group: Productivity/Networking/LDAP/Clients
|
||||||
Conflicts: openldap-client
|
Conflicts: openldap-client
|
||||||
@ -274,7 +274,7 @@ cd ../openldap-2.3.37
|
|||||||
libtoolize --force
|
libtoolize --force
|
||||||
#aclocal -I build
|
#aclocal -I build
|
||||||
autoreconf
|
autoreconf
|
||||||
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -DLDAP_DEPRECATED"
|
export CFLAGS="$RPM_OPT_FLAGS -Wno-format-extra-args -fno-strict-aliasing -DLDAP_DEPRECATED"
|
||||||
./configure --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc \
|
./configure --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc \
|
||||||
--localstatedir=/var/run/slapd --libexecdir=/usr/lib/openldap \
|
--localstatedir=/var/run/slapd --libexecdir=/usr/lib/openldap \
|
||||||
--libdir=%{_libdir} --mandir=%{_mandir} --enable-aci \
|
--libdir=%{_libdir} --mandir=%{_mandir} --enable-aci \
|
||||||
|
Loading…
Reference in New Issue
Block a user