Added $KDEDIR/lib/pkgconfig to pkg-config search path, and prepare for 0.87.

I can't believe I've waited two months since my last release. :(

svn path=/trunk/kdenonbeta/kdecvs-build/; revision=370047
wilder
Michael Pyne 22 years ago
parent 8951778bfc
commit 874724d5d8
  1. 2
      HISTORY
  2. 4
      doc.html.in
  3. 12
      kdecvs-build

@ -1,5 +1,7 @@
Version history: 0.87
* Added manual-update option.
* Added $KDEDIR/lib/pkgconfig to pkg-config search path for digikam (and other
programs that may use pkg-config with KDE in the future).
* Don't warn when specifying modules on the command line along with the
--install option.

@ -68,9 +68,11 @@ those who either can't or don't feel like installing it.</p>
<p id="emailaddy">It is authored by Michael Pyne (mpyne (AT) grammarian (DOT) homelinux
(DOT) net), and is one of several build scripts for this purpose.</p>
<p><b>?</b> v0.87<br/>
<p><b>2004-Dec-12</b> v0.87<br/>
New features:
<ul>
<li>Add KDE-specific directory to pkg-config search path, so that digikam
will build without any special help.</li>
<li>Added option <a href="#conf-manual-update">manual-update</a>, which
prevents a module from updating, building, and installing unless it is
specified on the command line.</li>

@ -625,6 +625,16 @@ sub initialize_environment
my $cvsserver = get_option ('global', 'cvs-server');
$ENV{'CVS_RSH'} = 'ssh' if $cvsserver =~ /^:ext:/;
my $pc_path = $ENV{'PKG_CONFIG_PATH'};
if ($ENV{'PKG_CONFIG_PATH'})
{
$ENV{'PKG_CONFIG_PATH'} = get_option('global', 'kdedir') . "/lib/pkgconfig:$pc_path";
}
else
{
$ENV{'PKG_CONFIG_PATH'} = get_option('global', 'kdedir') . "/lib/pkgconfig";
}
setup_module_environment ('global');
}
@ -708,7 +718,7 @@ sub process_arguments
{
my $arg;
my $author = "Michael Pyne <michael.pyne\@kdemail.net>";
my $version = "kdecvs-build 0.86\n";
my $version = "kdecvs-build 0.87\n";
my @argv;
while ($_ = shift @ARGV)

Loading…
Cancel
Save