1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Use native libs directly
Remove the fallback wrapper adapters and use the native modules directly.
Author: Ximin Luo <infinity0@debian.org>
Forwarded: not-needed
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/bufferutil.cc
+++ b/src/bufferutil.cc
@@ -117,4 +117,4 @@
BufferUtil::Initialize(target);
}
-NODE_MODULE(bufferutil, init)
+NODE_MODULE(BufferUtil, init)
--- a/src/validation.cc
+++ b/src/validation.cc
@@ -144,5 +144,5 @@
Validation::Initialize(target);
}
-NODE_MODULE(validation, init)
+NODE_MODULE(Validation, init)
|