Commit 6127c752 by Konstantin Käfer

fix compilation on libeio provided by debian (fix by @pyneo)

parent e71bce17
...@@ -48,7 +48,7 @@ See the [API documentation](https://github.com/developmentseed/node-sqlite3/wiki ...@@ -48,7 +48,7 @@ See the [API documentation](https://github.com/developmentseed/node-sqlite3/wiki
# BUILDING # BUILDING
Make sure you have the sources for `sqlite3` installed. Mac OS X ships with these by default. If you don't have them installed, install the `-dev` package with your package manager, e.g. `apt-get install libsqlite3-dev` for Debian/Ubuntu. Make sure that you have at least `libsqlite3` >= 3.6. Make sure you have the sources for `sqlite3` installed. Mac OS X ships with these by default. If you don't have them installed, install the `-dev` package with your package manager, e.g. `apt-get install libsqlite3-dev` for Debian/Ubuntu. Make sure that you have at least `libsqlite3` >= 3.6.
To obtain and build the bindings: To obtain and build the bindings:
...@@ -75,6 +75,17 @@ You can also use [`npm`](https://github.com/isaacs/npm) to download and install ...@@ -75,6 +75,17 @@ You can also use [`npm`](https://github.com/isaacs/npm) to download and install
# CONTRIBUTORS # CONTRIBUTORS
* [Konstantin Käfer](https://github.com/kkaefer) * [Konstantin Käfer](https://github.com/kkaefer)
* [Orlando Vazquez](https://github.com/orlandov)
* [Artem Kustikov](https://github.com/artiz)
* [Eric Fredricksen](https://github.com/grumdrig)
* [John Wright](https://github.com/mrjjwright)
* [Ryan Dahl](https://github.com/ry)
* [Will White](https://github.com/willwhite)
* [Tom MacWright](https://github.com/tmcw)
* [Dane Springmeyer](https://github.com/springmeyer)
* [Carter Thaxton](https://github.com/carter-thaxton)
* [Audrius Kažukauskas](https://github.com/audriusk)
* [pyneo](https://github.com/pyneo)
......
...@@ -14,7 +14,8 @@ ...@@ -14,7 +14,8 @@
"Tom MacWright <tom@developmentseed.org>", "Tom MacWright <tom@developmentseed.org>",
"Dane Springmeyer <dane@developmentseed.org>", "Dane Springmeyer <dane@developmentseed.org>",
"Carter Thaxton <carter.thaxton@gmail.com>", "Carter Thaxton <carter.thaxton@gmail.com>",
"Audrius Kažukauskas <audrius@neutrino.lt>" "Audrius Kažukauskas <audrius@neutrino.lt>",
"pyneo"
], ],
"repository": { "repository": {
"type": "git", "type": "git",
......
...@@ -53,7 +53,7 @@ public: ...@@ -53,7 +53,7 @@ public:
} }
inline ~Async() { inline ~Async() {
ev_invoke(&watcher, ev_async_pending(&watcher)); ev_invoke(EV_DEFAULT_UC_ &watcher, ev_async_pending(&watcher));
pthread_mutex_destroy(&mutex); pthread_mutex_destroy(&mutex);
ev_async_stop(EV_DEFAULT_UC_ &watcher); ev_async_stop(EV_DEFAULT_UC_ &watcher);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment