Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | * Added rule for rebuilding Makefile from Makefile.in. * Fixed double-slash problem induced by adding DESTDIR support. (CVS 1290) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
957827e35cca65de11894eb2dfc78327 |
User & Date: | a.rottmann 2004-03-10 16:32:03 |
Context
2004-03-10
| ||
18:53 | Fixed default target. (CVS 1291) check-in: af19ab32 user: a.rottmann tags: trunk | |
16:32 | * Added rule for rebuilding Makefile from Makefile.in. * Fixed double-slash problem induced by adding DESTDIR support. (CVS 1290) check-in: 957827e3 user: a.rottmann tags: trunk | |
13:42 | The BTree layer now returns SQLITE_READONLY on an attempt to open a write cursor on a read-only database. Previously, the failure would not occur until there was an attempt to write to the cursor. (CVS 1289) check-in: 8a8be468 user: drh tags: trunk | |
Changes
Changes to Makefile.in.
77
78
79
80
81
82
83
84
85
86
87
88
89
90
...
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
|
ifeq (${INMEMORYDB},0) INCOREFLAGS += -DSQLITE_OMIT_INMEMORYDB=1 endif # You should not have to change anything below this line ############################################################################### # Object files for the SQLite library. # LIBOBJ = attach.lo auth.lo btree.lo build.lo copy.lo date.lo \ delete.lo expr.lo func.lo hash.lo insert.lo \ main.lo opcodes.lo os.lo pager.lo parse.lo pragma.lo \ printf.lo random.lo select.lo table.lo tokenize.lo \ ................................................................................ nulls.html doc: $(DOC) mkdir -p doc mv $(DOC) doc install: sqlite libsqlite.la sqlite.h $(INSTALL) -d $(DESTDIR)/$(exec_prefix)/lib $(LTINSTALL) libsqlite.la $(DESTDIR)/$(exec_prefix)/lib $(INSTALL) -d $(DESTDIR)/$(exec_prefix)/bin $(LTINSTALL) sqlite $(DESTDIR)/$(exec_prefix)/bin $(INSTALL) -d $(DESTDIR)/$(prefix)/include $(INSTALL) -m 0644 sqlite.h $(DESTDIR)/$(prefix)/include $(INSTALL) -d $(DESTDIR)/$(exec_prefix)/lib/pkgconfig; $(INSTALL) -m 0644 sqlite.pc $(DESTDIR)/$(exec_prefix)/lib/pkgconfig; clean: rm -f *.lo *.la *.o sqlite@TARGET_EXEEXT@ libsqlite.la sqlite.h opcodes.* rm -rf .libs .deps rm -f lemon@BUILD_EXEEXT@ lempar.c parse.* sqlite*.tar.gz rm -f $(PUBLISH) rm -f *.da *.bb *.bbg gmon.out rm -f testfixture@TARGET_EXEEXT@ test.db rm -rf doc rm -f sqlite.dll sqlite.lib # # Windows section; all those funky .dll stuff ;-) # dll: sqlite.dll REAL_LIBOBJ = $(LIBOBJ:%.lo=.libs/%.o) sqlite.dll: $(LIBOBJ) sqlite.def dllwrap --dllname sqlite.dll --def sqlite.def $(REAL_LIBOBJ) |
>
>
>
|
|
|
|
|
|
|
|
|
|
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
...
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
|
ifeq (${INMEMORYDB},0) INCOREFLAGS += -DSQLITE_OMIT_INMEMORYDB=1 endif # You should not have to change anything below this line ############################################################################### Makefile: Makefile.in ./config.status # Object files for the SQLite library. # LIBOBJ = attach.lo auth.lo btree.lo build.lo copy.lo date.lo \ delete.lo expr.lo func.lo hash.lo insert.lo \ main.lo opcodes.lo os.lo pager.lo parse.lo pragma.lo \ printf.lo random.lo select.lo table.lo tokenize.lo \ ................................................................................ nulls.html doc: $(DOC) mkdir -p doc mv $(DOC) doc install: sqlite libsqlite.la sqlite.h $(INSTALL) -d $(DESTDIR)$(exec_prefix)/lib $(LTINSTALL) libsqlite.la $(DESTDIR)$(exec_prefix)/lib $(INSTALL) -d $(DESTDIR)$(exec_prefix)/bin $(LTINSTALL) sqlite $(DESTDIR)$(exec_prefix)/bin $(INSTALL) -d $(DESTDIR)$(prefix)/include $(INSTALL) -m 0644 sqlite.h $(DESTDIR)$(prefix)/include $(INSTALL) -d $(DESTDIR)$(exec_prefix)/lib/pkgconfig; $(INSTALL) -m 0644 sqlite.pc $(DESTDIR)$(exec_prefix)/lib/pkgconfig; clean: rm -f *.lo *.la *.o sqlite@TARGET_EXEEXT@ libsqlite.la sqlite.h opcodes.* rm -rf .libs .deps rm -f lemon@BUILD_EXEEXT@ lempar.c parse.* sqlite*.tar.gz rm -f $(PUBLISH) rm -f *.da *.bb *.bbg gmon.out rm -f testfixture@TARGET_EXEEXT@ test.db rm -rf doc rm -f sqlite.dll sqlite.lib # # Windows section; all this funky .dll stuff ;-) # dll: sqlite.dll REAL_LIBOBJ = $(LIBOBJ:%.lo=.libs/%.o) sqlite.dll: $(LIBOBJ) sqlite.def dllwrap --dllname sqlite.dll --def sqlite.def $(REAL_LIBOBJ) |