From: <abe...@us...> - 2016-03-10 17:35:11
|
Revision: 7583 http://sourceforge.net/p/astlinux/code/7583 Author: abelbeck Date: 2016-03-10 17:35:09 +0000 (Thu, 10 Mar 2016) Log Message: ----------- sqlite, fix regression for: --disable-static-shell Modified Paths: -------------- branches/1.0/package/sqlite/sqlite.mk Added Paths: ----------- branches/1.0/package/sqlite/sqlite-fix-disable-static-shell.patch Added: branches/1.0/package/sqlite/sqlite-fix-disable-static-shell.patch =================================================================== --- branches/1.0/package/sqlite/sqlite-fix-disable-static-shell.patch (rev 0) +++ branches/1.0/package/sqlite/sqlite-fix-disable-static-shell.patch 2016-03-10 17:35:09 UTC (rev 7583) @@ -0,0 +1,13 @@ +--- sqlite-3110100/Makefile.am.orig 2016-03-10 10:12:23.000000000 -0600 ++++ sqlite-3110100/Makefile.am 2016-03-10 10:14:14.000000000 -0600 +@@ -6,8 +6,8 @@ + libsqlite3_la_LDFLAGS = -no-undefined -version-info 8:6:8 + + bin_PROGRAMS = sqlite3 +-sqlite3_SOURCES = shell.c sqlite3.c sqlite3.h +-sqlite3_LDADD = @READLINE_LIBS@ ++sqlite3_SOURCES = shell.c sqlite3.h ++sqlite3_LDADD = @EXTRA_SHELL_OBJ@ @READLINE_LIBS@ + sqlite3_DEPENDENCIES = @EXTRA_SHELL_OBJ@ + sqlite3_CFLAGS = $(AM_CFLAGS) -DSQLITE_ENABLE_EXPLAIN_COMMENTS + Modified: branches/1.0/package/sqlite/sqlite.mk =================================================================== --- branches/1.0/package/sqlite/sqlite.mk 2016-03-10 14:56:43 UTC (rev 7582) +++ branches/1.0/package/sqlite/sqlite.mk 2016-03-10 17:35:09 UTC (rev 7583) @@ -9,6 +9,9 @@ SQLITE_SITE = http://www.sqlite.org/2016 SQLITE_INSTALL_STAGING = YES +# required with sqlite-fix-disable-static-shell.patch +SQLITE_AUTORECONF = YES + SQLITE_CFLAGS += -DSQLITE_ENABLE_COLUMN_METADATA SQLITE_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) $(SQLITE_CFLAGS)" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |