File node-gyp-addon-gypi.patch of Package nodejs16
80
1
Index: node-git.b4f0a18b5a/addon-rpm.gypi
2
===================================================================
3
--- /dev/null
4
+++ node-git.b4f0a18b5a/addon-rpm.gypi
5
6
+{
7
+ 'target_defaults': {
8
+ 'type': 'loadable_module',
9
+ 'product_prefix': '',
10
+ 'include_dirs': [
11
+ '/usr/include/node16/',
12
+ '/usr/include/'
13
+ ],
14
+
15
+ 'target_conditions': [
16
+ ['_type=="loadable_module"', {
17
+ 'product_extension': 'node',
18
+ 'defines': [ 'BUILDING_NODE_EXTENSION' ],
19
+ }]
20
+ ],
21
+
22
+ 'conditions': [
23
+ [ 'OS=="mac"', {
24
+ 'libraries': [ '-undefined dynamic_lookup' ],
25
+ 'xcode_settings': {
26
+ 'DYLIB_INSTALL_NAME_BASE': '@rpath'
27
+ },
28
+ }],
29
+ [ 'OS=="win"', {
30
+ 'libraries': [ '-l<(node_root_dir)/$(Configuration)/node.lib' ],
31
+ # warning C4251: 'node::ObjectWrap::handle_' : class 'v8::Persistent<T>'
32
+ # needs to have dll-interface to be used by clients of class 'node::ObjectWrap'
33
+ 'msvs_disabled_warnings': [ 4251 ],
34
+ }],
35
+ [ 'OS=="freebsd" or OS=="openbsd" or OS=="solaris" or (OS=="linux" and target_arch!="ia32")', {
36
+ 'cflags': [ '-fPIC' ],
37
+ }]
38
+ ]
39
+ }
40
+}
41
Index: node-git.b4f0a18b5a/deps/npm/node_modules/node-gyp/lib/configure.js
42
===================================================================
43
--- node-git.b4f0a18b5a.orig/deps/npm/node_modules/node-gyp/lib/configure.js
44
+++ node-git.b4f0a18b5a/deps/npm/node_modules/node-gyp/lib/configure.js
45
46
if ('v' + release.version !== process.version) {
47
// if --target was given, then determine a target version to compile for
48
log.verbose('get node dir', 'compiling against --target node version: %s', release.version)
49
- } else {
50
- // if no --target was specified then use the current host node version
51
- log.verbose('get node dir', 'no --target version specified, falling back to host node version: %s', release.version)
52
- }
53
54
if (!release.semver) {
55
// could not parse the version string with semver
56
57
nodeDir = path.resolve(gyp.devDir, release.versionDir)
58
createBuildDir()
59
})
60
+ } else {
61
+ // if no --target was specified then use RPM-installed headers
62
+ log.verbose('get node dir', 'no --target version specified, falling back to RPM installed headers')
63
+ nodeDir = '/usr/include/node16'
64
+ createBuildDir()
65
+ }
66
}
67
}
68
69
70
71
// this logic ported from the old `gyp_addon` python file
72
var gypScript = path.resolve(__dirname, '..', 'gyp', 'gyp_main.py')
73
- var addonGypi = path.resolve(__dirname, '..', 'addon.gypi')
74
+ var addon_gypi_file = gyp.opts.target || gyp.opts.nodedir ? 'addon.gypi' : 'addon-rpm.gypi'
75
+
76
+ var addonGypi = path.resolve(__dirname, '..', addon_gypi_file)
77
var commonGypi = path.resolve(nodeDir, 'include/node/common.gypi')
78
fs.stat(commonGypi, function (err) {
79
if (err) {
80