We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c92dbcc commit 3a3fc8fCopy full SHA for 3a3fc8f
.github/workflows/build.yml
@@ -78,7 +78,7 @@ jobs:
78
arch: ${{ matrix.freebsd_arch }}
79
usesh: true
80
prepare: |
81
- pkg install -y krb5 node npm
+ pkg install -y krb5 node npm pkgconf
82
run: |
83
node .github/scripts/build.mjs
84
binding.gyp
@@ -87,12 +87,12 @@
87
},
88
}],
89
['OS=="freebsd"', {
90
- 'include_dirs': [
91
- '/usr/local/include',
+ 'include_dirs+': [
+ '<!(pkg-config krb5 --cflags-only-I | sed -E "s/(-I *|-isystem *)//g")',
92
],
93
'link_settings': {
94
'library_dirs': [
95
- '/usr/local/lib',
+ '<!(pkg-config krb5 --libs-only-L | sed -e "s/-L//g")',
96
]
97
98
0 commit comments