浏览代码

db_sqlite Make sure module compiles on BSD systems too

Copied from db_unixodbc/Makefile
Olle E. Johansson 12 年之前
父节点
当前提交
98be8f70d4
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      modules/db_sqlite/Makefile

+ 6 - 1
modules/db_sqlite/Makefile

@@ -6,7 +6,12 @@ include ../../Makefile.defs
 auto_gen=
 NAME=db_sqlite.so
 
-LIBS +=-lsqlite3
+# sqlite3.h locations (freebsd,openbsd  solaris)
+DEFS += -I$(LOCALBASE)/include
+
+# libodbc locations on RH/Suse, Solaris /OpenBSD, FreeBSD
+# (Debian does the right thing and puts it in /usr/lib)
+LIBS= -L$(LOCALBASE)/lib -lsqlite3
 
 DEFS+=-DKAMAILIO_MOD_INTERFACE