[X2Go-Commits] [x2goclient] branch bugfix/osx updated (eaafb91 -> 1ae582a)

git-admin at x2go.org git-admin at x2go.org
Fri May 22 17:06:02 CEST 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  eaafb91   macbuild.sh: add work-in-progress PulseAudio bundling.
  discards  5c9d8f2   macbuild.sh: add phase output for bundling nxproxy.
  discards  a7aee49   macbuild.sh: copy PulseAudio libraries and binaries.
  discards  8218bce   macbuild.sh: define PulseAudio libraries and binaries to be later copied.
  discards  74878af   macbuild.sh: add EXE_DIR and FRAMEWORKS_DIR internal variables.
  discards  9ca87ab   macbuild.sh: refactor nxproxy detection to use MACPORTS_PREFIX.
  discards  d40de84   macbuild.sh: add new repeat_str() helper function.
  discards  884926c   macbuild.sh: add new get_nesting_level() helper function.
  discards  a160f27   macbuild.sh: add new lazy_canonical_path() helper function.
  discards  9b68de7   macbuild.sh: add new dependency_error() helper function.
  discards  c5006b4   macbuild.sh: add new MACPORTS_PREFIX detection/variable.
  discards  cc1f82d   x2goclient.pro{maemo}: reference new pulsemanager.{cpp,h} files.
  discards  9ca6e2c   pulsemanager.{cpp,h}: new class for PulseAudio management.
  discards  465c3ce   compat.h: include QtCore/qglobal.h for Q_OS_... macros.
  discards  e409b0d   compat.{cpp,h}: remove inline keyword, because function is not defined in header file.
  discards  797918f   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  c97accf   onmainwindow.cpp: correctly use ~/.x2go/.ssh as ssh directory when starting sshd in user mode.
  discards  0eb79fe   appdialog.cpp: initialize parent in default case. Another GCC compile warning fix.
  discards  127661a   {appdialog,configwidget,onmainwindow,unixhelper}.cpp: fix some compile warnings with GCC. Fix a few whitespace issues.
  discards  6c2e7f2   x2goclient.cpp: fix failing exec() call for the UNIX helper utility: correctly terminate arguments vector.
  discards  d50f826   unixhelper.{cpp,h}: ignore SIGINT, SIGTERM, SIGPIPE, SIGQUIT, SIGUSR1 and SIGUSR2.
  discards  448b9b4   {unixhelper.{cpp,h},x2goclient.cpp}: switch main cleanup handling to parent PID polling.
  discards  39bb56d   unixhelper.{cpp,h}: raise sleeping time to two seconds and grace period to 10 seconds.
  discards  a0f7842   x2goclient.cpp: create new argv array on the heap instead of on the stack.
  discards  e2a15a4   x2goclient.cpp: fix string comparison.
  discards  729bde2   x2goclient.cpp: fix compile problems introduced with the last commit.
  discards  c7153fc   x2goclient.cpp: don't start the UNIX cleanup helper process right after forking.
  discards  aab1906   x2goclient.cpp: clean up.
  discards  caca4b2   unixhelper.cpp: port from std::signal() to sigaction(). Handle errors.
  discards  6ba8f04   unixhelper.{cpp,h}: implement signal unblocking in unixhelper::unix_cleanup(). Update documentation.
  discards  0fc5702   unixhelper.cpp: kill process group on error.
  discards  c72dd6a   x2goclient.cpp: return return value of unixhelper::unix_cleanup().
  discards  d6f635f   unixhelper.{cpp,h}: add documentation/comments.
  discards  211b1b8   unixhelper.{cpp,h},x2goclient.cpp}: unixhelper should really be a (module) namespace, not a class.
  discards  233c802   unixhelper.h: forgot to declare type of unix_cleanup() function.
  discards  c36f399   unixhelper.{h,cpp}: also include <QtCore/qglobal.h> to have Q_OS_UNIX defined on UNIX-based platforms. Move guards around.
  discards  0258016   x2goclient.cpp: fix std::edit -> std::exit typo.
  discards  1829f35   x2goclient.cpp: add legacy <sys/types.h> header needed for old operating systems.
  discards  8d8cb3b   x2goclient.cpp: add myself to copyright header.
  discards  485a8a6   x2goclient.cpp: use setsid() on UNIX to become session and process group leader.
  discards  0162c6c   x2goclient.cpp: add fork_helper() function to start up the UNIX cleanup helper.
  discards  bef2503   x2goclient.cpp: wrap X2Go Client main function and use that.
  discards  090bff0   unixhelper.{cpp,h}: implement cleanup program for process group.
  discards  36ed574   {unixhelper.{cpp,h},x2goclient.pro{maemo}}: add unixhelper stub.
      adds  84d4bd8   Windows: Fix audio (PulseAudio) when Kerberos 5 (GSSAPI) authentication is used (Fixes: #869)
      adds  1f3f87f   Upgrade libssh from 0.6.5 to 0.7.0
      adds  dbe9be6   Revert accidental changes to copy-deps-win32.bat
      adds  bde9d40   copy-deps-win32: require source paths as args
      adds  2068bb6   copy-deps-win32: continue copying if errors occur
      adds  3b3c7ec   copy-deps-win32.bat: Instead, exit if a copy fails
      adds  909872b   copy-deps-win32: Fix delete bug and add errorlevel
       new  6294e3c   {unixhelper.{cpp,h},x2goclient.pro{maemo}}: add unixhelper stub.
       new  65e9a8b   unixhelper.{cpp,h}: implement cleanup program for process group.
       new  29466ed   x2goclient.cpp: wrap X2Go Client main function and use that.
       new  5038c1d   x2goclient.cpp: add fork_helper() function to start up the UNIX cleanup helper.
       new  6088298   x2goclient.cpp: use setsid() on UNIX to become session and process group leader.
       new  c2e44d1   x2goclient.cpp: add myself to copyright header.
       new  15ff43e   x2goclient.cpp: add legacy <sys/types.h> header needed for old operating systems.
       new  466b5c3   x2goclient.cpp: fix std::edit -> std::exit typo.
       new  64babdd   unixhelper.{h,cpp}: also include <QtCore/qglobal.h> to have Q_OS_UNIX defined on UNIX-based platforms. Move guards around.
       new  8999494   unixhelper.h: forgot to declare type of unix_cleanup() function.
       new  e70954f   unixhelper.{cpp,h},x2goclient.cpp}: unixhelper should really be a (module) namespace, not a class.
       new  3ebef1f   unixhelper.{cpp,h}: add documentation/comments.
       new  a6acc24   x2goclient.cpp: return return value of unixhelper::unix_cleanup().
       new  a61c944   unixhelper.cpp: kill process group on error.
       new  e7494a7   unixhelper.{cpp,h}: implement signal unblocking in unixhelper::unix_cleanup(). Update documentation.
       new  cf70475   unixhelper.cpp: port from std::signal() to sigaction(). Handle errors.
       new  2a818a0   x2goclient.cpp: clean up.
       new  34fc0ce   x2goclient.cpp: don't start the UNIX cleanup helper process right after forking.
       new  6f85425   x2goclient.cpp: fix compile problems introduced with the last commit.
       new  ade558f   x2goclient.cpp: fix string comparison.
       new  f3a2e64   x2goclient.cpp: create new argv array on the heap instead of on the stack.
       new  75b7276   unixhelper.{cpp,h}: raise sleeping time to two seconds and grace period to 10 seconds.
       new  684b0fc   {unixhelper.{cpp,h},x2goclient.cpp}: switch main cleanup handling to parent PID polling.
       new  229b0f1   unixhelper.{cpp,h}: ignore SIGINT, SIGTERM, SIGPIPE, SIGQUIT, SIGUSR1 and SIGUSR2.
       new  d304b93   x2goclient.cpp: fix failing exec() call for the UNIX helper utility: correctly terminate arguments vector.
       new  f9d207a   {appdialog,configwidget,onmainwindow,unixhelper}.cpp: fix some compile warnings with GCC. Fix a few whitespace issues.
       new  4fba94a   appdialog.cpp: initialize parent in default case. Another GCC compile warning fix.
       new  66ee6e3   onmainwindow.cpp: correctly use ~/.x2go/.ssh as ssh directory when starting sshd in user mode.
       new  521040b   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  80e1920   compat.{cpp,h}: remove inline keyword, because function is not defined in header file.
       new  4bd36d4   compat.h: include QtCore/qglobal.h for Q_OS_... macros.
       new  7143d19   pulsemanager.{cpp,h}: new class for PulseAudio management.
       new  03475d0   x2goclient.pro{maemo}: reference new pulsemanager.{cpp,h} files.
       new  45fd5b8   macbuild.sh: add new MACPORTS_PREFIX detection/variable.
       new  0e5b323   macbuild.sh: add new dependency_error() helper function.
       new  10e5cea   macbuild.sh: add new lazy_canonical_path() helper function.
       new  5110835   macbuild.sh: add new get_nesting_level() helper function.
       new  08a5335   macbuild.sh: add new repeat_str() helper function.
       new  156d7a4   macbuild.sh: refactor nxproxy detection to use MACPORTS_PREFIX.
       new  e6f478e   macbuild.sh: add EXE_DIR and FRAMEWORKS_DIR internal variables.
       new  fdba300   macbuild.sh: define PulseAudio libraries and binaries to be later copied.
       new  c4bec1a   macbuild.sh: copy PulseAudio libraries and binaries.
       new  5128e08   macbuild.sh: add phase output for bundling nxproxy.
       new  1ae582a   macbuild.sh: add work-in-progress PulseAudio bundling.

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   (eaafb91)
            \
             N -- N -- N   refs/heads/bugfix/osx (1ae582a)

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 44 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:
 copy-deps-win32.bat |   36 ++++++++++++++++++++----------------
 debian/changelog    |   14 ++++++++++----
 src/sshprocess.cpp  |   21 ++++++++++++++++++---
 3 files changed, 48 insertions(+), 23 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