Overview
| Comment: | Removed SQLite dependency | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | tcl-ops | 
| Files: | files | file ages | folders | 
| SHA1: | d74c945fc043703b45c423f72fbf9e91 | 
| User & Date: | rkeene on 2014-11-08 19:33:13 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 2014-11-09 | ||
| 02:09 | Updated to create a Tcl interpreter at startup before starting FUSE loop to catch Tcl errors early check-in: 3c90001701 user: rkeene tags: tcl-ops | |
| 2014-11-08 | ||
| 19:33 | Removed SQLite dependency check-in: d74c945fc0 user: rkeene tags: tcl-ops | |
| 2014-11-07 | ||
| 13:19 | Added more reliable write support check-in: d836b9fc43 user: rkeene tags: tcl-ops | |
Changes
Modified Makefile from [5e87139775] to [e0a242ebcc].
| 1 2 3 | CC = gcc PKG_CONFIG = pkg-config FUSE_CFLAGS = $(shell $(PKG_CONFIG) --cflags fuse) | < | < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | CC = gcc PKG_CONFIG = pkg-config FUSE_CFLAGS = $(shell $(PKG_CONFIG) --cflags fuse) CFLAGS = -Wall $(FUSE_CFLAGS) $(TCL_CFLAGS) -DDEBUG=1 LDFLAGS = $(TCL_LDFLAGS) FUSE_LIBS = $(shell $(PKG_CONFIG) --libs fuse) LIBS = $(FUSE_LIBS) $(TCL_LIBS) PREFIX = /usr/local prefix = $(PREFIX) bindir = $(prefix)/bin sbindir = $(prefix)/sbin ifneq ($(TCLKIT_SDK_DIR),) TCLCONFIG_SH_PATH = $(TCLKIT_SDK_DIR)/lib/tclConfig.sh | 
| ︙ | ︙ |