build: link with libkvm on openbsd
The Makefile already did and now the gyp build does too. Fixes the OpenBSD build of node.js. Fixes joyent/node#5363.
This commit is contained in:
parent
ac4e7e7ff2
commit
4e5b8dc2ef
11
uv.gyp
11
uv.gyp
@ -235,21 +235,16 @@
|
||||
}],
|
||||
[ 'OS=="freebsd" or OS=="dragonflybsd"', {
|
||||
'sources': [ 'src/unix/freebsd.c' ],
|
||||
'link_settings': {
|
||||
'libraries': [
|
||||
'-lkvm',
|
||||
],
|
||||
},
|
||||
}],
|
||||
[ 'OS=="openbsd"', {
|
||||
'sources': [ 'src/unix/openbsd.c' ],
|
||||
}],
|
||||
[ 'OS=="netbsd"', {
|
||||
'sources': [ 'src/unix/netbsd.c' ],
|
||||
}],
|
||||
[ 'OS in "freebsd dragonflybsd openbsd netbsd".split()', {
|
||||
'link_settings': {
|
||||
'libraries': [
|
||||
'-lkvm',
|
||||
],
|
||||
'libraries': [ '-lkvm' ],
|
||||
},
|
||||
}],
|
||||
[ 'OS in "mac freebsd dragonflybsd openbsd netbsd".split()', {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user