~ubuntu-branches/ubuntu/wily/knutclient/wily

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2013-12-15 01:56:29 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20131215015629-kbtxdi17e1gmxb5e
Tags: 1.0.5-1
Re-packaged and re-introduced to Debian (Closes: #695840).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dnl =======================================================
2
 
dnl FILE: ./admin/configure.in.min
3
 
dnl =======================================================
4
 
 
5
 
dnl    This file is part of the KDE libraries/packages
6
 
dnl    Copyright (C) 2001 Stephan Kulow (coolo@kde.org)
7
 
 
8
 
dnl    This file is free software; you can redistribute it and/or
9
 
dnl    modify it under the terms of the GNU Library General Public
10
 
dnl    License as published by the Free Software Foundation; either
11
 
dnl    version 2 of the License, or (at your option) any later version.
12
 
 
13
 
dnl    This library is distributed in the hope that it will be useful,
14
 
dnl    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
dnl    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16
 
dnl    Library General Public License for more details.
17
 
 
18
 
dnl    You should have received a copy of the GNU Library General Public License
19
 
dnl    along with this library; see the file COPYING.LIB.  If not, write to
20
 
dnl    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21
 
dnl    Boston, MA 02110-1301, USA.
22
 
 
23
 
# Original Author was Kalle@kde.org
24
 
# I lifted it in some mater. (Stephan Kulow)
25
 
# I used much code from Janos Farkas
26
 
 
27
 
dnl Process this file with autoconf to produce a configure script.
28
 
 
29
 
AC_INIT(acinclude.m4) dnl a source file from your sub dir
30
 
 
31
 
dnl This is so we can use kde-common
32
 
AC_CONFIG_AUX_DIR(admin)
33
 
 
34
 
dnl This ksh/zsh feature conflicts with `cd blah ; pwd`
35
 
unset CDPATH
36
 
 
37
 
dnl Checking host/target/build systems, for make, install etc.
38
 
AC_CANONICAL_SYSTEM 
39
 
dnl Perform program name transformation
40
 
AC_ARG_PROGRAM
41
 
 
42
 
dnl Automake doc recommends to do this only here. (Janos)
43
 
AM_INIT_AUTOMAKE(knutclient, 0.9.5) dnl searches for some needed programs
44
 
 
45
 
KDE_SET_PREFIX
46
 
 
47
 
dnl generate the config header
48
 
AM_CONFIG_HEADER(config.h) dnl at the distribution this done
49
 
 
50
 
dnl Checks for programs.
51
 
AC_CHECK_COMPILERS
52
 
AC_ENABLE_SHARED(yes)
53
 
AC_ENABLE_STATIC(no)
54
 
KDE_PROG_LIBTOOL
55
 
 
56
 
dnl for NLS support. Call them in this order!
57
 
dnl WITH_NLS is for the po files
58
 
AM_KDE_WITH_NLS
59
 
 
60
 
KDE_USE_QT(3.2.0)
61
 
AC_PATH_KDE
62
 
dnl =======================================================
63
 
dnl FILE: configure.in.in
64
 
dnl =======================================================
65
 
 
66
 
#MIN_CONFIG(3.2.0)
67
 
 
68
 
dnl PACKAGE set before
69
 
AC_C_BIGENDIAN
70
 
AC_CHECK_KDEMAXPATHLEN
71
 
 
72
 
KDE_CREATE_SUBDIRSLIST
73
 
AC_CONFIG_FILES([ Makefile ])
74
 
AC_CONFIG_FILES([ doc/Makefile ])
75
 
AC_CONFIG_FILES([ doc/cs/Makefile ])
76
 
AC_CONFIG_FILES([ doc/en/Makefile ])
77
 
AC_CONFIG_FILES([ pics/Makefile ])
78
 
AC_CONFIG_FILES([ po/Makefile ])
79
 
AC_CONFIG_FILES([ specs/Makefile ])
80
 
AC_CONFIG_FILES([ src/Makefile ])
81
 
AC_OUTPUT
82
 
# Check if KDE_SET_PREFIX was called, and --prefix was passed to configure
83
 
if test -n "$kde_libs_prefix" -a -n "$given_prefix"; then
84
 
  # And if so, warn when they don't match
85
 
  if test "$kde_libs_prefix" != "$given_prefix"; then
86
 
    # And if kde doesn't know about the prefix yet
87
 
    echo ":"`kde-config --path exe`":" | grep ":$given_prefix/bin/:" 2>&1 >/dev/null
88
 
    if test $? -ne 0; then
89
 
      echo ""
90
 
      echo "Warning: you chose to install this package in $given_prefix,"
91
 
      echo "but KDE was found in $kde_libs_prefix."
92
 
      echo "For this to work, you will need to tell KDE about the new prefix, by ensuring"
93
 
      echo "that KDEDIRS contains it, e.g. export KDEDIRS=$given_prefix:$kde_libs_prefix"
94
 
      echo "Then restart KDE."
95
 
      echo ""
96
 
    fi
97
 
  fi
98
 
fi
99
 
 
100
 
if test x$GXX = "xyes" -a x$kde_have_gcc_visibility = "xyes" -a x$kde_cv_val_qt_gcc_visibility_patched = "xno"; then
101
 
  echo ""
102
 
  echo "Your GCC supports symbol visibility, but the patch for Qt supporting visibility"
103
 
  echo "was not included. Therefore, GCC symbol visibility support remains disabled."
104
 
  echo ""
105
 
  echo "For better performance, consider including the Qt visibility supporting patch"
106
 
  echo "located at:"
107
 
  echo ""
108
 
  echo "http://bugs.kde.org/show_bug.cgi?id=109386"
109
 
  echo ""
110
 
  echo "and recompile all of Qt and KDE. Note, this is entirely optional and"
111
 
  echo "everything will continue to work just fine without it."
112
 
  echo ""
113
 
fi
114
 
 
115
 
if test "$all_tests" = "bad"; then
116
 
  if test ! "$cache_file" = "/dev/null"; then
117
 
    echo ""
118
 
    echo "Please remove the file $cache_file after changing your setup"
119
 
    echo "so that configure will find the changes next time."
120
 
    echo ""
121
 
  fi
122
 
else
123
 
  echo ""
124
 
  echo "Good - your configure finished. Start make now"
125
 
  echo ""
126
 
fi