sqlite: bump version

This commit is contained in:
Jérôme Duval
2024-12-10 17:51:13 +01:00
parent f5c381a8c9
commit df730f5193
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
From 306b219666e44668a897334dbfbc33162fb4f7e0 Mon Sep 17 00:00:00 2001
From: Chris Roberts <cpr420@gmail.com>
Date: Thu, 23 May 2024 21:25:52 -0600
Subject: quick fix to enable libedit
diff --git a/configure.ac b/configure.ac
index 2aa9b13..02e7b54 100644
--- a/configure.ac
+++ b/configure.ac
@@ -57,9 +57,9 @@ AS_IF([ test x"$enable_editline" != xno ],[
LIBS=""
AC_SEARCH_LIBS([readline],[edit],[
AC_DEFINE([HAVE_EDITLINE],1,Define to use BSD editline)
- READLINE_LIBS="$LIBS -ltinfo"
+ READLINE_LIBS="$LIBS"
enable_readline=no
- ],[],[-ltinfo])
+ ],[],[])
AS_UNSET(ac_cv_search_readline)
LIBS=$sLIBS
])
--
2.45.2