Displaying 4 results from an estimated 4 matches for "lsasl".
Did you mean:
sasl
2006 Dec 08
1
A mass O trouble with solaris 10 and Samba+ADS
...h
static ones (which is what I want).
The failure to configure with static libraries seems to be because
Openldap's configure picks up the presence of libsasl on Solaris 10 (not
present on solaris 9) and uses code found in it. The compile line
invoked by Samba's configure does not include -lsasl and hence it fails
to compile the program and give the above misleading error.
Setting
LDFLAGS="-L/usr/local/opt/openldap-2.3.27/lib -lsasl"
Makes configure work and samba compiles clean with only the static
libraries.
Also re-compiling OpenLDAP with
./configure -prefix=/usr/local/o...
2003 Nov 12
0
0.99.10.2 for debian
I just uploaded it to sid.
A woody backport is available from http://www.braincells.com/open/
I came across an error: giving --without-cyrus-sasl2 to the
configure script doesn't work i.e. it looks for -lsasl anyway.
Other than that, it seems to be working fine.
--
Jaldhar H. Vyas <jaldhar at debian.org>
La Salle Debain - http://www.braincells.com/debian/
2012 Mar 25
2
build postfix rpm with mysql
...-I/usr/include/pgsql"
AUXLIBS="${AUXLIBS} -lpq -lcrypt"
%endif
%if %{with_sasl}
if [ "%{with_sasl}" -le 1 ]; then
%define sasl_lib_dir %{_libdir}/sasl
CCARGS="${CCARGS} -DUSE_SASL_AUTH -DUSE_CYRUS_SASL"
AUXLIBS="${AUXLIBS} -L%{sasl_lib_dir} -lsasl"
else
%define sasl_lib_dir %{_libdir}/sasl2
CCARGS="${CCARGS} -I/usr/include/sasl -DUSE_SASL_AUTH -DUSE_CYRUS_SASL"
AUXLIBS="${AUXLIBS} -L%{sasl_lib_dir} -lsasl2"
fi
%endif
# Provide support for Dovecot SASL
%if %{with_dovecot}
CCARGS="${CCARGS} -DUS...
2011 Nov 19
4
build postfix spec w/ mysql
...-I/usr/include/pgsql"
AUXLIBS="${AUXLIBS} -lpq -lcrypt"
%endif
%if %{with_sasl}
if [ "%{with_sasl}" -le 1 ]; then
%define sasl_lib_dir %{_libdir}/sasl
CCARGS="${CCARGS} -DUSE_SASL_AUTH -DUSE_CYRUS_SASL"
AUXLIBS="${AUXLIBS} -L%{sasl_lib_dir} -lsasl"
else
%define sasl_lib_dir %{_libdir}/sasl2
CCARGS="${CCARGS} -I/usr/include/sasl -DUSE_SASL_AUTH -DUSE_CYRUS_SASL"
AUXLIBS="${AUXLIBS} -L%{sasl_lib_dir} -lsasl2"
fi
%endif
# Provide support for Dovecot SASL
%if %{with_dovecot}
CCARGS="${CCARGS} -DUS...