[X2Go-Commits] [x2goclient] 01/31: {unixhelper.{cpp, h}, x2goclient.pro{maemo}}: add unixhelper stub.

git-admin at x2go.org git-admin at x2go.org
Mon Apr 27 21:23:26 CEST 2015


This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch bugfix/osx
in repository x2goclient.

commit d37b446876a29d9b527d8fde289a986dc8e4bf3d
Author: Mihai Moldovan <ionic at ionic.de>
Date:   Sat Mar 14 22:21:34 2015 +0100

    {unixhelper.{cpp,h},x2goclient.pro{maemo}}: add unixhelper stub.
---
 debian/changelog     |    1 +
 src/unixhelper.cpp   |   23 +++++++++++++++++++++++
 src/unixhelper.h     |   29 +++++++++++++++++++++++++++++
 x2goclient.pro       |    6 ++++--
 x2goclient.pro.maemo |    6 ++++--
 5 files changed, 61 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 88d8266..5a419ae 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -338,6 +338,7 @@ x2goclient (4.0.4.0-0x2go1) UNRELEASED; urgency=low
       PULSE_CLIENTCONFIG setting once more.
     - {macbuild,res/osxbundle/postbuild}.sh: add support for git information
       if not building from a tag. Also includes build date.
+    - {unixhelper.{cpp,h},x2goclient.pro{,.maemo}}: add unixhelper stub.
 
   [ Fernando Pedemonte ]
   * New upstream release (4.0.4.0):
diff --git a/src/unixhelper.cpp b/src/unixhelper.cpp
new file mode 100644
index 0000000..221bdb2
--- /dev/null
+++ b/src/unixhelper.cpp
@@ -0,0 +1,23 @@
+/***************************************************************************
+ *  Copyright (C) 2015 by Mihai Moldovan <ionic at ionic.de> +49 721 14595728 *
+ *                                                                         *
+ *  This program is free software; you can redistribute it and/or modify   *
+ *  it under the terms of the GNU General Public License as published by   *
+ *  the Free Software Foundation; either version 2 of the License, or      *
+ *  (at your option) any later version.                                    *
+ *                                                                         *
+ *  This program is distributed in the hope that it will be useful,        *
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
+ *  GNU General Public License for more details.                           *
+ *                                                                         *
+ *  You should have received a copy of the GNU General Public License      *
+ *  along with this program; if not, write to the                          *
+ *  Free Software Foundation, Inc.,                                        *
+ *  59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.              *
+ ***************************************************************************/
+
+#ifdef Q_OS_UNIX
+
+
+#endif /* defined (Q_OS_UNIX) */
diff --git a/src/unixhelper.h b/src/unixhelper.h
new file mode 100644
index 0000000..31d983e
--- /dev/null
+++ b/src/unixhelper.h
@@ -0,0 +1,29 @@
+/***************************************************************************
+ *  Copyright (C) 2015 by Mihai Moldovan <ionic at ionic.de> +49 721 14595728 *
+ *                                                                         *
+ *  This program is free software; you can redistribute it and/or modify   *
+ *  it under the terms of the GNU General Public License as published by   *
+ *  the Free Software Foundation; either version 2 of the License, or      *
+ *  (at your option) any later version.                                    *
+ *                                                                         *
+ *  This program is distributed in the hope that it will be useful,        *
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
+ *  GNU General Public License for more details.                           *
+ *                                                                         *
+ *  You should have received a copy of the GNU General Public License      *
+ *  along with this program; if not, write to the                          *
+ *  Free Software Foundation, Inc.,                                        *
+ *  59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.              *
+ ***************************************************************************/
+
+#ifdef Q_OS_UNIX
+
+#ifndef UNIXHELPER_H
+#define UNIXHELPER_H
+
+
+
+#endif /* !defined (UNIXHELPER_H) */
+
+#endif /* defined (Q_OS_UNIX) */
diff --git a/x2goclient.pro b/x2goclient.pro
index ccf8fa7..e5428ce 100644
--- a/x2goclient.pro
+++ b/x2goclient.pro
@@ -79,7 +79,8 @@ HEADERS += src/configdialog.h \
            src/folderbutton.h \
            src/folderexplorer.h \
            src/non_modal_messagebox.h \
-           src/help.h
+           src/help.h \
+           src/unixhelper.h
 
 SOURCES += src/sharewidget.cpp \
            src/settingswidget.cpp \
@@ -122,7 +123,8 @@ SOURCES += src/sharewidget.cpp \
            src/folderbutton.cpp \
            src/folderexplorer.cpp \
            src/non_modal_messagebox.cpp \
-           src/help.cpp
+           src/help.cpp \
+           src/unixhelper.cpp
 
 LIBS += -lssh
 win32:LIBS += -lAdvAPI32 -lshell32 -lUser32
diff --git a/x2goclient.pro.maemo b/x2goclient.pro.maemo
index ac2eacf..63cc3d8 100644
--- a/x2goclient.pro.maemo
+++ b/x2goclient.pro.maemo
@@ -35,7 +35,8 @@ HEADERS += src/configdialog.h \
            src/settingswidget.h \
            src/sharewidget.h \
            src/clicklineedit.h \
-           src/help.h
+           src/help.h \
+           src/unixhelper.h
 
 SOURCES += src/sharewidget.cpp \
            src/settingswidget.cpp \
@@ -62,7 +63,8 @@ SOURCES += src/sharewidget.cpp \
            src/embedwidget.cpp \
            src/wapi.cpp \
            src/clicklineedit.cpp \
-           src/help.cpp
+           src/help.cpp \
+           src/unixhelper.cpp
 
 TEMPLATE = app
 TARGET =

--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git


More information about the x2go-commits mailing list