Overview
| Comment: | Updated to allow individual flags to be replaced | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | ca67f3d74072ff4ea46d0e5aed7733d0 | 
| User & Date: | rkeene on 2014-10-28 19:08:03 | 
| Other Links: | manifest | tags | 
Context
| 2014-11-03 | ||
| 19:07 | Updated to not crash upon Tcl initialization failure check-in: 85c5ea8446 user: rkeene tags: trunk | |
| 2014-10-28 | ||
| 19:08 | Updated to allow individual flags to be replaced check-in: ca67f3d740 user: rkeene tags: trunk | |
| 2014-10-12 | ||
| 02:54 | Added start of writability check-in: 5c1bbda2c6 user: rkeene tags: trunk | |
Changes
Modified Makefile from [a8370ad444] to [fe29eeac49].
| 1 2 | CC = gcc PKG_CONFIG = pkg-config | > | > | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | CC = gcc PKG_CONFIG = pkg-config FUSE_CFLAGS = $(shell $(PKG_CONFIG) --cflags fuse) SQLITE3_CFLAGS = $(shell $(PKG_CONFIG) --cflags sqlite3) CFLAGS = -Wall $(FUSE_CFLAGS) $(SQLITE3_CFLAGS) $(TCL_CFLAGS) -DDEBUG=1 LDFLAGS = $(TCL_LDFLAGS) FUSE_LIBS = $(shell $(PKG_CONFIG) --libs fuse) SQLITE3_LIBS = $(shell $(PKG_CONFIG) --libs sqlite3) LIBS = $(FUSE_LIBS) $(SQLITE3_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 | 
| ︙ | ︙ |