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

Adapt to perl 5.37.1 #304

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Adapt to perl 5.37.1 #304

wants to merge 1 commit into from

Commits on Jul 12, 2023

  1. Adapt to perl 5.37.1

    Perl 5.37.1 removed a deprecated sv_nv() macro and SDL fails to build
    with Perl 5.38.0:
    
    lib/SDLx/Controller/Interface.xs:60:26: error: implicit declaration of function 'sv_nv'
       60 |         out->dv_x      = sv_nv(temp);
          |                          ^~~~~
    
    Users are advised to use SvNVx() macro instead. SvNVx() seems to have been
    available all the time (it predates a commit from 1993-10-07).
    
    This patch does that.
    
    PerlGameDev#303
    ppisar committed Jul 12, 2023
    Configuration menu
    Copy the full SHA
    d734d03 View commit details
    Browse the repository at this point in the history