Skip to content

Commit 335bc1e

Browse files
authored
Merge pull request #19 from seuros/fix/dragonfly-support
fix: add DragonFlyBSD target support
2 parents 178af5a + 2f56d73 commit 335bc1e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ impl Build {
136136
_ if target.contains("linux") => {
137137
config.define("LUA_USE_LINUX", None);
138138
}
139-
_ if target.ends_with("bsd") => {
139+
_ if target.ends_with("bsd") || target.contains("dragonfly") => {
140140
config.define("LUA_USE_LINUX", None);
141141
}
142142
_ if target.ends_with("illumos") => {

0 commit comments

Comments
 (0)