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

git-admin at x2go.org git-admin at x2go.org
Wed Mar 25 21:42:11 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  8cfe9b0   compat.h: include QtCore/qglobal.h for Q_OS_... macros.
  discards  8fc59b9   compat.{cpp,h}: remove inline keyword, because function is not defined in header file.
  discards  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.
  discards  bfc44c0   onmainwindow.cpp: correctly use ~/.x2go/.ssh as ssh directory when starting sshd in user mode.
  discards  1dabba8   appdialog.cpp: initialize parent in default case. Another GCC compile warning fix.
  discards  dba14e4   {appdialog,configwidget,onmainwindow,unixhelper}.cpp: fix some compile warnings with GCC. Fix a few whitespace issues.
  discards  459735d   x2goclient.cpp: fix failing exec() call for the UNIX helper utility: correctly terminate arguments vector.
  discards  22807d0   unixhelper.{cpp,h}: ignore SIGINT, SIGTERM, SIGPIPE, SIGQUIT, SIGUSR1 and SIGUSR2.
  discards  67f4fd0   {unixhelper.{cpp,h},x2goclient.cpp}: switch main cleanup handling to parent PID polling.
  discards  7a83b98   unixhelper.{cpp,h}: raise sleeping time to two seconds and grace period to 10 seconds.
  discards  e408bc6   x2goclient.cpp: create new argv array on the heap instead of on the stack.
  discards  0f4d4ea   x2goclient.cpp: fix string comparison.
  discards  c86bf68   x2goclient.cpp: fix compile problems introduced with the last commit.
  discards  96c82eb   x2goclient.cpp: don't start the UNIX cleanup helper process right after forking.
  discards  aae7837   x2goclient.cpp: clean up.
  discards  e28f7d4   unixhelper.cpp: port from std::signal() to sigactio(). Handle errors.
  discards  a6ba54d   unixhelper.{cpp,h}: implement signal unblocking in unixhelper::unix_cleanup(). Update documentation.
  discards  e5c13ee   unixhelper.cpp: kill process group on error.
  discards  a0582b9   x2goclient.cpp: return return value of unixhelper::unix_cleanup().
  discards  577f895   unixhelper.{cpp,h}: add documentation/comments.
  discards  235bd46   unixhelper.{cpp,h},x2goclient.cpp}: unixhelper should really be a (module) namespace, not a class.
  discards  f588ca7   unixhelper.h: forgot to declare type of unix_cleanup() function.
  discards  298b36b   unixhelper.{h,cpp}: also include <QtCore/qglobal.h> to have Q_OS_UNIX defined on UNIX-based platforms. Move guards around.
  discards  ef54c63   x2goclient.cpp: fix std::edit -> std::exit typo.
  discards  9e78f50   x2goclient.cpp: add legacy <sys/types.h> header needed for old operating systems.
  discards  3632f02   x2goclient.cpp: add myself to copyright header.
  discards  cb9fc43   x2goclient.cpp: use setsid() on UNIX to become session and process group leader.
  discards  ba3e66f   x2goclient.cpp: add fork_helper() function to start up the UNIX cleanup helper.
  discards  c60b448   x2goclient.cpp: wrap X2Go Client main function and use that.
  discards  8467813   unixhelper.{cpp,h}: implement cleanup program for process group.
  discards  277531c   {unixhelper.{cpp,h},x2goclient.pro{maemo}}: add unixhelper stub.
     omits  5b2c94a   {onmainwindow.cpp,README.i18n}: fix localization -- resource strings were not correctly updated.
      adds  e20207b   {onmainwindow.cpp,README.i18n}: fix localization -- resource strings were not correctly updated. Fixes: #828.
       new  d9a85cd   {unixhelper.{cpp,h},x2goclient.pro{maemo}}: add unixhelper stub.
       new  139bfd0   unixhelper.{cpp,h}: implement cleanup program for process group.
       new  7b78209   x2goclient.cpp: wrap X2Go Client main function and use that.
       new  3a9bf5d   x2goclient.cpp: add fork_helper() function to start up the UNIX cleanup helper.
       new  05e6da9   x2goclient.cpp: use setsid() on UNIX to become session and process group leader.
       new  acfd2df   x2goclient.cpp: add myself to copyright header.
       new  2f25ede   x2goclient.cpp: add legacy <sys/types.h> header needed for old operating systems.
       new  894fc4e   x2goclient.cpp: fix std::edit -> std::exit typo.
       new  dfe21de   unixhelper.{h,cpp}: also include <QtCore/qglobal.h> to have Q_OS_UNIX defined on UNIX-based platforms. Move guards around.
       new  4d6fe8d   unixhelper.h: forgot to declare type of unix_cleanup() function.
       new  4938308   unixhelper.{cpp,h},x2goclient.cpp}: unixhelper should really be a (module) namespace, not a class.
       new  a64492e   unixhelper.{cpp,h}: add documentation/comments.
       new  e70dbf4   x2goclient.cpp: return return value of unixhelper::unix_cleanup().
       new  a68ab86   unixhelper.cpp: kill process group on error.
       new  7c986bb   unixhelper.{cpp,h}: implement signal unblocking in unixhelper::unix_cleanup(). Update documentation.
       new  9486526   unixhelper.cpp: port from std::signal() to sigactio(). Handle errors.
       new  0bb7a9c   x2goclient.cpp: clean up.
       new  a2202ee   x2goclient.cpp: don't start the UNIX cleanup helper process right after forking.
       new  7eecb50   x2goclient.cpp: fix compile problems introduced with the last commit.
       new  1bf8943   x2goclient.cpp: fix string comparison.
       new  0ff6666   x2goclient.cpp: create new argv array on the heap instead of on the stack.
       new  906246a   unixhelper.{cpp,h}: raise sleeping time to two seconds and grace period to 10 seconds.
       new  85928a4   {unixhelper.{cpp,h},x2goclient.cpp}: switch main cleanup handling to parent PID polling.
       new  68a38d9   unixhelper.{cpp,h}: ignore SIGINT, SIGTERM, SIGPIPE, SIGQUIT, SIGUSR1 and SIGUSR2.
       new  cd2d6c0   x2goclient.cpp: fix failing exec() call for the UNIX helper utility: correctly terminate arguments vector.
       new  9d27a85   {appdialog,configwidget,onmainwindow,unixhelper}.cpp: fix some compile warnings with GCC. Fix a few whitespace issues.
       new  ef3c90f   appdialog.cpp: initialize parent in default case. Another GCC compile warning fix.
       new  6882d4d   onmainwindow.cpp: correctly use ~/.x2go/.ssh as ssh directory when starting sshd in user mode.
       new  372f50b   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  fd87eb0   compat.{cpp,h}: remove inline keyword, because function is not defined in header file.
       new  169c9c2   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   (8cfe9b0)
            \
             N -- N -- N   refs/heads/bugfix/osx (169c9c2)

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:
 debian/changelog |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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