summaryrefslogtreecommitdiffstats
path: root/redhat/applications/bibletime/bibletime-3.5.13.2-fix_sword_detection.patch
diff options
context:
space:
mode:
authorFrançois Andriot <albator78@libertysurf.fr>2014-10-19 18:08:03 +0200
committerFrançois Andriot <albator78@libertysurf.fr>2014-10-19 18:08:03 +0200
commit0d23af4ec611b2619c0061980ea8ae2bd8696251 (patch)
tree5ad781a438aa7213ba11a93258db3e94d5a6fd42 /redhat/applications/bibletime/bibletime-3.5.13.2-fix_sword_detection.patch
parent5d46a95df7e3b2a7e988cd053e9b5e1c71464aea (diff)
downloadtde-packaging-0d23af4ec611b2619c0061980ea8ae2bd8696251.tar.gz
tde-packaging-0d23af4ec611b2619c0061980ea8ae2bd8696251.zip
RPM Packaging: cleanup bibletime
Diffstat (limited to 'redhat/applications/bibletime/bibletime-3.5.13.2-fix_sword_detection.patch')
-rw-r--r--redhat/applications/bibletime/bibletime-3.5.13.2-fix_sword_detection.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/redhat/applications/bibletime/bibletime-3.5.13.2-fix_sword_detection.patch b/redhat/applications/bibletime/bibletime-3.5.13.2-fix_sword_detection.patch
deleted file mode 100644
index 0f6364921..000000000
--- a/redhat/applications/bibletime/bibletime-3.5.13.2-fix_sword_detection.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-commit 298da70ab4f6da3780c617a85957a80f2e7ae71b
-Author: Francois Andriot <francois.andriot@free.fr>
-Date: 1398949579 +0200
-
- Fix FTBFS on Fedora 20
- Fix custom-installed Sword detection
-
-diff --git a/bibletime/backend/clanguagemgr.cpp b/bibletime/backend/clanguagemgr.cpp
-index 8f73ec3..ac94790 100644
---- a/bibletime/backend/clanguagemgr.cpp
-+++ b/bibletime/backend/clanguagemgr.cpp
-@@ -95,10 +95,10 @@ const CLanguageMgr::LangMap& CLanguageMgr::availableLanguages() {
-
- for (ListCSwordModuleInfo::iterator it(mods.begin()); it != end_it; ++it) {
- // for (CSwordModuleInfo* m = mods.first(); m; m = mods.next()) {
-- abbrev = (*it)->module()->Lang();
-+ const char* mod = (*it)->module()->Lang();
-
-- if (abbrev && !abbrevs.contains(abbrev)) {
-- abbrevs.append( abbrev );
-+ if (mod && !abbrevs.contains(mod)) {
-+ abbrevs.append( mod );
- }
- };
-
-diff --git a/sword.m4 b/sword.m4
-index 2f19b3f..8326ba3 100644
---- a/sword.m4
-+++ b/sword.m4
-@@ -28,7 +28,7 @@ AC_ARG_ENABLE(static-sword,
- dnl try to find Sword library files
- AC_MSG_CHECKING([for Sword library files])
- AC_REQUIRE([AC_FIND_ZLIB])
--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"
-+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"
-
- if test "x$ac_static_sword" = "xYES"; then
- SEARCH_LIBS="libsword.a";