130664b622
as opposed to earlier threats, BerkDB was not entirely dropped; i suppose the isync 0.7 -> 0.8 change had a reason, so i added an alternative UID storage scheme. note that BDB 4.0 is not sufficient, as the db->open function changed in an incompatible way ... i updated the debian packaging except for a changelog entry. note that i removed the upgrade blurb, as upstream now has a smooth upgrade path down to at least isync 0.4.
17 lines
371 B
Makefile
17 lines
371 B
Makefile
if with_compat
|
|
compat_dir = compat
|
|
endif
|
|
SUBDIRS = $(compat_dir)
|
|
|
|
bin_PROGRAMS = mbsync mdconvert
|
|
|
|
mbsync_SOURCES = main.c sync.c config.c util.c drv_imap.c drv_maildir.c
|
|
mbsync_LDADD = -ldb $(SSL_LIBS) $(SOCK_LIBS)
|
|
noinst_HEADERS = isync.h
|
|
|
|
mdconvert_SOURCES = mdconvert.c
|
|
mdconvert_LDADD = -ldb
|
|
|
|
man_MANS = mbsync.1 mdconvert.1
|
|
EXTRA_DIST = mbsyncrc.sample $(man_MANS)
|