From d75da109055e902a73beced394d2c5ddaed497cf Mon Sep 17 00:00:00 2001 From: Remy Marquis Date: Fri, 19 Aug 2016 20:49:48 +0200 Subject: [PATCH] libs: adjusted LuaSQL config file --- luasql/README | 6 +++--- luasql/config | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/luasql/README b/luasql/README index b776f28b..78a7bb55 100644 --- a/luasql/README +++ b/luasql/README @@ -1,13 +1,13 @@ -LuaSQL +LuaSQL - This is a copy of commit fb09e52d7759e582d2c03185f1147ff19dfe42e0 http://keplerproject.github.io/luasql LuaSQL is a simple interface from Lua to a DBMS. It enables a Lua program to: - * Connect to ODBC, ADO, Oracle, MySQL, SQLite, Firebird and PostgreSQL databases; + * Connect to ODBC, ADO, Oracle, MySQL, SQLite, Firebird and PostgreSQL databases; * Execute arbitrary SQL statements; * Retrieve results in a row-by-row cursor fashion. -LuaSQL is free software and uses the same license as Lua 5.1. +LuaSQL is free software and uses the same license as Lua 5.1. Source code for LuaSQL can be downloaded from its GitHub repository. diff --git a/luasql/config b/luasql/config index 1bbf9df0..f542df7d 100644 --- a/luasql/config +++ b/luasql/config @@ -4,7 +4,7 @@ PREFIX ?= /usr # Lua version and dirs -LUA_SYS_VER ?= 5.2 +LUA_SYS_VER ?= 5.3 LUA_LIBDIR ?= $(PREFIX)/lib/lua/$(LUA_SYS_VER) LUA_DIR ?= $(PREFIX)/share/lua/$(LUA_SYS_VER) LUA_INC ?= $(PREFIX)/include/lua$(LUA_SYS_VER) @@ -35,7 +35,7 @@ DRIVER_INCS_postgres ?= -I/usr/include/postgresql # - SQLite DRIVER_LIBS_sqlite ?= -lsqlite DRIVER_INCS_sqlite ?= -# - SQLite3 +# - SQLite3 DRIVER_LIBS_sqlite3 ?= -L/opt/local/lib -lsqlite3 DRIVER_INCS_sqlite3 ?= -I/opt/local/include # - ODBC