We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to add support OpenBSD / BSD for terminal ?
Roughly I did the following:
Added the package in OpenBSD by: pkg_add libvterm
pkg_add libvterm
tron$ cc terminal.c -I/usr/local/include -L/usr/local/lib -Wl,-Bstatic -lvterm -Wl,-Bdynamic -o terminal.so -shared -fPIC
This needs proper wire-up...how?
--- a/extensions/terminal/terminal.c +++ b/extensions/terminal/terminal.c @@ -9,12 +9,8 @@ #include <vterm.h> #include <signal.h> -#ifdef __APPLE__ - #include <util.h> - #include <sys/ioctl.h> -#else - #include <pty.h> -#endif +#include <util.h> +#include <sys/ioctl.h> /// typedef struct {
copied it to
CL-USER> (format nil "~(lib/~A/~A/~)" (uiop:operating-system) (uiop:architecture)) "lib/bsd/x64/"
Here my file:
terminal.so.gz
Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is it possible to add support OpenBSD / BSD for terminal ?
Roughly I did the following:
Added the package in OpenBSD by:
pkg_add libvterm
tron$ cc terminal.c -I/usr/local/include -L/usr/local/lib -Wl,-Bstatic -lvterm -Wl,-Bdynamic -o terminal.so -shared -fPIC
This needs proper wire-up...how?
copied it to
Here my file:
terminal.so.gz
Thank you!
The text was updated successfully, but these errors were encountered: