Overview
| Comment: | Updated to not use KitDLL (not needed) | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | c00111a8d5215d3276ffbc7422ad87fd | 
| User & Date: | rkeene on 2014-09-08 02:55:32 | 
| Other Links: | manifest | tags | 
Context
| 2014-09-08 | ||
| 02:55 | Removed warnings check-in: eed618f01c user: rkeene tags: trunk | |
| 02:55 | Updated to not use KitDLL (not needed) check-in: c00111a8d5 user: rkeene tags: trunk | |
| 02:50 | Updated with support for not redownloading manifest if it's already present check-in: d64cb6e110 user: rkeene tags: trunk | |
Changes
Modified Makefile from [e4bc3f72c7] to [71d33fb8c0].
| 1 2 3 4 5 6 7 8 9 | CC = gcc PKG_CONFIG = pkg-config CFLAGS = -Wall -g3 $(shell $(PKG_CONFIG) --cflags fuse) $(TCL_CFLAGS) LDFLAGS = $(TCL_LDFLAGS) LIBS = $(shell $(PKG_CONFIG) --libs fuse) $(TCL_LIBS) PREFIX = /usr/local prefix = $(PREFIX) bindir = $(prefix)/bin | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | CC = gcc PKG_CONFIG = pkg-config CFLAGS = -Wall -g3 $(shell $(PKG_CONFIG) --cflags fuse) $(TCL_CFLAGS) LDFLAGS = $(TCL_LDFLAGS) LIBS = $(shell $(PKG_CONFIG) --libs fuse) $(TCL_LIBS) PREFIX = /usr/local prefix = $(PREFIX) bindir = $(prefix)/bin ifneq ($(TCLKIT_SDK_DIR),) TCLCONFIG_SH_PATH = $(TCLKIT_SDK_DIR)/lib/tclConfig.sh TCL_LDFLAGS = -Wl,-R,$(TCLKIT_SDK_DIR)/lib export TCLKIT_SDK_DIR else TCLCONFIG_SH_PATH = $(shell echo 'puts [::tcl::pkgconfig get libdir,install]' | tclsh)/tclConfig.sh endif | 
| ︙ | ︙ |