Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1f4295927fa9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 81d15948cc19
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 15, 2019

  1. python38: fix build on macOS

    Python 3.8 fails to build on macOS for two reasons:
    
    * python-3.x-distutils-C++.patch fails to apply cleanly.
    * An #include for <util.h> is missing, causing a build failure:
    
        ./Modules/posixmodule.c:6586:9: error: implicit declaration of function 'openpty' is invalid in C99
            if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0)
                ^
    
    Use the correct version of python-3.x-distutils-C++.patch, and add a
    patch to #include <util.h>.
    strager authored and FRidh committed Oct 15, 2019
    Copy the full SHA
    81d1594 View commit details
Loading