Overview
Comment: | AppFS 1.2 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.2 |
Files: | files | file ages | folders |
SHA1: | 2b052470dfa598fb6fc1f328adef2383b4874a55 |
User & Date: | rkeene on 2014-11-20 19:29:28 |
Other Links: | manifest | tags |
Context
2014-12-01
| ||
02:02 | Updated to not try to update package information for each sites when stat()'ing them check-in: 42a3efcd94 user: rkeene tags: trunk | |
2014-11-20
| ||
19:29 | AppFS 1.2 check-in: 2b052470df user: rkeene tags: trunk, 1.2 | |
2014-11-18
| ||
15:09 | Added documentation on index format check-in: 5ec33cd653 user: rkeene tags: trunk | |
Changes
Modified Makefile from [8970552271] to [1e4fa82b26].
1 2 3 4 5 6 7 8 |
APPFS_VERSION = 1.0
CC = gcc
PKG_CONFIG = pkg-config
FUSE_CFLAGS = $(shell $(PKG_CONFIG) --cflags fuse)
CFLAGS_DEBUG = -Wall -g3 -ggdb3 -DDEBUG=1 -UNDEBUG -O0 -DAPPFS_EXIT_PATH=1
CFLAGS_RELEASE = -Wall -UDEBUG -DNDEBUG=1 -O3
CFLAGS += $(FUSE_CFLAGS) $(TCL_CFLAGS) $(CFLAGS_RELEASE)
LDFLAGS += $(TCL_LDFLAGS)
|
| |
1 2 3 4 5 6 7 8 |
APPFS_VERSION = 1.2
CC = gcc
PKG_CONFIG = pkg-config
FUSE_CFLAGS = $(shell $(PKG_CONFIG) --cflags fuse)
CFLAGS_DEBUG = -Wall -g3 -ggdb3 -DDEBUG=1 -UNDEBUG -O0 -DAPPFS_EXIT_PATH=1
CFLAGS_RELEASE = -Wall -UDEBUG -DNDEBUG=1 -O3
CFLAGS += $(FUSE_CFLAGS) $(TCL_CFLAGS) $(CFLAGS_RELEASE)
LDFLAGS += $(TCL_LDFLAGS)
|