Re: kdeinit5 on OS X

2015-11-24 Thread David Faure
On Monday 23 November 2015 13:29:23 René J.V. Bertin wrote: > Hi, > > Preparing a MacPorts port for kf5-kinit, I see the following in kdeinit's > CMake file: > > add_executable(kdeinit5 ${kdeinit_SRCS}) > if (APPLE) > # this has to be GUI on OSX because it launches GUI

Re: kdeinit5 on OS X

2015-11-24 Thread René J . V . Bertin
David Faure wrote: > I thought app bundles led to more GUI initializations than non-app bundles, > and clearly the person writing the above (Benjamin Reed, CC'ed) found that to > be true as well, at least back then. Yeah, that used to be true, question is to what extent that is still the case.

Re: kdeinit5 on OS X

2015-11-23 Thread René J . V . Bertin
Aleix Pol wrote: > I also don't see why you'd want kdeinit in a bundle. But then I'm not There used to be a time when a connection to the windowserver indeed required (or was much easier to get, or worked better) if the application lived in an appbundle, and there *may* still be conditions

kdeinit5 on OS X

2015-11-23 Thread René J . V . Bertin
Hi, Preparing a MacPorts port for kf5-kinit, I see the following in kdeinit's CMake file: add_executable(kdeinit5 ${kdeinit_SRCS}) if (APPLE) # this has to be GUI on OSX because it launches GUI apps and need a quartz context set_target_properties(kdeinit5 PROPERTIES

Re: kdeinit5 on OS X

2015-11-23 Thread Aleix Pol
On Mon, Nov 23, 2015 at 1:29 PM, René J.V. wrote: > Hi, > > Preparing a MacPorts port for kf5-kinit, I see the following in kdeinit's > CMake file: > > add_executable(kdeinit5 ${kdeinit_SRCS}) > if (APPLE) > # this has to be GUI on OSX because it launches GUI apps and need