Browse Source

sqlite: fixed sqlite to actually build using a Makefile patch

cross
Nagy Karoly Gabriel 16 years ago
parent
commit
509dfa401c
  1. 40
      database/sqlite/sqlite-3.6.11-reference.patch

40
database/sqlite/sqlite-3.6.11-reference.patch

@ -0,0 +1,40 @@
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../sqlite/sqlite-3.6.11-reference.patch
# Copyright (C) 2009 The OpenSDE Project
#
# More information can be found in the files COPYING and README.
#
# This patch file is dual-licensed. It is available under the license the
# patched project is licensed under, as long as it is an OpenSource license
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
# of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
# --- SDE-COPYRIGHT-NOTE-END ---
#This patch comes from Gentoo, it can be found at:
#http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqlite/files/sqlite-3.6.11-reference.patch?view=markup
--- ./Makefile.in
+++ ./Makefile.in
@@ -163,7 +163,7 @@
# Object files for the SQLite library (non-amalgamation).
#
-OBJS0 = alter.lo analyze.lo attach.lo auth.lo bitvec.lo btmutex.lo \
+OBJS0 = alter.lo analyze.lo attach.lo auth.lo backup.lo bitvec.lo btmutex.lo \
btree.lo build.lo callback.lo complete.lo date.lo \
delete.lo expr.lo fault.lo func.lo global.lo \
hash.lo journal.lo insert.lo legacy.lo loadext.lo \
@@ -518,6 +518,9 @@
auth.lo: $(TOP)/src/auth.c $(HDR)
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/auth.c
+backup.lo: $(TOP)/src/backup.c $(HDR)
+ $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/backup.c
+
bitvec.lo: $(TOP)/src/bitvec.c $(HDR)
$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/bitvec.c
Loading…
Cancel
Save