comparison src/configure.ac @ 23086:d020ba29f111 v8.2.2089

patch 8.2.2089: libvterm test fails to build on Mac Commit: https://github.com/vim/vim/commit/6cd42db9dc1251b052b97d47bafc063eacac1b3e Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 4 18:09:54 2020 +0100 patch 8.2.2089: libvterm test fails to build on Mac Problem: Libvterm test fails to build on Mac. Solution: Adjust configure to remove a space between -L and the path that follows.
author Bram Moolenaar <Bram@vim.org>
date Fri, 04 Dec 2020 18:15:04 +0100
parents 29b2448f2191
children 55f8b7da27f3
comparison
equal deleted inserted replaced
23085:1db630e5efd2 23086:d020ba29f111
4465 AC_DEFINE(_FILE_OFFSET_BITS, 64) 4465 AC_DEFINE(_FILE_OFFSET_BITS, 64)
4466 else 4466 else
4467 AC_MSG_RESULT(no) 4467 AC_MSG_RESULT(no)
4468 fi 4468 fi
4469 4469
4470 dnl $LDFLAGS is passed to glibtool in libvterm, it doesn't like a space
4471 dnl between "-L" and the path that follows.
4472 LDFLAGS=`echo "$LDFLAGS" | sed -e 's/-L /-L/g'`
4473
4470 dnl link.sh tries to avoid overlinking in a hackish way. 4474 dnl link.sh tries to avoid overlinking in a hackish way.
4471 dnl At least GNU ld supports --as-needed which provides the same functionality 4475 dnl At least GNU ld supports --as-needed which provides the same functionality
4472 dnl at linker level. Let's use it. 4476 dnl at linker level. Let's use it.
4473 AC_MSG_CHECKING(linker --as-needed support) 4477 AC_MSG_CHECKING(linker --as-needed support)
4474 LINK_AS_NEEDED= 4478 LINK_AS_NEEDED=