summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add unicode points so that upper() and lower() functions work for:r14.0.10Ray-V2021-04-171-964/+981
| | | | | | | | | | - latin letter sharp s - latin letter glottal stop - greek lunate sigma symbol - greek letter san Signed-off-by: Ray-V <ray-v@inbox.lv> (cherry picked from commit 2fbf9ffbc6c2da604d5e47801f83e4423a4dc2b3)
* Fixed broken Q_FULL_TEMPLATE_INSTANTIATION define (renamed to ↵Michele Calgaro2021-02-1311-21/+21
| | | | | | | TQ_FULL_TEMPLATE_INSTANTIATION). Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 0f480dc43f6a3dc50b438a17fc2526ca444065ec)
* Undo an unwanted deletion of the 'register' in the string.Slávek Banko2021-02-021-1/+1
| | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 2a00c1661bb3947e6342de813507d5a3c0729477)
* Fix buffer overflow in XBM parser.r14.0.9Slávek Banko2020-10-161-7/+32
| | | | | | | | | | Avoid parsing over the buffer limit, or interpreting non-hex as hex. This still leaves parsing of lines longer than 300 chars unreliable. Based on Qt5 patch for CVE-2020-17507. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 7441a646a8b452036daa42d85c98a2105412fd92)
* Update translations binary filesSlávek Banko2020-10-167-0/+0
| | | | | | | because they are not generated during build. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 66e96fca347628062ade0dd216696e2715168b7a)
* Merge translation files from master branch.Slávek Banko2020-10-1611-267/+272
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Add hidden visibility symbols definition to the linux-g++-64 and ↵gregory guy2020-09-272-6/+6
| | | | | | | linux-g++-32 mkspecs config files. Signed-off-by: gregory guy <gregory-tde@laposte.net> (cherry picked from commit 9afb3f4d91c02d38076e12035188b26e2ac12525)
* Removed additional code formatting modelines.Michele Calgaro2020-09-257-19/+0
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b3c22b84ef1f3eb945aa9dee9ee09195518c82b4)
* Removed code formatting modelines.Michele Calgaro2020-09-192-6/+0
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 250e6baa4c9f3a20628525e197fb48e85e73e65d)
* Update buildkey for >= GCC 9.Slávek Banko2020-08-231-1/+1
| | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 1335b2013b3b58621399874e0eea17bcd00b8d3f)
* Prevent to set build directories as RPATHOBATA Akio2020-08-092-19/+3
| | | | | | | It result in unwanted RPATH reference from installed binaries. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit a9d2c0bdd16dd850fcfe58c040c89c8a6a2268a3)
* Fix `qt_xft_handle` to work as expectedOBATA Akio2020-08-081-1/+1
| | | | | Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit 8704c62dce2ad2218b77d4f74c20b39724aeca26)
* Fix MIT_SHM related conditionOBATA Akio2020-08-071-1/+5
| | | | | | | Prevent to build MIT_SHM related codes for !QT_MITSHM condition. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit ac500135785f34eebe8d9c077208a5dd0b494929)
* Fix to set -fvisibility-inlines-hidden flag only for C++ with g++ ↵Michele Calgaro2020-08-062-4/+4
| | | | | | | (completion of previous commit) Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit fa43c29899d22fa43c69bab7548ea18ede87e279)
* Fix to set -fvisibility-inlines-hidden flag only for C++ with g++OBATA Akio2020-08-065-10/+10
| | | | | | | With GCC, it is valid for C++/ObjC++ but not for C. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit defac9d8a83feb47d3dcfbc688e96f35d4ec28cd)
* Fix to detect Thread Execution Scheduling support correctlyOBATA Akio2020-08-061-1/+4
| | | | | | | | If `_POSIX_THREAD_PRIORITY_SCHEDULING == 0`, it must be checked with sysconf(_SC_THREAD_PRIORITY_SCHEDULING) at runtime. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit 48a9cf9a3c2866db8a68fd1ac6cce5627c507386)
* Remove debug config for inputmethod pluginsOBATA Akio2020-08-034-4/+4
| | | | | | | No reason to force to debug build. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit ecbbc92b782d07377d8b8130eb2dfc31f376578d)
* Fix to set libtool special mode-args as a compiler flagOBATA Akio2020-08-021-2/+2
| | | | | Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit 141af55cca0bad0492786479584e474b3285ab9b)
* Fix to record {MAJOR}.{MINOR} to `library_names` in libtool fileOBATA Akio2020-08-021-1/+1
| | | | | Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit 5449d37d879866e4193dded434382a71b33e0be2)
* Fix to set `old_library` in libtool file only for `staticlib` projectOBATA Akio2020-08-021-1/+5
| | | | | Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit 12dcb88d29d09f1f913b88832db5b7fa01088939)
* Fix potentially buffer overrun related to readlink(2)OBATA Akio2020-07-251-1/+1
| | | | | Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit e6ce806b771adc9d963d760dfac46b2c62a57798)
* Fix to detect file conponent from path properly in Makefile generatorOBATA Akio2020-07-233-6/+6
| | | | | | | | It should be either `path.right(path.length() - sep_pos - 1)` or `path.mid(sep_pos + 1)`. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit 5c270c3e26e74609a1821ddd3bb17566ccc53396)
* Fix to detect XRandR on multi-prefix package platformsOBATA Akio2020-07-191-16/+16
| | | | | | | | | Change to find two XrandR header files from invidual directory. "Xrandr.h" is in `libXrandr`, and "randr.h" is in `xorgproto` (used to be `randrproto`) package, so they may be installed into different prefix. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit a31f05cb8e90781228e9d6a60ef97cc1bca83345)
* Remove unwanted code for writing pngOBATA Akio2020-07-191-13/+0
| | | | | | | | `info_ptr->channels` will be set in the next called `png_set_IHDR()`, so it is no effect. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit b6a4a5ec2001abed68c01d5c6baabbc2319214dc)
* Change to use PKG_LIBPNG_VER for libpng version checkOBATA Akio2020-07-191-23/+23
| | | | | | | It is suggested in png.h for applications. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit 5ce8516970925f9c41fd5a07905f546b7f00258b)
* Update X11 path on NetBSDOBATA Akio2020-07-121-4/+4
| | | | | | | It should be X11R7 on modern ports with recent releases. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit b55eac803aa1cad27111ab16519d4f9ec3ee5894)
* Fix to display verbose message in some config testsOBATA Akio2020-07-103-3/+3
| | | | | Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit e37e24181bafe0fe84f2491a2c47d7fd7e2d2275)
* Improve modern res API available conditionOBATA Akio2020-07-091-1/+1
| | | | | | | | | | `__RES` is usable to check release date of resolver library. Such modern res API appeared in BIND-8.2.0 libbind with `__RES == 19980901`, it was refrected as BIND-8.2.2-P5 to glibc at pre 2.3 release with `__RES == 19991006`. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit b79f0a7caabbf6e3523dad0a284466a672bc9940)
* Replace dead URLs of "SEE ALSO" section in man pages to trinity onesOBATA Akio2020-07-094-6/+6
| | | | | Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit a92e2272b838de6cf3045eaf8307de07cfae57ac)
* Fix maketqpf man page based on source codesOBATA Akio2020-07-091-7/+14
| | | | | | | | | Change to use usage of the command instead of copy from qembed's one for "SYNTAX" section. Fix fontdir path from source code. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit 962abeeb8171e720748352c04edec8561f740dc9)
* Fix a typo in tqlinguist man pageOBATA Akio2020-07-091-1/+1
| | | | | Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit 9470305f0e4d6756cec0611bdb98e3934a9d07ef)
* Refrect qt -> tqt changes to man1OBATA Akio2020-07-0710-128/+128
| | | | | | | | Adjust page name to the installed tool name and follow class name changes in examples. Signed-off-by: OBATA Akio <obache@wizdas.com> (cherry picked from commit 5a1d03de6b56d254662b5d3a57f809907359fff0)
* Further cleanup of left over material after removal of Qt2's TQListIterator ↵Michele Calgaro2020-05-241-1/+0
| | | | | | | class. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit f62146e0e61ca0dd15221907cc3747e0f06319de)
* Missed out in previous commit :-( Documentation updated accordingly.Michele Calgaro2020-05-231-1/+1
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 1d9b20af8c3c649bae4d0b75e0ada816428ba055)
* Fixed minor typo in H file include names.Michele Calgaro2020-05-231-1/+1
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 4a8f6dd3c5aa6cce4f4b01fdce9692d6223baba8)
* Improved code for keyboard and mouse grabbing and releasing to avoidMichele Calgaro2020-04-291-23/+28
| | | | | | | unnecessary actions. This relates loosely to bug 2955. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit f0869718763cd6d04c9b225db8966df08ddaef44)
* Removed incorrect execution bit.Michele Calgaro2020-04-291-0/+0
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 8520b59ce9d56978ff0d9e5242375cc33b4d5bf1)
* Update translations binary filesr14.0.8Slávek Banko2020-04-109-1/+1
| | | | | | | because they are not generated during build. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 3136a0ba3cb444e8d25e52709f23730dcb0add8c)
* Merge translation files from master branch.Slávek Banko2020-04-105-1095/+1171
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* The translation file mywidget_en.ts in examples/i18n renamedSlávek Banko2020-04-102-2/+2
| | | | | | | to mywidget.ts to serve as a template. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 421a95c5b787bf844733a39bc93806d53ff5efe4)
* Recovering an accidentally damaged PNG image.Slávek Banko2020-03-221-0/+0
| | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 98f2cf4126593272dc059cc5bc1500bbabf46379)
* Fix typo.Slávek Banko2020-03-221-1/+1
| | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit ce0712924d357df5ff0b2438f937fae11b5697f4)
* Remove dates from generated files.Slávek Banko2020-03-217-15/+9
| | | | | | | This is related to the effort for reproducible builds. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 9d5d503f747ce54a6c048a415dae1b33d6b9b047)
* DilOS: add compiler visibilityDenis Kozadaev2020-02-151-1/+1
| | | | | Signed-off-by: Denis Kozadaev <denis@dilos.org> (cherry picked from commit 277646d8abf9312400a7d4d2bcd4e3790554892c)
* Removed explicit usage of the 'register' keyword.Michele Calgaro2020-01-3048-408/+408
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 99e56ba8db70324cc5c7ab416a3b48171613bd59)
* Fix crash in tqimage for certain malformed ppm image filesr14.0.7Slávek Banko2019-12-181-1/+1
| | | | | | | | | | | The ppm format specifies that the maximum color value field must be less than 65536. The handler did not enforce this, leading to potentional overflow when the value was used in 16 bits context. Based on Qt5 patch for CVE-2018-19872. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 4470facd61b6d9fd862f70ce56f22ab502415d23)
* Fix FTBFS when building with musl libc.Slávek Banko2019-12-111-0/+1
| | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit da15dfe6d7ec8cd62964b99e56200a8adc7c8bf5)
* Added symlink include/qsql_sqlite3.h.Slávek Banko2019-12-082-6/+7
| | | | | | | Updated make-symlinks.sh script. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit ada7ac563455d1948f5d254d594bf7803cb77ee1)
* Fix build with PostgreSQL 12+.Slávek Banko2019-11-181-0/+2
| | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 9a6ac9dde59581df39cdc6734e99e1db97b03887)
* Remove bool/my_bool artifact, the 'bool' data type is part of the c++François Andriot2019-11-181-1/+1
| | | | | | | language and was added to c compilers with c99. Signed-off-by: gregory guy <gregory-tde@laposte.net> (cherry picked from commit 90ea30a42a102ac57b26439965ec1240341c568d)