From: Jo-Philipp Wich Date: Thu, 23 Jun 2011 14:23:31 +0000 (+0000) Subject: [packages] lsqlite3: actually link against libsqlite3, fixes segfault when accessing... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=041965e12051e60086877f6468c4bc320cd44253 [packages] lsqlite3: actually link against libsqlite3, fixes segfault when accessing sqlite3 functions... (#8305) SVN-Revision: 27263 --- diff --git a/lang/lsqlite3/Makefile b/lang/lsqlite3/Makefile index dbed0cf4ad..b5e15d3f2d 100644 --- a/lang/lsqlite3/Makefile +++ b/lang/lsqlite3/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2010 OpenWrt.org +# Copyright (C) 2009-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=lsqlite3 PKG_VERSION:=7 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://luaforge.net/frs/download.php/4472 @@ -35,7 +35,7 @@ endef TARGET_CFLAGS += $(FPIC) $(TARGET_CPPFLAGS) -std=c99 -TARGET_LDFLAGS += -llua +TARGET_LDFLAGS += -llua -lsqlite3 MAKE_FLAGS += \ CC="$(TARGET_CC)" \