os2 compatibility

This commit is contained in:
Martin Rotter 2021-02-22 15:36:37 +01:00
parent 5f49c2b015
commit f6dc53f059
2 changed files with 12 additions and 0 deletions

View file

@ -22,6 +22,7 @@
* [GUI tweaking](#gui-tweaking) * [GUI tweaking](#gui-tweaking)
* [Miscellaneous](#miscellaneous) * [Miscellaneous](#miscellaneous)
* [Command line interface](#cli) * [Command line interface](#cli)
* [OS/2](#cli)
* [Cleaning database](#cleaning-database) * [Cleaning database](#cleaning-database)
* [Portable user data](#portable-user-data) * [Portable user data](#portable-user-data)
* [Downloading new messages](#downloading-new-messages) * [Downloading new messages](#downloading-new-messages)
@ -250,6 +251,16 @@ Options:
-v, --version Displays version information. -v, --version Displays version information.
``` ```
## OS/2
RSS Guard can run on OS/2 and if you want to compile it by yourself, you need to make sure you have all dependencies installed:
* `os2-base`,
* all `gcc-*` packages,
* `libc` and `libcx` up-to-date,
* `kbuild-make`,
* `ash`,
* `binutils`,
* all relevant `qt5-*` packages.
## Cleaning database ## Cleaning database
Your RSS Guard's database can grow really big over time, therefore you might need to do its cleanup regularly. There is a dialog `Cleanup database` in `Tools` menu to do just that for you, but note that RSS Guard should run just fine even with tens of thousands of messages. Your RSS Guard's database can grow really big over time, therefore you might need to do its cleanup regularly. There is a dialog `Cleanup database` in `Tools` menu to do just that for you, but note that RSS Guard should run just fine even with tens of thousands of messages.

View file

@ -45,6 +45,7 @@ DEPENDPATH += $$PWD/../librssguard
win32: LIBS += -L$$OUT_PWD/../librssguard/ -llibrssguard win32: LIBS += -L$$OUT_PWD/../librssguard/ -llibrssguard
unix: LIBS += -L$$OUT_PWD/../librssguard/ -lrssguard unix: LIBS += -L$$OUT_PWD/../librssguard/ -lrssguard
os2: LIBS += -L$$OUT_PWD/../librssguard/ -lrssguard
win32 { win32 {
# Prepare files for NSIS. # Prepare files for NSIS.