The following changes since commit db0b079d5320b0bc6b718428c9831775b3ba39a7:
Continue development... (2012-11-13 16:24:25 +0100)
are available in the git repository at:
git://git.inai.de/x2godesktopsharing master
for you to fetch changes up to 34b7b52860118831b9c10c2e899233c03621dad9:
build: resolve compile error under g++-4.7 (2012-11-20 11:50:58 +0100)
Jan Engelhardt (1): build: resolve compile error under g++-4.7
sharetray.cpp | 1 + 1 file changed, 1 insertion(+)
sharetray.cpp: In member function 'void ShareTray::handleSigKeybInt()': sharetray.cpp:225:2: error: '::read' has not been declared [...] sharetray.cpp: In static member function 'static void ShareTray::keybintSignalHandler(int)': sharetray.cpp:272:2: error: '::write' has not been declared [...] sharetray.cpp: In member function 'void ShareTray::slotStartSharing()': sharetray.cpp:325:40: error: 'getuid' was not declared in this scope sharetray.cpp:325:84: error: 'chown' was not declared in this scope make: *** [sharetray.o] Error 1 --- sharetray.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sharetray.cpp b/sharetray.cpp index 7c74d24..ac210a6 100644 --- a/sharetray.cpp +++ b/sharetray.cpp @@ -34,6 +34,7 @@ #include <QDateTime> #include <grp.h> #include <QProcess> +#include <unistd.h> #define STAT_ACT_COUNT 10 #define VERSION "3.0.1.6" -- 1.7.10.4
Hi Jan, thanks for your patch. The sharetray.cpp includes sys/unistd.h. Isn't your patch a redundancy? Mike On Di 20 Nov 2012 11:52:10 CET Jan Engelhardt wrote:
sharetray.cpp: In member function 'void ShareTray::handleSigKeybInt()': sharetray.cpp:225:2: error: '::read' has not been declared [...] sharetray.cpp: In static member function 'static void ShareTray::keybintSignalHandler(int)': sharetray.cpp:272:2: error: '::write' has not been declared [...] sharetray.cpp: In member function 'void ShareTray::slotStartSharing()': sharetray.cpp:325:40: error: 'getuid' was not declared in this scope sharetray.cpp:325:84: error: 'chown' was not declared in this scope make: *** [sharetray.o] Error 1
sharetray.cpp | 1 + 1 file changed, 1 insertion(+)
diff --git a/sharetray.cpp b/sharetray.cpp index 7c74d24..ac210a6 100644 --- a/sharetray.cpp +++ b/sharetray.cpp @@ -34,6 +34,7 @@ #include <QDateTime> #include <grp.h> #include <QProcess> +#include <unistd.h> #define STAT_ACT_COUNT 10
#define VERSION "3.0.1.6"
1.7.10.4
X2Go-Dev mailing list X2Go-Dev@lists.berlios.de https://lists.berlios.de/mailman/listinfo/x2go-dev
-- DAS-NETZWERKTEAM mike gabriel, rothenstein 5, 24214 neudorf-bornstein fon: +49 (1520) 1976 148 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xf...
On Tuesday 2012-11-20 21:14, Mike Gabriel wrote:
Hi Jan,
thanks for your patch. The sharetray.cpp includes sys/unistd.h. Isn't your patch a redundancy?
It seems 6ffe45d50b3dacb1725e90a985e1876a6ed44c16 already fixed the issue (last version I was on was 3.0.1.4). However, looking at 6ffe... sys/unistd.h just does not sound right *at all*. unistd.h is available on Ubuntu, so why bother with sys/unistd.h, is the question one would have to ask.
HI Jan,
On Di 20 Nov 2012 11:52:09 CET Jan Engelhardt wrote:
are available in the git repository at:
git://git.inai.de/x2godesktopsharing master
Is there any chance to have a WebGUI (gitweb) in front of the
git.inai.de site?
Greets+thanks, Mike
--
DAS-NETZWERKTEAM mike gabriel, rothenstein 5, 24214 neudorf-bornstein fon: +49 (1520) 1976 148
GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de
freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xf...
On Tuesday 2012-11-20 21:19, Mike Gabriel wrote:
HI Jan,
On Di 20 Nov 2012 11:52:09 CET Jan Engelhardt wrote:
are available in the git repository at:
git://git.inai.de/x2godesktopsharing master
Is there any chance to have a WebGUI (gitweb) in front of the git.inai.de site?
I do not think so - I just recently tore it down due to maintenance effort, bots pounding on it (I did not even get to think of robots.txt); and local viewing is actually so much faster latency-wise and superior in experience by picking your viewer of choice.
Here's a git-fu cookie from my jar:
git fetch git://place branch gitk FETCH_HEAD
No need to do a full clone, no need to do pollution of your workspace by adding a remote or branch. Just using FETCH_HEAD and forget it when done.