diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-02-23 18:07:38 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-23 18:07:38 +0000 |
commit | 33fc4a63071c03ad46636b345a814e7e6d8f4ae0 (patch) | |
tree | fd13574895afeebf6d0a17f2bcfdd5b985a231d9 /src/proto | |
parent | dd2dfb3cb00d47d2e8248c4e9d2cdf51e1574b79 (diff) | |
download | vim-git-33fc4a63071c03ad46636b345a814e7e6d8f4ae0.tar.gz |
patch 8.2.4457: the GPM library can only be linked staticallyv8.2.4457
Problem: The GPM library can only be linked statically.
Solution: Make it possible to load the GPM library dynamically. (Damien)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/os_unix.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/os_unix.pro b/src/proto/os_unix.pro index ee22b4a42..7dd8e231b 100644 --- a/src/proto/os_unix.pro +++ b/src/proto/os_unix.pro @@ -85,4 +85,5 @@ void clip_xterm_set_selection(Clipboard_T *cbd); int xsmp_handle_requests(void); void xsmp_init(void); void xsmp_close(void); +int gpm_available(void); /* vim: set ft=c : */ |