summaryrefslogtreecommitdiffstats
path: root/src/tools
Commit message (Collapse)AuthorAgeFilesLines
* Fix license headersJani Heikkinen2018-01-222-26/+38
| | | | | | | | | | | old, outdated and removed header.LGPL21 was used in some files. Replace that with correct one (header.LGPL in src, headre.GPL-EXCEPT in tests and header.BSD in examples). Also remove unnesessary license files and add missing ones. Change-Id: Ib021ae191316da379a01e355fe90fe39180f541b Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
* Disable serviceframework for Boot to QtRainer Keller2017-07-191-1/+1
| | | | | | | Tests fail and framework is not needed on this platform. Change-Id: Ib16de91d0fa32a82bde9a613c4750a4845d29f42 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
* Update all license headersAlex Blasche2015-03-262-42/+26
| | | | | | | Some files had wrong licenses too. Change-Id: I7f940d4a136d102cb2c7755702308938530158c4 Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
* stop serviceframework and qsysteminfo building on macLorn Potter2014-03-211-1/+1
| | | | | | | NOTE: these need to be fixed Change-Id: I0b7a2cf7efe28aa03359b03d8921bbfb9dd4d09c Reviewed-by: Robin Burchell <robin+qt@viroteck.net>
* Do not use interface as variable or parameter nameOliver Wolff2013-01-231-9/+9
| | | | | | | | | | | | | | | As "interface" is defined as struct in objbase.h on windows it either should not be used as a variable or parameter name or undefed before. (see CI failure in https://codereview.qt-project.org/#change,45321 ) As parts of QtSystems rely on other windows headers which need interface defined as struct it cannot be 'undef'ed "globally". Thus "interface" is replaced with proper values in files where it occurs. Change-Id: I9f77df966c7243fbc06aea87be075bfbd9b05d4a Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Rainer Keller <rainer.keller@digia.com> Reviewed-by: Cristiano di Flora <cristiano.diflora@gmail.com>
* servicefw should not be built as an app bundle on MacShawn Rutledge2012-11-081-0/+1
| | | | | | | It's a command-line tool only, and double-clicking the app does nothing. Change-Id: I2b33f122b60b4fba0b042b5cce69f82219bd4f9c Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
* QtSystems: Fix compiler warnings.Friedemann Kleint2012-10-162-5/+4
| | | | | | | | | | | | - Fix QString-construction from const char * returned by getenv, (potential crash). - Fix single character string constants. - Integer truncation. - Unused variables. Change-Id: I245daa1eb68801227d42ae07681f8e640c1f55c0 Reviewed-by: Kai Koehne <kai.koehne@digia.com> Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
* Change copyrights from Nokia to DigiaIikka Eklund2012-09-242-48/+48
| | | | | | | | | Change copyrights and license headers from Nokia to Digia Change-Id: I7786bc90235877567a7f61fc5c82af8dc3ad28c8 Reviewed-by: Janne Anttila <janne.anttila@digia.com> Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
* centralize load(qt_build_config)s in .qmake.confOswald Buddenhagen2012-09-112-4/+0
| | | | | Change-Id: I8f7389dac06dee984f79deec1b070b1c6d27604d Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
* Make unix backend compile on MacAndrew Stanley-Jones2012-07-021-1/+16
| | | | | | | | | Update the backend include files and avoid using a linux only pipe2. Also compile sfwlisten correctly and place it in the right location. Change-Id: I083c286a8ed2ca7bdba8f3025c2a66a9e0405a1a Reviewed-by: Lincoln Ramsay <lincoln.ramsay@nokia.com>
* build system cleanupsOswald Buddenhagen2012-06-261-1/+1
| | | | | | | | | | | | | | | - load(qt_module) => load(qt_build_config) - remove: - CONFIG+=module (obsolete) - code relating to module version headers (automated now) - %mastercontent assignment (automated now) - QT_BUILD_*_LIB defines (automated now) - pointless QPRO_PWD assignments - pointless DEFINES+=QT_MAKEDLL Change-Id: I062c0bbe4bb69c2952f35b6bd6628770c0bc9446 Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com> Reviewed-by: Alex <alex.blasche@nokia.com>
* Remove left over defines and fix the unix backendAndrew Stanley-Jones2012-06-251-0/+6
| | | | | Change-Id: If491cb14a1829baf84769c8425144e7848604c37 Reviewed-by: Alex <alex.blasche@nokia.com>
* Fix sfwlistenAndrew Stanley-Jones2012-06-201-61/+67
| | | | | | | | | If sfwlisten listens on several interfaces it could crash since the QUdpSocket was delete. Change-Id: I0a91a98477b70fa01ac2493a5f7ac1915498bc73 Reviewed-by: Zsolt Simon <zsolt.simon@nokia.com> Reviewed-by: Lincoln Ramsay <lincoln.ramsay@nokia.com>
* Use the localhost interfaceAndrew Stanley-Jones2012-06-191-1/+1
| | | | | | | Allow local debug Change-Id: I50b4b967cc63e07bacc3b6632e9ea96d071c269e Reviewed-by: Zsolt Simon <zsolt.simon@nokia.com>
* Send device's timestamp with sfw debug messagesAlex Wilson2012-06-121-1/+9
| | | | | | | | This makes it match up with timestamps in any other system logs, for easier cross-referencing. Change-Id: I88ce923ecdd6dc9bf7e24a4505fbce0a8f8fcd8f Reviewed-by: Andrew Stanley-Jones <andrew.stanley-jones@nokia.com>
* Reconnect if the interface goes awayAndrew Stanley-Jones2012-06-011-3/+31
| | | | | | | | | Multicast sockets don't tell us if the interface comes and goes. Poll and try to reconnect if we notice the interface is missing. Change-Id: I5c8542ec1d92b1fd59afd1069b7093d70cd80625 Reviewed-by: Alex Wilson <alex.wilson@nokia.com>
* UDP multicast logging for serviceframeworkAlex Wilson2012-05-313-1/+200
| | | | | | | | Slightly more organised way to receive debug messages. Also includes a really basic (somewhat hacky) client app to receive the messages. Change-Id: Ic578ddf7cc2fec9b97c5ac4f015a832137174625 Reviewed-by: Andrew Stanley-Jones <andrew.stanley-jones@nokia.com>
* Change uses of {to,from}Ascii to {to,from}Latin1Thiago Macieira2012-05-041-1/+1
| | | | | | | | | | This operation should be a no-op anyway, since at this point in time, the fromAscii and toAscii functions simply call their fromLatin1 and toLatin1 counterparts. Task-number: QTBUG-21872 Change-Id: Ifaf63e83903ab90286971983c151eaf2b1075c7a Reviewed-by: Cristiano di Flora <cristiano.di-flora@nokia.com>
* Servicefw did not print anything to the console on windows.Jan-Arve Saether2012-04-171-0/+1
| | | | | | | Console apps should have CONFIG += console Change-Id: I6d5c875e165d47a863f0a01afad708b8c3662f86 Reviewed-by: Andrew Stanley-Jones <andrew.stanley-jones@nokia.com>
* Remove "All rights reserved" line from license headers.Jason McDonald2012-01-301-1/+1
| | | | | | | | | | | | As in the past, to avoid rewriting various autotests that contain line-number information, an extra blank line has been inserted at the end of the license text to ensure that this commit does not change the total number of lines in the license header. Change-Id: I609b94b9d3d452c26302f0cd8236bfb27e81fd3d Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com> Reviewed-by: Andrew Stanley-Jones <andrew.stanley-jones@nokia.com>
* Update obsolete contact address.Jason McDonald2012-01-231-1/+1
| | | | | | | | | Replace Nokia contact email address with Qt Project website. Change-Id: I71577bf779b61f342a70df902c38987c52bc028f Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Andrew Stanley-Jones <andrew.stanley-jones@nokia.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Update copyright year in Nokia copyright headers.Jason McDonald2012-01-121-1/+1
| | | | | | | | Update copyright headers from before 2011. Change-Id: I6fb88de7280bfedd4e1c02411cdde48285d7b319 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Fixed QtSystems namespace compilation.Toby Tomkins2011-11-251-4/+0
| | | | | | | Change-Id: Iec9546890cf6df1c6cd94cbd400a81edc15d0988 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com> Reviewed-by: Alex <alex.blasche@nokia.com>
* Allow submodules to be dislabled at qmake timeAndrew Stanley-Jones2011-10-251-1/+1
| | | | | | | | | | | | The developer when can now disable modules by using CONFIG+=without-serviceframework, etc. This is meant to allow packaging tools for upstream projects to build submodules without having to use all of QtSystems. Change-Id: Iea7a583da00c9aa1f00b22bd61f0864798e8159f Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Lincoln Ramsay <lincoln.ramsay@nokia.com> Reviewed-by: Andrew Stanley-Jones <andrew.stanley-jones@nokia.com>
* Remove gui from servicefwAndrew Stanley-Jones2011-08-161-0/+1
| | | | | | | Change-Id: I5b5f671cf8fcc2a31c1cb9700c6eeb8ca6d3df9d Reviewed-on: http://codereview.qt.nokia.com/2982 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Andrew Stanley-Jones <andrew.stanley-jones@nokia.com>
* Respect $$QT.serviceframework.binsRohan McGovern2011-08-111-1/+1
| | | | | | | | | | A module's tools should build directly into $$QT.<module>.bins, just like its libraries and plugins. Change-Id: Iaf94cffa0c26132bded928ed68666769904252e8 Reviewed-on: http://codereview.qt.nokia.com/2801 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kalle Lehtonen <kalle.ju.lehtonen@nokia.com>
* Add setDefault to servicefwAndrew Stanley-Jones2011-08-051-13/+34
| | | | | | Change-Id: I0e8c432a9148a590c06ca17236421b13a01373a9 Reviewed-on: http://codereview.qt.nokia.com/2661 Reviewed-by: Andrew Stanley-Jones <andrew.stanley-jones@nokia.com>
* Update licenseheader text in source files for qtsystems Qt moduleJyri Tahtela2011-07-081-17/+17
| | | | | | | | Replace old license header with correct one. Change-Id: Ifa3afba00661dd184fda05b0ee4068f1bafc1e8b Reviewed-on: http://codereview.qt.nokia.com/1373 Reviewed-by: Jyri Tahtela <jyri.tahtela@nokia.com>
* Remove Qt Mobility references from license headersAlex2011-07-011-1/+1
|
* comply with Qt Coding stlyeAlex2011-07-011-19/+19
| | | | remove trailing white spaces, unwarn and char flow issues
* add servicefw toolAlex2011-07-013-0/+537