Commit a8fb7d4f authored by Mike Gabriel's avatar Mike Gabriel

Detection for Mac OS X's launchd service on Mac OS X 10.10 and beyond…

Detection for Mac OS X's launchd service on Mac OS X 10.10 and beyond (607_nxcomp_macosx-X11-launcher-in-private-tmp.full+lite.patch).
parent 31cdd874
Description: Detection for Mac OS X's launchd service on Mac OS X 10.10 and beyond
Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
--- a/nxcomp/Loop.cpp
+++ b/nxcomp/Loop.cpp
@@ -4183,7 +4183,7 @@
#ifdef __APPLE__
- if (strncasecmp(display, "/tmp/launch", 11) == 0)
+ if ((strncasecmp(display, "/tmp/launch", 11) == 0) || (strncasecmp(display, "/private/tmp/com.apple.launchd", 30) == 0))
{
#ifdef TEST
*logofs << "Loop: Using launchd service on socket '"
#401_nxcomp_bigrequests-and-genericevent-extensions.full+lite.patch
607_nxcomp_macosx-X11-launcher-in-private-tmp.full+lite.patch
990_fix-DEBUG-and-TEST-builds.full.patch
991_fix-hr-typos.full+lite.patch
991_fix-hr-typos.full.patch
......
......@@ -4183,7 +4183,7 @@ int SetupDisplaySocket(int &xServerAddrFamily, sockaddr *&xServerAddr,
#ifdef __APPLE__
if (strncasecmp(display, "/tmp/launch", 11) == 0)
if ((strncasecmp(display, "/tmp/launch", 11) == 0) || (strncasecmp(display, "/private/tmp/com.apple.launchd", 30) == 0))
{
#ifdef TEST
*logofs << "Loop: Using launchd service on socket '"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment