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

(-)koffice/configure.in (+23 lines)
Lines 553-558 Link Here
553
  fi
553
  fi
554
fi
554
fi
555
555
556
if test -z "$LIBWPD_LIBS"; then
557
  if test -n "$PKGCONFIG"; then
558
    vers=`$PKGCONFIG libwpd-0.9 --modversion 2>/dev/null`
559
    if test -n "$vers"
560
    then
561
       LIBWPD_LIBS="`$PKGCONFIG libwpd-0.9 --libs`"
562
       LIBWPD_RPATH=
563
       for args in $LIBWPD_LIBS; do
564
            case $args in
565
              -L*)
566
                 LIBWPD_RPATH="$LIBWPD_RPATH $args"
567
                 ;;
568
            esac
569
       done
570
       LIBWPD_RPATH=`echo $LIBWPD_RPATH | $SED -e "s/-L/-R/g"`
571
       LIBWPD_CFLAGS="`$PKGCONFIG libwpd-0.9 --cflags`"
572
573
       AC_DEFINE_UNQUOTED(HAVE_WPD, 1, [Defines if your system has the libwpd library])
574
       AC_DEFINE_UNQUOTED(HAVE_LIBWPD_090, 1, [Defines if your system has libpwd greater than or equal to v0.9.0])
575
576
    fi
577
  fi
578
fi
556
579
557
AC_SUBST(LIBWPD_LIBS)
580
AC_SUBST(LIBWPD_LIBS)
558
AC_SUBST(LIBWPD_CFLAGS)
581
AC_SUBST(LIBWPD_CFLAGS)
(-)koffice/filters/kword/wordperfect/configure.in.in (-1 lines)
Lines 42-48 Link Here
42
       AC_DEFINE_UNQUOTED(HAVE_WPD, 1, [Defines if your system has the libwpd library])
42
       AC_DEFINE_UNQUOTED(HAVE_WPD, 1, [Defines if your system has the libwpd library])
43
       AC_DEFINE_UNQUOTED(HAVE_LIBWPD_090, 1, [Defines if your system has libpwd greater than or equal to v0.9.0])
43
       AC_DEFINE_UNQUOTED(HAVE_LIBWPD_090, 1, [Defines if your system has libpwd greater than or equal to v0.9.0])
44
44
45
       AC_MSG_ERROR([[libwpd >= 0.9.0 is not yet supported!]])       
46
    fi
45
    fi
47
  fi
46
  fi
48
fi
47
fi

Return to bug 1169