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
base: da613094f76d
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: a8040c700ab2
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 2, 2021

  1. groff: fix static build

    Without manual override following problematic code in generated
    "configure" script (line 15918):
    
      case "$host_os" in
        # Guess yes on glibc systems.
        *-gnu* | gnu*) gl_cv_func_signbit="guessing yes" ;;
        # Guess yes on native Windows.
        mingw*)        gl_cv_func_signbit="guessing yes" ;;
        # If we don't know, assume the worst.
        *)             gl_cv_func_signbit="guessing no" ;;
      esac
    
    results in declaration conflict with gnulib declaring
    
      int signbit(double)
    
    while system "math.h" providing modern declaration as
    
      constexpr bool signbit(double)
    Dmitry Bogatov authored and FRidh committed Jan 2, 2021
    Copy the full SHA
    a8040c7 View commit details
    Browse the repository at this point in the history