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: 91faa3e68848
Choose a base ref
...
head repository: joyent/libuv
compare: d56434a21d9e
Choose a head ref
  • 2 commits
  • 7 files changed
  • 2 contributors

Commits on Nov 7, 2012

  1. include: split off libev function prototypes

    This patch creates a new header - ev-proto.h - which contains all of the
    protoypes for libev functions. This allows us to create a shared object of
    libuv without exposing libev internal functions.
    sgallagher authored and bnoordhuis committed Nov 7, 2012
    Copy the full SHA
    e318b06 View commit details
    Browse the repository at this point in the history
  2. build: support building a .so

    You can now select to build a shared object at configure time:
    
      $ ./gyp_uv -Dcomponent=shared_library -Dlibrary=shared_library
    
    And build it with:
    
      $ make -C out BUILDTYPE=Debug # or BUILDTYPE=Release
    
    Or, if you use ninja:
    
      $ ninja -C out/Debug
    bnoordhuis committed Nov 7, 2012
    Copy the full SHA
    d56434a View commit details
    Browse the repository at this point in the history