fix jessie builds

This commit is contained in:
Simon Stürz 2016-06-21 10:36:10 +02:00 committed by Michael Zanetti
parent 45e7f7d749
commit 03565b5e71
4 changed files with 7 additions and 4 deletions

2
debian/control vendored
View File

@ -105,6 +105,8 @@ Depends: libguh1 (= ${binary:Version}),
${shlibs:Depends}, ${shlibs:Depends},
${misc:Depends}, ${misc:Depends},
python, python,
qtconnectivity5-dev,
libqt5websockets5-dev,
libavahi-client-dev, libavahi-client-dev,
libavahi-common-dev libavahi-common-dev
Description: An open source IoT server - development files Description: An open source IoT server - development files

4
debian/guhd.1 vendored
View File

@ -1,6 +1,6 @@
.\" Manpage for guhd. .\" Manpage for guhd.
.\" Contact simon.stuerz@guh.guru to correct errors or typos. .\" Contact simon.stuerz@guh.guru to correct errors or typos.
.TH man 1 "May 2016" "1.5" "guhd man page" .TH man 1 "June 2016" "1.6" "guhd man page"
.SH NAME .SH NAME
guhd \- An open source IoT (Internet of Things) server guhd \- An open source IoT (Internet of Things) server
.SH SYNOPSIS .SH SYNOPSIS
@ -90,6 +90,8 @@ The plugins config file: \fI/etc/guh/plugins.conf\fR
.br .br
The log file: \fI/var/log/guhd.log\fR The log file: \fI/var/log/guhd.log\fR
.br .br
The logrotate config file: \fI/etc/logrotate.d/guhd\fR
.br
The logging database: \fI/var/log/guhd.sqlite\fR The logging database: \fI/var/log/guhd.sqlite\fR
.br .br
The systemd unit file: \fI/etc/systemd/system/guhd.service\fR The systemd unit file: \fI/etc/systemd/system/guhd.service\fR

View File

@ -143,7 +143,7 @@ void CloudConnection::onTextMessageReceived(const QString &message)
QJsonParseError error; QJsonParseError error;
QJsonDocument jsonDoc = QJsonDocument::fromJson(message.toUtf8(), &error); QJsonDocument jsonDoc = QJsonDocument::fromJson(message.toUtf8(), &error);
if (error.error != QJsonParseError::NoError) { if (error.error != QJsonParseError::NoError) {
qCWarning(dcCloud()) << "Could not parse json data from guh" << qUtf8Printable(message.toUtf8()) << error.errorString(); qCWarning(dcCloud()) << "Could not parse json data from guh" << message.toUtf8() << error.errorString();
return; return;
} }

View File

@ -111,8 +111,7 @@ void CloudManager::onConnectionAuthentificationFinished(const bool &authenticate
if (authenticated) { if (authenticated) {
m_authenticated = true; m_authenticated = true;
m_connectionId = connectionId; m_connectionId = connectionId;
qCDebug(dcCloud()) << "Connection ID:" << connectionId.toString(); qCDebug(dcCloud()) << "Connection id:" << connectionId.toString();
emit authenticatedChanged();
// Get tunnel connections // Get tunnel connections
m_interface->getTunnels(); m_interface->getTunnels();