mirror of
https://github.com/etlegacy/etlegacy-libs.git
synced 2025-02-23 20:01:06 +00:00
libs: adjusted LuaSQL config file
This commit is contained in:
parent
b62e4ff6ca
commit
d75da10905
2 changed files with 5 additions and 5 deletions
|
@ -1,13 +1,13 @@
|
||||||
LuaSQL
|
LuaSQL - This is a copy of commit fb09e52d7759e582d2c03185f1147ff19dfe42e0
|
||||||
http://keplerproject.github.io/luasql
|
http://keplerproject.github.io/luasql
|
||||||
|
|
||||||
LuaSQL is a simple interface from Lua to a DBMS. It enables a Lua program to:
|
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;
|
* Execute arbitrary SQL statements;
|
||||||
* Retrieve results in a row-by-row cursor fashion.
|
* 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.
|
Source code for LuaSQL can be downloaded from its GitHub repository.
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
PREFIX ?= /usr
|
PREFIX ?= /usr
|
||||||
|
|
||||||
# Lua version and dirs
|
# Lua version and dirs
|
||||||
LUA_SYS_VER ?= 5.2
|
LUA_SYS_VER ?= 5.3
|
||||||
LUA_LIBDIR ?= $(PREFIX)/lib/lua/$(LUA_SYS_VER)
|
LUA_LIBDIR ?= $(PREFIX)/lib/lua/$(LUA_SYS_VER)
|
||||||
LUA_DIR ?= $(PREFIX)/share/lua/$(LUA_SYS_VER)
|
LUA_DIR ?= $(PREFIX)/share/lua/$(LUA_SYS_VER)
|
||||||
LUA_INC ?= $(PREFIX)/include/lua$(LUA_SYS_VER)
|
LUA_INC ?= $(PREFIX)/include/lua$(LUA_SYS_VER)
|
||||||
|
@ -35,7 +35,7 @@ DRIVER_INCS_postgres ?= -I/usr/include/postgresql
|
||||||
# - SQLite
|
# - SQLite
|
||||||
DRIVER_LIBS_sqlite ?= -lsqlite
|
DRIVER_LIBS_sqlite ?= -lsqlite
|
||||||
DRIVER_INCS_sqlite ?=
|
DRIVER_INCS_sqlite ?=
|
||||||
# - SQLite3
|
# - SQLite3
|
||||||
DRIVER_LIBS_sqlite3 ?= -L/opt/local/lib -lsqlite3
|
DRIVER_LIBS_sqlite3 ?= -L/opt/local/lib -lsqlite3
|
||||||
DRIVER_INCS_sqlite3 ?= -I/opt/local/include
|
DRIVER_INCS_sqlite3 ?= -I/opt/local/include
|
||||||
# - ODBC
|
# - ODBC
|
||||||
|
|
Loading…
Reference in a new issue