Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Mac] Upgrade Karabiner-DriverKit-VirtualHIDDevice to v2.1.0 #716

Merged
merged 4 commits into from
Oct 25, 2023

Commits on Oct 25, 2023

  1. Configuration menu
    Copy the full SHA
    f6f6f8d View commit details
    Browse the repository at this point in the history
  2. Update dext related code

    vosaica authored and slotThe committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    f409a4b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3482067 View commit details
    Browse the repository at this point in the history
  4. Use kIOMasterPortDefault if compiled with SDK<12

    Compiling against Apple SDK older than 12.0 ends with errors:
    
    error: use of undeclared identifier 'kIOMainPortDefault'
    
    That is because `kIOMainPortDefault` was introduced in SDK 12.0
    (Monterey) and before that the `kIOMasterPortDefault` should be used.
    
    `kIOMasterPortDefault` was deprecated and was removed in SDK 12.0
    
    References:
    - https://developer.apple.com/documentation/iokit/kiomainportdefault
    - https://developer.apple.com/documentation/iokit/kiomasterportdefault
    sixtysecrun authored and slotThe committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    a96f039 View commit details
    Browse the repository at this point in the history