Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.
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: joyent/libuv
base: 5d2434bf71e4
Choose a base ref
...
head repository: joyent/libuv
compare: b647c27b02fd
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Aug 25, 2013

  1. windows: tweak Makefile.mingw for easier usage

    Default CC to `gcc` instead of `cc` because at least on the mingw
    installation I had there was no `cc` executable. This avoids having
    to type `CC=gcc` in all the `make` commands.
    
    Also append to `CFLAGS` instead of defining if not previously defined.
    These flags are required to build libuv, so they should not be
    overridden if other extra CFLAGS are supplied via the command
    line as well.
    alexcrichton authored and bnoordhuis committed Aug 25, 2013
    Copy the full SHA
    a9b3fe2 View commit details
    Browse the repository at this point in the history
  2. windows: fix mingw build

    On older mingw installations, DEVICE_TYPE isn't defined. This was
    redefined in windows.h, but it was done after it was already attempted
    to be used. This moves the #define for DEVICE_TYPE above the usage of
    it in windows.h to prevent compilation failures.
    alexcrichton authored and bnoordhuis committed Aug 25, 2013
    Copy the full SHA
    b647c27 View commit details
    Browse the repository at this point in the history