summaryrefslogtreecommitdiffstats
path: root/src/auto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-06-19 17:05:47 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-19 17:05:47 +0100
commite530395c2cd261d598094dc9ea785e90a753c5f1 (patch)
tree63ae1125e87818c6c3bdba7e349d270f34bcd6ce /src/auto
parentc5382b667ac4b69ddff5b5bc562386843bc9c07b (diff)
patch 8.2.5131: timeout implementation is not optimalv8.2.5131
Problem: Timeout implementation is not optimal. Solution: Further improvements for timeouts. Add a test for searchpair() timeout. (partly by Paul Ollis)
Diffstat (limited to 'src/auto')
-rwxr-xr-xsrc/auto/configure6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/auto/configure b/src/auto/configure
index 3cb6e51fee..5f032bff9e 100755
--- a/src/auto/configure
+++ b/src/auto/configure
@@ -4769,6 +4769,8 @@ rm -f core conftest.err conftest.$ac_objext \
MACOS_X_DARWIN=yes
OS_EXTRA_SRC="os_macosx.m os_mac_conv.c";
OS_EXTRA_OBJ="objects/os_macosx.o objects/os_mac_conv.o"
+ $as_echo "#define HAVE_TIMER_CREATE 1" >>confdefs.h
+
CPPFLAGS="$CPPFLAGS -DMACOS_X_DARWIN"
if test -z "$with_x" -a "X$enable_gui" != Xmotif -a "X$enable_gui" != Xgtk2 -a "X$enable_gui" != Xgtk3; then
@@ -13044,7 +13046,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
#include<signal.h>
#include<time.h>
-static void set_flag(union sigval) {}
+static void set_flag(union sigval sv) {}
int
main ()
@@ -13073,7 +13075,7 @@ else
#include<signal.h>
#include<time.h>
-static void set_flag(union sigval) {}
+static void set_flag(union sigval sv) {}
int
main ()