Skip to content

Commit

Permalink
Merge pull request #2 from pantheon-systems/jbleveldb
Browse files Browse the repository at this point in the history
LevelDB
  • Loading branch information
davidstrauss committed Dec 14, 2012
2 parents 668f3a8 + c8b9a6d commit c3f4369
Show file tree
Hide file tree
Showing 14 changed files with 1,702 additions and 1,118 deletions.
18 changes: 18 additions & 0 deletions .gitignore
@@ -0,0 +1,18 @@
*.o
.deps
Makefile.in
aclocal.m4
configure
*.cache
config.log
config.status
/Makefile
config.h
config.h.in
/depcomp
/doc
/install-sh
/missing
/src/fusedav
/src/Makefile
/stamp-h1
1 change: 1 addition & 0 deletions README
3 changes: 2 additions & 1 deletion configure.ac
Expand Up @@ -111,7 +111,8 @@ AC_CHECK_LIB([systemd-journal], [sd_journal_send])
AC_CHECK_LIB([yaml], [yaml_parser_initialize])
AC_CHECK_LIB([leveldb], [leveldb_open])

PKG_CHECK_MODULES(NEON, [ neon >= 0.27 ])
#PKG_CHECK_MODULES(LIBYAML, libyaml >= 1.2 )
PKG_CHECK_MODULES(NEON, [ neon >= 0.29 ])
PKG_CHECK_MODULES(FUSE, [ fuse >= 2.8 ])

# LYNX documentation generation
Expand Down
5 changes: 3 additions & 2 deletions src/Makefile.am
Expand Up @@ -20,8 +20,9 @@ bin_PROGRAMS=fusedav

fusedav_SOURCES=fusedav.c fusedav.h \
statcache.c statcache.h \
filecache.c filecache.h \
session.c session.h
ldb-filecache.c ldb-filecache.h \
session.c session.h \
log.c log.h

fusedav_CFLAGS = $(AM_CFLAGS) $(NEON_CFLAGS) $(FUSE_CFLAGS) -DFUSE_USE_VERSION=26
fusedav_LDADD = -lpthread $(NEON_LIBS) $(FUSE_LIBS)

0 comments on commit c3f4369

Please sign in to comment.