On Mon, Feb 8, 2016 at 6:07 PM, Quanah Gibson-Mount <quanah(a)zimbra.com> wrote:
> --On Monday, February 08, 2016 6:04 PM -0600 Timothy Keith
> <timothy.g.keith(a)gmail.com> wrote:
>
>> On Sun, Feb 7, 2016 at 6:55 AM, Michael Ströder <michael(a)stroeder.com>
>> wrote:
>>>
>>> Timothy Keith wrote:
>>>>
>>>> How can I know that slapd was built with -enable-spasswd ?
>>>
>>>
>>> By looking at the configure command in the build script, spec file in
>>> source RPM or whatever produced the binary builds you're using.
>>>
>>> Ciao, Michael.
>>>
>>
>> I extracted the files from the yum binary packages. It is 2.4.40-7.
>> I don't think there is a way to determine what the configure options
>> were at build time.
>
>
> You need to download the *source* RPM not the *binary* RPM, as the source
> RPM includes the SPEC file used to build OpenLDAP.
>
> --Quanah
>
> --
>
> Quanah Gibson-Mount
> Platform Architect
> Zimbra, Inc.
> --------------------
> Zimbra :: the leader in open source messaging and collaboration
> A division of Synacor, Inc
This was found in a spec file from the src RPM : ./openldap-2/openldap.spec
%configure \
--enable-rlookups \
\
--with-tls=moznss \
--with-cyrus-sasl \
\
--enable-wrappers \
\
--enable-passwd \
\
--enable-cleartext \
--enable-crypt \
--enable-spasswd \
--disable-lmpasswd \
--enable-modules \
--disable-sql \
\
--libexecdir=%{_libdir} \
$@
Looks okay for pass-through. Thanks, Tim