From: Kern Sibbald Date: Tue, 7 Apr 2009 16:07:30 +0000 (+0000) Subject: Change default plugins dir to /usr/lib X-Git-Tag: Release-7.0.0~3153 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0d01abdf39b2d51256f8192e626027f4845cd476;p=bacula%2Fbacula Change default plugins dir to /usr/lib git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8703 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/ReleaseNotes b/bacula/ReleaseNotes index 693b463ace..10416d1974 100644 --- a/bacula/ReleaseNotes +++ b/bacula/ReleaseNotes @@ -70,6 +70,8 @@ where the Bacula binaries are installed. It is also possible to explicitly specify the libraries directory on the ./configure line (--libdir=/full-path/dir), but this should not be necessary. + ./configure --libdir= + If you have problems with libtool or you wish to use the old way of building libraries and linking them into Bacula, you can do so by disabling libtool on the configure command line with: @@ -89,6 +91,14 @@ files in /usr/share/doc/bacula by default. If you want to put them elsewhere use: ./configure --docdir= + +During the installation of Bacula, any plugins will be +installed in the plugindir, which is by default the +same as libdir (/usr/lib). You can specify an alternate +location with: + + ./configure --with-plugindir= + ============================================================== This release includes large number of new features and changes. diff --git a/bacula/autoconf/configure.in b/bacula/autoconf/configure.in index 49ceab0fd9..45659021db 100644 --- a/bacula/autoconf/configure.in +++ b/bacula/autoconf/configure.in @@ -1215,7 +1215,7 @@ AC_SUBST(scriptdir) # ------------------------------------------ # Where to place plugindir (plugin files) # ------------------------------------------ -plugindir=`eval echo ${sysconfdir}` +plugindir=`eval echo ${libdir}` AC_ARG_WITH(plugindir, AC_HELP_STRING([--with-plugindir=PATH], [specify path of Bacula plugins directory]), [ diff --git a/bacula/configure b/bacula/configure index 42afcd5d8d..088d982847 100755 --- a/bacula/configure +++ b/bacula/configure @@ -27365,7 +27365,7 @@ fi # ------------------------------------------ # Where to place plugindir (plugin files) # ------------------------------------------ -plugindir=`eval echo ${sysconfdir}` +plugindir=`eval echo ${libdir}` # Check whether --with-plugindir was given. if test "${with_plugindir+set}" = set; then diff --git a/bacula/technotes b/bacula/technotes index 9a599d95e8..6ee0b779f6 100644 --- a/bacula/technotes +++ b/bacula/technotes @@ -2,6 +2,8 @@ General: +06Apr09 +kes Change default plugins dir to /usr/lib. 05Apr09 kes Fix Win32 make clean to clean correctly kes Cleanup Win installer dialog messages a bit ...