comparison src/configure.ac @ 30719:71137f73c94d v9.0.0694

patch 9.0.0694: no native sound support on Mac OS Commit: https://github.com/vim/vim/commit/4314e4f7da4db5d85f63cdf43b73be3689502c93 Author: Yee Cheng Chin <ychin.git@gmail.com> Date: Sat Oct 8 13:50:05 2022 +0100 patch 9.0.0694: no native sound support on Mac OS Problem: No native sound support on Mac OS. Solution: Add sound support for Mac OS. (Yee Cheng Chin, closes https://github.com/vim/vim/issues/11274)
author Bram Moolenaar <Bram@vim.org>
date Sat, 08 Oct 2022 15:00:05 +0200
parents 101f08b49ed3
children 2295ee9c025d
comparison
equal deleted inserted replaced
30718:118268e20251 30719:71137f73c94d
4551 4551
4552 if test "$MACOS_X" = "yes"; then 4552 if test "$MACOS_X" = "yes"; then
4553 AC_MSG_CHECKING([whether we need macOS frameworks]) 4553 AC_MSG_CHECKING([whether we need macOS frameworks])
4554 if test "$MACOS_X_DARWIN" = "yes"; then 4554 if test "$MACOS_X_DARWIN" = "yes"; then
4555 if test "$features" = "tiny"; then 4555 if test "$features" = "tiny"; then
4556 dnl Since no FEAT_CLIPBOARD, no longer need for os_macosx.m. 4556 dnl Since no FEAT_CLIPBOARD or FEAT_SOUND, no need for os_macosx.m.
4557 OS_EXTRA_SRC=`echo "$OS_EXTRA_SRC" | sed -e 's+os_macosx.m++'` 4557 OS_EXTRA_SRC=`echo "$OS_EXTRA_SRC" | sed -e 's+os_macosx.m++'`
4558 OS_EXTRA_OBJ=`echo "$OS_EXTRA_OBJ" | sed -e 's+objects/os_macosx.o++'` 4558 OS_EXTRA_OBJ=`echo "$OS_EXTRA_OBJ" | sed -e 's+objects/os_macosx.o++'`
4559 AC_MSG_RESULT([yes, we need CoreServices]) 4559 AC_MSG_RESULT([yes, we need CoreServices])
4560 LIBS="$LIBS -framework CoreServices" 4560 LIBS="$LIBS -framework CoreServices"
4561 else 4561 else