Overview
Comment: | AppFS 1.8 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.8 |
Files: | files | file ages | folders |
SHA1: | 1a0a82c68673cc5a4ebb7ea8557f0e06b20a3988 |
User & Date: | rkeene on 2015-05-26 15:45:43 |
Other Links: | manifest | tags |
Context
2015-05-26
| ||
15:46 | Post-release version increment check-in: f90c4863fb user: rkeene tags: trunk | |
15:45 | AppFS 1.8 check-in: 1a0a82c686 user: rkeene tags: trunk, 1.8 | |
15:44 | Fixed bug in resetting latest value check-in: 355ee88ec8 user: rkeene tags: trunk | |
Changes
Modified Makefile from [06b2c7dc87] to [dd77c1ba83].
1 2 3 4 5 6 7 8 |
APPFS_VERSION = 1.7
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
ifneq ($(APPFS_DEBUG_BUILD),1)
CFLAGS += $(FUSE_CFLAGS) $(TCL_CFLAGS) $(CFLAGS_RELEASE)
|
| |
1 2 3 4 5 6 7 8 |
APPFS_VERSION = 1.8
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
ifneq ($(APPFS_DEBUG_BUILD),1)
CFLAGS += $(FUSE_CFLAGS) $(TCL_CFLAGS) $(CFLAGS_RELEASE)
|