summaryrefslogtreecommitdiff
path: root/databases/sqlite/patches
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2001-10-16 16:20:08 +0000
committerjlam <jlam@pkgsrc.org>2001-10-16 16:20:08 +0000
commit1171e3a7ee2ad733f24141c63310a66352a324ca (patch)
tree0ad55b0bdc80e7d03521850b5f70ed96c77d21ff /databases/sqlite/patches
parent1955bc938f406a2e79f58c34b95711441af0330d (diff)
downloadpkgsrc-1171e3a7ee2ad733f24141c63310a66352a324ca.tar.gz
databases/sqlite: SQL Database Engine In A C Library
SQLite is a C library that implements an SQL database engine. Programs that link with the SQLite library can have SQL database access without running a separate RDBMS process. The distribution comes with a standalone command-line access program (sqlite) that can be used to administer an SQLite database and which serves as an example of how to use the SQLite library. SQLite is not a client library used to connect to a big database server. SQLite is the server. The SQLite library reads and writes directly to and from the database files on disk.
Diffstat (limited to 'databases/sqlite/patches')
-rw-r--r--databases/sqlite/patches/patch-aa22
1 files changed, 22 insertions, 0 deletions
diff --git a/databases/sqlite/patches/patch-aa b/databases/sqlite/patches/patch-aa
new file mode 100644
index 00000000000..67d782195ae
--- /dev/null
+++ b/databases/sqlite/patches/patch-aa
@@ -0,0 +1,22 @@
+$NetBSD: patch-aa,v 1.1.1.1 2001/10/16 16:20:08 jlam Exp $
+
+--- ../sqlite/configure.orig Thu Sep 27 21:34:44 2001
++++ ../sqlite/configure
+@@ -13341,7 +13341,7 @@
+ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+ if test "$ac_cv_search_readline" = no; then
+ for ac_lib in readline; do
+- LIBS="-l$ac_lib $ac_func_search_save_LIBS"
++ LIBS="-l$ac_lib -ltermcap $ac_func_search_save_LIBS"
+ cat >conftest.$ac_ext <<_ACEOF
+ #line 13346 "configure"
+ #include "confdefs.h"
+@@ -13373,7 +13373,7 @@
+ ac_status=$?
+ echo "$as_me:13374: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+- ac_cv_search_readline="-l$ac_lib"
++ ac_cv_search_readline="${LDFLAGS} -l$ac_lib -ltermcap"
+ break
+ else
+ echo "$as_me: failed program was:" >&5