Re: Necessary library is a leaf for unknown reason

2019-03-14 Thread Andrew Udvare
> On 2019-03-14, at 17:23, Ryan Schmidt wrote: > > Your understanding is correct, it looks like you've done everything > correctly, so I wouldn't worry about it for now. After the port is in the > official ports tree, uninstall and reinstall the port and see if it's still > wrong. > I add

Re: Anyone using cmake for iOS development?

2019-03-14 Thread Ryan Schmidt
> On Mar 14, 2019, at 17:20, René J.V. Bertin wrote: > >> Apple requires each app to specify that it supports Retina mode. > > AFAIK applications have always existed that set NSPrincipalClass to > NSApplication; do these now behave incorrectly on high-dpi screens if they > don't contain an

Re: Anyone using cmake for iOS development?

2019-03-14 Thread René J . V . Bertin
> Apple requires each app to specify that it supports Retina mode. AFAIK applications have always existed that set NSPrincipalClass to NSApplication; do these now behave incorrectly on high-dpi screens if they don't contain any modifications to their code? Somehow I doubt that. > MacPorts and

Re: error while installing mysql-connector-java

2019-03-14 Thread Ryan Schmidt
On Mar 10, 2019, at 16:50, Jorge Moreira rote: > The command sudo port install mysql-connector-java failed. > > ---> Building mysql-connector-java > Error: Failed to build mysql-connector-java: command execution failed > Error: See > /opt/local/var/macports/logs/_opt_local_var_macports_sourc

Re: Necessary library is a leaf for unknown reason

2019-03-14 Thread Ryan Schmidt
On Mar 10, 2019, at 03:54, Andrew Udvare wrote: > I have made a Portfile for mas that needs the Commandant framework, another > Portfile I made: > > https://github.com/Tatsh/ports/blob/master/devel/Commandant/Portfile > https://github.com/Tatsh/ports/blob/master/sysutils/mas/Portfile > > On lin

Re: How can I install a MacPorts port that is linked with an earlier MacOS release?

2019-03-14 Thread Ryan Schmidt
On Mar 13, 2019, at 16:12, Mojca Miklavec wrote: > Dear Michael, > > On Wed, 13 Mar 2019 at 16:03, Michael A. Leonetti wrote: >> >> How an I install the port packages that support El Capitan (or any specific >> MacOS version) and above to link against? > > By far the least painful way would

Re: Anyone using cmake for iOS development?

2019-03-14 Thread Ryan Schmidt
On Mar 13, 2019, at 09:57, René J.V. Bertin wrote: > Is anyone using cmake for the development of applications for Apple's > non-desktop OS flavours (iOS, WatchOS etc)? > > Reason for asking is that CMake doesn't set the Info.plist flags necessary > for high-DPI support because it uses the s

Re: Anyone using cmake for iOS development?

2019-03-14 Thread René J . V . Bertin
FWIW, I now have confirmation that just setting NSPrincipalClass to NSApplication (in the Info.plist) is sufficient to enable high-dpi behaviour in Qt applications built through cmake. R