Bug 111511 - Incorrect URL for dependencies in ./configure diagnostic message
Summary: Incorrect URL for dependencies in ./configure diagnostic message
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Portability-Cmake (show other bugs)
Version: unspecified
Platform: openSUSE Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-08-25 20:09 UTC by Tristan Miller
Modified: 2022-01-23 04:48 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 7.6.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tristan Miller 2005-08-25 20:09:25 UTC
Version:            (using KDE KDE 3.4.2)
Installed from:    SuSE RPMs

To reproduce:

1. Download and untar digikam-0.8.0-beta1.tar.bz2
2. Run ./configure on a system which does not have libkipi installed.

Observed behaviour:
3. ./configure prints the following diagnostic message:
-- libkipi found.................. NO

digiKam needs libkipi. You need to install libkipi first
libkipi website is at http://extragear.kde.org/apps/kipi.php

However, that URL is invalid.
Comment 1 Renchi Raju 2005-08-26 12:04:19 UTC
SVN commit 453470 by pahlibar:

correct kipi url

BUGS: 111511


 M  +1 -1      configure.in.bot  


--- trunk/extragear/graphics/digikam/configure.in.bot #453469:453470
@@ -55,7 +55,7 @@
   echo "-- libkipi found.................. NO"
   echo ""
   echo "digiKam needs libkipi. You need to install libkipi first"
-  echo "libkipi website is at http://extragear.kde.org/apps/kipi.php"
+  echo "libkipi website is at http://extragear.kde.org/apps/kipi"
   echo ""
   all_tests=bad
 else