Skip to content

Commit

Permalink
Add support for openBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
justinbarclay committed Apr 2, 2024
1 parent 76d3845 commit ec2f9ae
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions parinfer-rust-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,10 @@ against and is known to be api compatible.")

(defconst parinfer-rust--lib-name (cond
((eq system-type 'darwin) "parinfer-rust-darwin.so")
((or
(eq system-type 'gnu/berkley)
(eq system-type 'berkley-unix))
"parinfer-rust-freebsd.so")
((eq system-type 'gnu/linux) "parinfer-rust-linux.so")
((eq system-type 'windows-nt) "parinfer-rust-windows.dll"))
"System dependent library name for `parinfer-rust-mode'.")
Expand Down

0 comments on commit ec2f9ae

Please sign in to comment.