This is a discussion on Re: Postfix, TLS and SASL difficulties on OpenBSD within the mailing.postfix.users forums, part of the Mail Servers and Related category; Am Montag, 10. Mai 2004 22:51 schrieb Ed Vazquez: > [snip] > > > Please show one of the *....
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Am Montag, 10. Mai 2004 22:51 schrieb Ed Vazquez:
> [snip] > > > Please show one of the *.la-files in the Plugin-Directory. > > # more /usr/local/lib/sasl2/libplain.la > # libplain.la - a libtool library file > # Generated by ltmain.sh - GNU libtool 1.3.5 (1.385.2.206 > 2000/05/27 11:12:27) > # > # Please DO NOT delete this file! > # It is necessary for linking the library. > > # The name that we can dlopen(3). > dlname='' This is your Problem. There should be the Name of the Shared-Object-File, but it is empty. Maybe there goes something wrong with libtool. Please try to build it first with almost default-options. Maybe it is a try worth to fill here the libname in. dlname='libplain.a' And try to start Postfix/smtpd again. > # Names of this library. > library_names='' > > # The name of the static archive. > old_library='libplain.a' > > # Libraries that this one depends upon. > dependency_libs=' -L/usr/local/lib -L/usr/lib -lresolv -lresolv' > > # Version information for libplain. > current=2 > age=0 > revision=18 > > # Is this an already installed library? > installed=yes > > # Directory that this library needs to be installed in: > libdir='/usr/lib/sasl2' > > > And the Build-Commands for sasl. > > ./configure --sysconfdir=/etc/cyrus-sasl --localstatedir=/var > --infodir=/usr/share/info --mandir=/usr/share/man > --enable-dependency-tracking --enable-gssapi=/usr --with-login > --with-dblib=gdbm --with-saslauthd=/var/sasl2 --with-staticsasl > CPPFLAGS="-I/usr/include/kerberosV" Is there a special reason, why you build it with --with-staticsasl? We had the same Problem here with an AIX-Installation. -- Andreas |