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: PDLPorters/pdl
base: 59d2a4c785ab
Choose a base ref
...
head repository: PDLPorters/pdl
compare: 6a320a23193e
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Aug 11, 2015

  1. build: hardcode the input pdl.c for compiling the pdl binary

    This is more portable since some `make`s only expand `$<` in an
    inference rule rather than an explicit command. See the definition in
    POSIX <http://pubs.opengroup.org/onlinepubs/009695399/utilities/make.html>.
    
    This came up with the make(1) in Solaris 11.2.
    zmughal committed Aug 11, 2015
    Copy the full SHA
    e9e7bfa View commit details
    Browse the repository at this point in the history
  2. Fix to Solaris build problem re quiet_nan (use long in signature)

    The quiet_nan() function on Solaris has the signature:
    
        double quiet_nan(long n);
    
    and this adds a define to set the `long` parameter in the function
    prototype and function definition.
    
    It appears that the logic is already in the code,
    just that the NANARG determined in mconf.h was not
    used to declare the local quiet_nan version.
    devel-chm authored and zmughal committed Aug 11, 2015
    Copy the full SHA
    6a320a2 View commit details
    Browse the repository at this point in the history