SQLite database not working with FreeBSD binaries

3 posts / 0 new
Last post
AntumDeluge
AntumDeluge's picture

I built binaries for FreeBSD (https://sourceforge.net/projects/delugebuilds/files/network/quite-rss/) and they worked fine on they system from which they were built. Recently though, I reinstalled FreeBSD and downloaded my binaries. The GUI dependencies all seem to be satisfied, the application starts normally. But, I cannot add any news feeds. When I try to add a new feed there is no message about any error but no changes occur, but the feed does not get added. The feed's icon appears in the current tab, but nothing else. I think there is a problem with the SQLite database. I have SQLite installed:

$ sqlite -version
2.8.17

arhohryakov
SQLite v2?! Current verions

SQLite v2?! Current verions is 3.8.7.4.

AntumDeluge
AntumDeluge's picture
Hmmm, readelf reports that is

Hmmm, readelf reports that it is linked to libsqlite3.so.0:

Quote:
$ readelf -d /usr/local/bin/quiterss

Dynamic section at offset 0x2a6350 contains 36 entries:
  Tag        Type                         Name/Value
 0x0000000000000001 (NEEDED)             Shared library: [libsqlite3.so.0]
 0x0000000000000001 (NEEDED)             Shared library: [libQtWebKit.so.4]
 0x0000000000000001 (NEEDED)             Shared library: [libphonon.so.4]
 0x0000000000000001 (NEEDED)             Shared library: [libQtSql.so.4]
 0x0000000000000001 (NEEDED)             Shared library: [libQtXml.so.4]
 0x0000000000000001 (NEEDED)             Shared library: [libQtGui.so.4]
 0x0000000000000001 (NEEDED)             Shared library: [libQtNetwork.so.4]
 0x0000000000000001 (NEEDED)             Shared library: [libQtCore.so.4]
 0x0000000000000001 (NEEDED)             Shared library: [libc++.so.1]
 0x0000000000000001 (NEEDED)             Shared library: [libcxxrt.so.1]
 0x0000000000000001 (NEEDED)             Shared library: [libm.so.5]
 0x0000000000000001 (NEEDED)             Shared library: [libgcc_s.so.1]
 0x0000000000000001 (NEEDED)             Shared library: [libthr.so.3]
 0x0000000000000001 (NEEDED)             Shared library: [libc.so.7]

Changed the sqlite executable to version 3 but same result:

Quote:
$ sqlite --version
3.8.7.2 2014-11-18 20:57:56 2ab564bf9655b7c7b97ab85cafc8a48329b27f93

What's interesting though, and probably the problem is that I can't find any of those libQt* files on my system. I have a bunch of libQt5* objects.

I'm going to try rebuilding my Qt libraries because I don't think I compiled them myself. Then I'll try recompiling QuiteRSS.