Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | more uses of sqlite3.pc (CVS 1822) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a0f107ca66f825cc1fd10b15157b22fd |
User & Date: | dougcurrie 2004-07-19 22:28:43.000 |
Context
2004-07-19
| ||
23:16 | LIMIT occurs after DISTINCT. Ticket #749. (CVS 1823) (check-in: e6bc8aa808 user: drh tags: trunk) | |
22:28 | more uses of sqlite3.pc (CVS 1822) (check-in: a0f107ca66 user: dougcurrie tags: trunk) | |
22:08 | The OsFile under Unix records a pointer back to the pager. This is intended to be used for an externalized locking patch. (CVS 1821) (check-in: 511ee63924 user: drh tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
548 549 550 551 552 553 554 | $(INSTALL) -d $(DESTDIR)$(exec_prefix)/lib $(LTINSTALL) libsqlite3.la $(DESTDIR)$(exec_prefix)/lib $(INSTALL) -d $(DESTDIR)$(exec_prefix)/bin $(LTINSTALL) sqlite3 $(DESTDIR)$(exec_prefix)/bin $(INSTALL) -d $(DESTDIR)$(prefix)/include $(INSTALL) -m 0644 sqlite3.h $(DESTDIR)$(prefix)/include $(INSTALL) -d $(DESTDIR)$(exec_prefix)/lib/pkgconfig; | | | 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 | $(INSTALL) -d $(DESTDIR)$(exec_prefix)/lib $(LTINSTALL) libsqlite3.la $(DESTDIR)$(exec_prefix)/lib $(INSTALL) -d $(DESTDIR)$(exec_prefix)/bin $(LTINSTALL) sqlite3 $(DESTDIR)$(exec_prefix)/bin $(INSTALL) -d $(DESTDIR)$(prefix)/include $(INSTALL) -m 0644 sqlite3.h $(DESTDIR)$(prefix)/include $(INSTALL) -d $(DESTDIR)$(exec_prefix)/lib/pkgconfig; $(INSTALL) -m 0644 sqlite3.pc $(DESTDIR)$(exec_prefix)/lib/pkgconfig; clean: rm -f *.lo *.la *.o sqlite3@TARGET_EXEEXT@ libsqlite3.la rm -f sqlite3.h opcodes.* rm -rf .libs .deps rm -f lemon@BUILD_EXEEXT@ lempar.c parse.* sqlite*.tar.gz rm -f $(PUBLISH) |
︙ | ︙ |
Changes to spec.template.
︙ | ︙ | |||
51 52 53 54 55 56 57 | %files %defattr(-, root, root) %{_libdir}/*.so* %{_bindir}/* %files -n %{name}-devel %defattr(-, root, root) | | | 51 52 53 54 55 56 57 58 59 60 61 62 | %files %defattr(-, root, root) %{_libdir}/*.so* %{_bindir}/* %files -n %{name}-devel %defattr(-, root, root) %{_libdir}/pkgconfig/sqlite3.pc %{_libdir}/*.a %{_libdir}/*.la %{_includedir}/* %doc doc/* |