Bug 111511

Summary: Incorrect URL for dependencies in ./configure diagnostic message
Product: [Applications] digikam Reporter: Tristan Miller <psychonaut>
Component: Portability-CmakeAssignee: Digikam Developers <digikam-bugs-null>
Status: RESOLVED FIXED    
Severity: normal CC: caulier.gilles
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: openSUSE   
OS: Linux   
Latest Commit: Version Fixed In: 7.6.0

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