diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-08 13:36:57 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-08 13:36:57 +0000 |
commit | 67ffb417861a90fd2c1b215a42fd230272ed94cb (patch) | |
tree | 25b56d4048bbabe4d6c4aef70517d686985718ac /src/config.mk.in | |
parent | 748b308eebe8d8860888eb27da08333f175d547d (diff) | |
download | vim-git-67ffb417861a90fd2c1b215a42fd230272ed94cb.tar.gz |
patch 8.2.4039: the xdiff library is linked in even when not usedv8.2.4039
Problem: The xdiff library is linked in even when not used.
Solution: Use configure to decide whether xdiff object files are included.
Diffstat (limited to 'src/config.mk.in')
-rw-r--r-- | src/config.mk.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.mk.in b/src/config.mk.in index df09cfe30..4eb692839 100644 --- a/src/config.mk.in +++ b/src/config.mk.in @@ -37,6 +37,8 @@ X_PRE_LIBS = @X_PRE_LIBS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIB@ +XDIFF_OBJS_USED = @XDIFF_OBJS_USED@ + LUA_LIBS = @LUA_LIBS@ LUA_SRC = @LUA_SRC@ LUA_OBJ = @LUA_OBJ@ |