~ubuntu-branches/ubuntu/utopic/knutclient/utopic

« back to all changes in this revision

Viewing changes to admin/configure.in.bot.end

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Quette
  • Date: 2008-06-19 11:09:50 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080619110950-izi2q2vd0dhwlpym
Tags: 0.9.4-1
* New upstream release
* Merge back Ubuntu changes
* debian/knutclient.menu: update section to fix lintian warnings
* debian/watch: update the pattern for matching new releases (Closes: #471247)
* debian/control:
  - move Homepage to the field and update the URL
  - update Standards-Version to 3.8.0
  - update debhelper Build-Depends to 5.0.51
  - add automake and autoconf to Build-Depends
  - update NUT URL
* debian/rules:
  - fix lintian warning debian-rules-ignores-make-clean-error
  - add a commented call to dh_icons

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Check if KDE_SET_PREFIX was called, and --prefix was passed to configure
 
2
if test -n "$kde_libs_prefix" -a -n "$given_prefix"; then
 
3
  # And if so, warn when they don't match
 
4
  if test "$kde_libs_prefix" != "$given_prefix"; then
 
5
    # And if kde doesn't know about the prefix yet
 
6
    echo ":"`kde-config --path exe`":" | grep ":$given_prefix/bin/:" 2>&1 >/dev/null
 
7
    if test $? -ne 0; then
 
8
      echo ""
 
9
      echo "Warning: you chose to install this package in $given_prefix,"
 
10
      echo "but KDE was found in $kde_libs_prefix."
 
11
      echo "For this to work, you will need to tell KDE about the new prefix, by ensuring"
 
12
      echo "that KDEDIRS contains it, e.g. export KDEDIRS=$given_prefix:$kde_libs_prefix"
 
13
      echo "Then restart KDE."
 
14
      echo ""
 
15
    fi
 
16
  fi
 
17
fi
 
18
 
 
19
if test x$GXX = "xyes" -a x$kde_have_gcc_visibility = "xyes" -a x$kde_cv_val_qt_gcc_visibility_patched = "xno"; then
 
20
  echo ""
 
21
  echo "Your GCC supports symbol visibility, but the patch for Qt supporting visibility"
 
22
  echo "was not included. Therefore, GCC symbol visibility support remains disabled."
 
23
  echo ""
 
24
  echo "For better performance, consider including the Qt visibility supporting patch"
 
25
  echo "located at:"
 
26
  echo ""
 
27
  echo "http://bugs.kde.org/show_bug.cgi?id=109386"
 
28
  echo ""
 
29
  echo "and recompile all of Qt and KDE. Note, this is entirely optional and"
 
30
  echo "everything will continue to work just fine without it."
 
31
  echo ""
 
32
fi
 
33
 
1
34
if test "$all_tests" = "bad"; then
2
35
  if test ! "$cache_file" = "/dev/null"; then
3
 
    echo ""    
 
36
    echo ""
4
37
    echo "Please remove the file $cache_file after changing your setup"
5
38
    echo "so that configure will find the changes next time."
6
39
    echo ""