On Dec 10, 2015, at 7:09 AM, Bertalan Voros <bertalan.voros@gmail.com> wrote:
Then getting errors at the sqlite bit: src/modules/rlm_sql/drivers/rlm_sql_sqlite/rlm_sql_sqlite.c:802:30: error: ‘rlm_sql_sqlite_conn_t’ has no member named ‘db’ return sqlite3_changes(conn->db); ^
That's... weird. Because the definition of rlm_sql_sqlite_conn_t is *in that file*. And it has an entry "db". The only reason it *might not* have that entry is if there's no 'sqlite3' data structure defined. i.e. you're building on a system without sqlite3 development headers. And the errors you posted here are only a small portion of the errors. An earlier error says something like "no such thing sqlite3". Please post ALL of the errors from compiling rlm_sql_sqlite.c. Alan DeKok.