[X2Go-Commits] [x2goclient] branch bugfix/osx updated (7408f21 -> 8cfe9b0)

git-admin at x2go.org git-admin at x2go.org
Wed Mar 25 21:21:03 CET 2015


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

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

  discards  7408f21   compat.h: include QtCore/qglobal.h for Q_OS_... macros.
  discards  9574ab9   compat.{cpp,h}: remove inline keyword, because function is not defined in header file.
  discards  7fa68c8   compat.{cpp,h}: new files. Implements strndup on OS X 10.6 and below. Add to x2goclient.cpp, x2goclient.pro and x2goclient.pro.maemo.
  discards  da6f540   onmainwindow.cpp: correctly use ~/.x2go/.ssh as ssh directory when starting sshd in user mode.
  discards  d2a8450   appdialog.cpp: initialize parent in default case. Another GCC compile warning fix.
  discards  e446ec8   {appdialog,configwidget,onmainwindow,unixhelper}.cpp: fix some compile warnings with GCC. Fix a few whitespace issues.
  discards  b2b9baa   x2goclient.cpp: fix failing exec() call for the UNIX helper utility: correctly terminate arguments vector.
  discards  17ace70   unixhelper.{cpp,h}: ignore SIGINT, SIGTERM, SIGPIPE, SIGQUIT, SIGUSR1 and SIGUSR2.
  discards  cbfa06e   {unixhelper.{cpp,h},x2goclient.cpp}: switch main cleanup handling to parent PID polling.
  discards  91411db   unixhelper.{cpp,h}: raise sleeping time to two seconds and grace period to 10 seconds.
  discards  61930d3   x2goclient.cpp: create new argv array on the heap instead of on the stack.
  discards  af1d7b4   x2goclient.cpp: fix string comparison.
  discards  417c2eb   x2goclient.cpp: fix compile problems introduced with the last commit.
  discards  6e5b16f   x2goclient.cpp: don't start the UNIX cleanup helper process right after forking.
  discards  f360a96   x2goclient.cpp: clean up.
  discards  6f08b38   unixhelper.cpp: port from std::signal() to sigactio(). Handle errors.
  discards  94cbe21   unixhelper.{cpp,h}: implement signal unblocking in unixhelper::unix_cleanup(). Update documentation.
  discards  2358b55   unixhelper.cpp: kill process group on error.
  discards  d528e3a   x2goclient.cpp: return return value of unixhelper::unix_cleanup().
  discards  7b7d6bf   unixhelper.{cpp,h}: add documentation/comments.
  discards  15314b6   unixhelper.{cpp,h},x2goclient.cpp}: unixhelper should really be a (module) namespace, not a class.
  discards  ff2efe6   unixhelper.h: forgot to declare type of unix_cleanup() function.
  discards  26253fa   unixhelper.{h,cpp}: also include <QtCore/qglobal.h> to have Q_OS_UNIX defined on UNIX-based platforms. Move guards around.
  discards  b2357f2   x2goclient.cpp: fix std::edit -> std::exit typo.
  discards  6abe3b0   x2goclient.cpp: add legacy <sys/types.h> header needed for old operating systems.
  discards  075b81a   x2goclient.cpp: add myself to copyright header.
  discards  8f6ba25   x2goclient.cpp: use setsid() on UNIX to become session and process group leader.
  discards  2cd80e7   x2goclient.cpp: add fork_helper() function to start up the UNIX cleanup helper.
  discards  7089106   x2goclient.cpp: wrap X2Go Client main function and use that.
  discards  5e9f1ee   unixhelper.{cpp,h}: implement cleanup program for process group.
  discards  efb9923   {unixhelper.{cpp,h},x2goclient.pro{maemo}}: add unixhelper stub.
      adds  5e1351d   onmainwindow:cpp: correctly pass escaped single quote when writing remote xinerama config file. Post-fixup for #797.
      adds  5b2c94a   {onmainwindow.cpp,README.i18n}: fix localization -- resource strings were not correctly updated.
       new  277531c   {unixhelper.{cpp,h},x2goclient.pro{maemo}}: add unixhelper stub.
       new  8467813   unixhelper.{cpp,h}: implement cleanup program for process group.
       new  c60b448   x2goclient.cpp: wrap X2Go Client main function and use that.
       new  ba3e66f   x2goclient.cpp: add fork_helper() function to start up the UNIX cleanup helper.
       new  cb9fc43   x2goclient.cpp: use setsid() on UNIX to become session and process group leader.
       new  3632f02   x2goclient.cpp: add myself to copyright header.
       new  9e78f50   x2goclient.cpp: add legacy <sys/types.h> header needed for old operating systems.
       new  ef54c63   x2goclient.cpp: fix std::edit -> std::exit typo.
       new  298b36b   unixhelper.{h,cpp}: also include <QtCore/qglobal.h> to have Q_OS_UNIX defined on UNIX-based platforms. Move guards around.
       new  f588ca7   unixhelper.h: forgot to declare type of unix_cleanup() function.
       new  235bd46   unixhelper.{cpp,h},x2goclient.cpp}: unixhelper should really be a (module) namespace, not a class.
       new  577f895   unixhelper.{cpp,h}: add documentation/comments.
       new  a0582b9   x2goclient.cpp: return return value of unixhelper::unix_cleanup().
       new  e5c13ee   unixhelper.cpp: kill process group on error.
       new  a6ba54d   unixhelper.{cpp,h}: implement signal unblocking in unixhelper::unix_cleanup(). Update documentation.
       new  e28f7d4   unixhelper.cpp: port from std::signal() to sigactio(). Handle errors.
       new  aae7837   x2goclient.cpp: clean up.
       new  96c82eb   x2goclient.cpp: don't start the UNIX cleanup helper process right after forking.
       new  c86bf68   x2goclient.cpp: fix compile problems introduced with the last commit.
       new  0f4d4ea   x2goclient.cpp: fix string comparison.
       new  e408bc6   x2goclient.cpp: create new argv array on the heap instead of on the stack.
       new  7a83b98   unixhelper.{cpp,h}: raise sleeping time to two seconds and grace period to 10 seconds.
       new  67f4fd0   {unixhelper.{cpp,h},x2goclient.cpp}: switch main cleanup handling to parent PID polling.
       new  22807d0   unixhelper.{cpp,h}: ignore SIGINT, SIGTERM, SIGPIPE, SIGQUIT, SIGUSR1 and SIGUSR2.
       new  459735d   x2goclient.cpp: fix failing exec() call for the UNIX helper utility: correctly terminate arguments vector.
       new  dba14e4   {appdialog,configwidget,onmainwindow,unixhelper}.cpp: fix some compile warnings with GCC. Fix a few whitespace issues.
       new  1dabba8   appdialog.cpp: initialize parent in default case. Another GCC compile warning fix.
       new  bfc44c0   onmainwindow.cpp: correctly use ~/.x2go/.ssh as ssh directory when starting sshd in user mode.
       new  eb05244   compat.{cpp,h}: new files. Implements strndup on OS X 10.6 and below. Add to x2goclient.cpp, x2goclient.pro and x2goclient.pro.maemo.
       new  8fc59b9   compat.{cpp,h}: remove inline keyword, because function is not defined in header file.
       new  8cfe9b0   compat.h: include QtCore/qglobal.h for Q_OS_... macros.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (7408f21)
            \
             N -- N -- N   refs/heads/bugfix/osx (8cfe9b0)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omits" are not gone; other references still
refer to them.  Any revisions marked "discards" are gone forever.

The 31 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.i18n          |    6 +++---
 debian/changelog     |    4 ++++
 src/onmainwindow.cpp |    6 +++---
 3 files changed, 10 insertions(+), 6 deletions(-)

--
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