source:
scripts/patches/cyrus-sasl-2.1.20-set_plugindir_from_libdir.patch@
76a1d35
Last change on this file since 76a1d35 was 7f65c0e, checked in by , 19 years ago | |
---|---|
|
|
File size: 2.9 KB |
-
cyrus-sasl-2.1.
Submitted By: Ryan Oliver <ryan.oliver@pha.com.au> Date: 2004-10-25 Initial Package Version: 2.1.20 (may apply to earlier) Origin: Ryan Oliver Description: This patch ensures that the plugin directory gets located under the same directory specified with "--with-libdir=" . diff -uNr cyrus-sasl-2.1.20-orig/Makefile.in cyrus-sasl-2.1.20/Makefile.in
old new 656 656 @find $(distdir) -exec chmod o+w {} ';' 657 657 @find $(distdir) -name CVS -print | xargs -t rm -rf 658 658 install-exec-local: $(INSTALLOSX) 659 @if test "$(plugindir)" != "$( prefix)/lib/sasl2"; then \659 @if test "$(plugindir)" != "$(libdir)/sasl2"; then \ 660 660 echo "********************************************************"; \ 661 661 echo "* WARNING:"; \ 662 echo "* Plugins are being installed into $( prefix)/lib/sasl2,"; \662 echo "* Plugins are being installed into $(libdir)/sasl2,"; \ 663 663 echo "* but the library will look for them in $(plugindir)."; \ 664 664 echo "* You need to make sure that the plugins will eventually"; \ 665 665 echo "* be in $(plugindir) -- the easiest way is to make a"; \ 666 echo "* symbolic link from $(plugindir) to $( prefix)/lib/sasl2,"; \666 echo "* symbolic link from $(plugindir) to $(libdir)/sasl2,"; \ 667 667 echo "* but this may not be appropriate for your site, so this"; \ 668 668 echo "* installation procedure won't do it for you."; \ 669 669 echo "*"; \ -
cyrus-sasl-2.1.
diff -uNr cyrus-sasl-2.1.20-orig/configure cyrus-sasl-2.1.20/configure
old new 904 904 --with-pgsql=PATH use PostgreSQL from PATH 905 905 --with-sqlite=PATH use SQLite from PATH 906 906 --with-plugindir=DIR set the directory where plugins will 907 be found [ /usr/lib/sasl2]907 be found [LIBDIR/sasl2] 908 908 --with-rc4 use internal rc4 routines [yes] 909 909 --with-dmalloc=DIR with DMALLOC support (for test applications) [no] 910 910 --with-sfio=DIR with SFIO support (for smtptest/libsfsasl) [no] … … 11437 11437 withval="$with_plugindir" 11438 11438 plugindir=$withval 11439 11439 else 11440 plugindir= /usr/lib/sasl211440 plugindir=${libdir}/sasl2 11441 11441 fi; 11442 11442 11443 11443 cat >>confdefs.h <<_ACEOF -
plugins/Makefile.in
diff -uNr cyrus-sasl-2.1.20-orig/plugins/Makefile.in cyrus-sasl-2.1.20/plugins/Makefile.in
old new 255 255 256 256 common_sources = plugin_common.c plugin_common.h 257 257 258 sasldir = $( prefix)/lib/sasl2258 sasldir = $(libdir)/sasl2 259 259 sasl_LTLIBRARIES = @SASL_MECHS@ 260 260 EXTRA_LTLIBRARIES = libplain.la libanonymous.la libkerberos4.la libcrammd5.la \ 261 261 libgssapiv2.la libdigestmd5.la liblogin.la libsrp.la libotp.la \
Note:
See TracBrowser
for help on using the repository browser.