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

(-)./bibletime/backend/clanguagemgr.cpp.ORI (-3 / +3 lines)
Lines 95-104 Link Here
95
95
96
		for (ListCSwordModuleInfo::iterator it(mods.begin()); it != end_it; ++it) {
96
		for (ListCSwordModuleInfo::iterator it(mods.begin()); it != end_it; ++it) {
97
			//   for (CSwordModuleInfo* m = mods.first(); m; m = mods.next()) {
97
			//   for (CSwordModuleInfo* m = mods.first(); m; m = mods.next()) {
98
			abbrev = (*it)->module()->Lang();
98
			const char* mod = (*it)->module()->Lang();
99
99
100
			if (abbrev && !abbrevs.contains(abbrev)) {
100
			if (mod && !abbrevs.contains(mod)) {
101
				abbrevs.append( abbrev );
101
				abbrevs.append( mod );
102
			}
102
			}
103
		};
103
		};
104
104
(-)./sword.m4.ori (-1 / +1 lines)
Lines 28-34 Link Here
28
dnl try to find Sword library files
28
dnl try to find Sword library files
29
AC_MSG_CHECKING([for Sword library files])
29
AC_MSG_CHECKING([for Sword library files])
30
AC_REQUIRE([AC_FIND_ZLIB])
30
AC_REQUIRE([AC_FIND_ZLIB])
31
ac_sword_library_dirs="$ac_sword_dir/lib $exec_prefix/lib $prefix/lib /usr/lib /usr/lib64 /usr/lib/sword /usr/local/lib /usr/local/lib/sword /usr/local/sword/lib"
31
ac_sword_library_dirs="$ac_sword_dir/lib64 $ac_sword_dir/lib $exec_prefix/lib $prefix/lib64 $prefix/lib /usr/lib /usr/lib64 /usr/lib/sword /usr/local/lib /usr/local/lib/sword /usr/local/sword/lib"
32
32
33
if test "x$ac_static_sword" = "xYES"; then
33
if test "x$ac_static_sword" = "xYES"; then
34
	SEARCH_LIBS="libsword.a";
34
	SEARCH_LIBS="libsword.a";

Return to bug 1560