libs: adjusted LuaSQL config file

This commit is contained in:
Remy Marquis 2016-08-19 20:49:48 +02:00
parent b62e4ff6ca
commit d75da10905
2 changed files with 5 additions and 5 deletions

View File

@ -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.

View File

@ -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