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

Support later Visual Studio releases better #1190

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Nov 1, 2023

  1. config.h.w32: Accomdate [stdint|inttypes].h

    We have these headers and types on later Visual Studio versions, so make sure
    these are defined in these cases.
    fanc999-1 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    7712518 View commit details
    Browse the repository at this point in the history
  2. NTMakefile: Correct stdint.h check and add stdbool.h check

    Visual Studio 2010 and later ship with stdint.h, and 2013 and later ship with
    stdbool.h, so don't copy compatibility versions of these headers as Heimdal
    headers in these cases as they could break builds with other programs badly,
    such as items that include the inttypes.h that ship with later Visual Studio
    releases.
    fanc999-1 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    e07f78b View commit details
    Browse the repository at this point in the history
  3. windows/NTMakefile.w32: Honor MAKEINFO if specified

    If we set in the MAKEINFO=... in the NMake commandline, such as callin
    makeinfo using PERL, ensure that we honor this when calling NTMakefile.w32.
    fanc999-1 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    3c42640 View commit details
    Browse the repository at this point in the history