Changes between Initial Version and Version 5 of Ticket #17366


Ignore:
Timestamp:
Sep 2, 2013, 12:51:41 AM (11 years ago)
Author:
mojca (Mojca Miklavec)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #17366

    • Property Status changed from new to reopened
    • Property Cc mojca@… added; pguyot@… removed
    • Property Summary changed from mkvtoolnix - 2.4.0 - +wxwidgets variant produces unusable binary to mkvtoolnix: create an app bundle
    • Property Version changed from 1.6.0 to
    • Property Milestone changed from Port Bugs to
    • Property Owner changed from macports-tickets@… to pguyot@…
  • Ticket #17366 – Description

    initial v5  
    11The +wxwidgets variant produces a binary which does not properly bind to the osx Gui framework. The end result is a correctly rendered gui that does not respond to user mouse or keyboard input nor is capable of changing focus.
    22
    3 The fix is to place the binary in an app bundle as described in the WxWidgets Mac OSX Issues wiki:
     3The fix is to place the binary in an app bundle or add the code as described in the wxWidgets Mac OS X Issues wiki:
    44
    5 http://wiki.wxwidgets.org/WxMac_Issues
     5http://wiki.wxwidgets.org/wxMac_Issues
     6
     7{{{
     8#include <ApplicationServices/ApplicationServices.h>
     9 
     10ProcessSerialNumber PSN;
     11GetCurrentProcess(&PSN);
     12TransformProcessType(&PSN,kProcessTransformToForegroundApplication);
     13}}}