Skip to content

Commit d7a7a4e

Browse files
committed
Adding setxattr and removexattr. Checking if the DB file is writable to enable those functions. Refactoring the SQLite "prepare/step/finalize" loops
1 parent 7d58569 commit d7a7a4e

File tree

4 files changed

+301
-236
lines changed

4 files changed

+301
-236
lines changed

Makefile.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ OBJS = src/fs.o src/sqlite-3.45.2/sqlite3.o src/main.o src/crypt4gh.o $(KEYS_OB
2525

2626
all: $(TARGET)
2727

28+
ifdef NO_DEBUG
29+
CFLAGS+=-DNO_DEBUG
30+
else
31+
CFLAGS+=-g
32+
endif
33+
2834
$(libdir) $(bindir):
2935
mkdir -p $@
3036

0 commit comments

Comments
 (0)