By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1121
Collapse All | Expand All

(-)kio-ftps-0.1/admin/cvs.sh.autotools (-5 / +5 lines)
Lines 32-38 Link Here
32
required_autoconf_version="2.53 or newer"
32
required_autoconf_version="2.53 or newer"
33
AUTOCONF_VERSION=`$AUTOCONF --version | head -n 1`
33
AUTOCONF_VERSION=`$AUTOCONF --version | head -n 1`
34
case $AUTOCONF_VERSION in
34
case $AUTOCONF_VERSION in
35
  Autoconf*2.5* | autoconf*2.5* ) : ;;
35
  Autoconf*2.5* | autoconf*2.5* | autoconf*2.6* ) : ;;
36
  "" )
36
  "" )
37
    echo "*** AUTOCONF NOT FOUND!."
37
    echo "*** AUTOCONF NOT FOUND!."
38
    echo "*** KDE requires autoconf $required_autoconf_version"
38
    echo "*** KDE requires autoconf $required_autoconf_version"
Lines 47-53 Link Here
47
47
48
AUTOHEADER_VERSION=`$AUTOHEADER --version | head -n 1`
48
AUTOHEADER_VERSION=`$AUTOHEADER --version | head -n 1`
49
case $AUTOHEADER_VERSION in
49
case $AUTOHEADER_VERSION in
50
  Autoconf*2.5* | autoheader*2.5* ) : ;;
50
  Autoconf*2.5* | autoheader*2.5* | autoheader*2.6* ) : ;;
51
  "" )
51
  "" )
52
    echo "*** AUTOHEADER NOT FOUND!."
52
    echo "*** AUTOHEADER NOT FOUND!."
53
    echo "*** KDE requires autoheader $required_autoconf_version"
53
    echo "*** KDE requires autoheader $required_autoconf_version"
Lines 68-74 Link Here
68
    echo "*** KDE requires automake $required_automake_version"
68
    echo "*** KDE requires automake $required_automake_version"
69
    exit 1
69
    exit 1
70
    ;;
70
    ;;
71
  automake*1.6.* | automake*1.7* | automake*1.8* | automake*1.9*)
71
  automake*1.6.* | automake*1.7* | automake*1.8* | automake*1.9* | automake*1.1[0-9]* )
72
    echo "*** $AUTOMAKE_STRING found."
72
    echo "*** $AUTOMAKE_STRING found."
73
    UNSERMAKE=no
73
    UNSERMAKE=no
74
    ;;
74
    ;;
Lines 128-134 Link Here
128
echo "*** Creating configure"
128
echo "*** Creating configure"
129
call_and_fix_autoconf
129
call_and_fix_autoconf
130
130
131
if egrep "^AM_CONFIG_HEADER" configure.in >/dev/null 2>&1; then
131
if egrep "^A[CM]_CONFIG_HEADER" configure.in >/dev/null 2>&1; then
132
  echo "*** Creating config.h template"
132
  echo "*** Creating config.h template"
133
  $AUTOHEADER || exit 1
133
  $AUTOHEADER || exit 1
134
fi
134
fi
Lines 183-189 Link Here
183
  fi
183
  fi
184
fi
184
fi
185
$ACLOCAL $ACLOCALFLAGS
185
$ACLOCAL $ACLOCALFLAGS
186
if egrep "^AM_CONFIG_HEADER" configure.in >/dev/null 2>&1; then
186
if egrep "^A[CM]_CONFIG_HEADER" configure.in >/dev/null 2>&1; then
187
  echo "*** Creating config.h template"
187
  echo "*** Creating config.h template"
188
  $AUTOHEADER || exit 1
188
  $AUTOHEADER || exit 1
189
fi
189
fi
(-)kio-ftps-0.1/admin/configure.in.min.ORI (-1 / +1 lines)
Lines 41-47 Link Here
41
KDE_SET_PREFIX
41
KDE_SET_PREFIX
42
42
43
dnl generate the config header
43
dnl generate the config header
44
AM_CONFIG_HEADER(config.h) dnl at the distribution this done
44
AC_CONFIG_HEADER(config.h) dnl at the distribution this done
45
45
46
dnl Checks for programs.
46
dnl Checks for programs.
47
AC_CHECK_COMPILERS
47
AC_CHECK_COMPILERS

Return to bug 1121