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 1520
Collapse All | Expand All

(-)a/admin/cvs.sh (-3 / +3 lines)
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* | automake*1.10* | automake*1.11* | automake*1.12*)
71
  automake*1.6.* | automake*1.7* | automake*1.8* | automake*1.9* | automake*1.10* | automake*1.11* | automake*1.12* | automake*1.13* )
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[MC]_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
  touch config.h.in
134
  touch config.h.in
Lines 184-190 Link Here
184
  fi
184
  fi
185
fi
185
fi
186
$ACLOCAL $ACLOCALFLAGS
186
$ACLOCAL $ACLOCALFLAGS
187
if egrep "^AM_CONFIG_HEADER" configure.in >/dev/null 2>&1; then
187
if egrep "^A[MC]_CONFIG_HEADER" configure.in >/dev/null 2>&1; then
188
  echo "*** Creating config.h template"
188
  echo "*** Creating config.h template"
189
  $AUTOHEADER || exit 1
189
  $AUTOHEADER || exit 1
190
  touch config.h.in
190
  touch config.h.in
(-)a/admin/configure.in.min (-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_PROG_CC
47
AC_PROG_CC

Return to bug 1520