isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 4ad82686f26994433f86e1d0aaef76bb2259f366
parent dec4b365958c9528d20519e7ca9721b8070437f5
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sun, 29 Nov 2020 13:47:18 +0100

fix build with macOS keychain support

we use symbols from CoreFoundation directly, so we need to link it
explicitly.

amends 198ca65b.

Diffstat:
Mconfigure.ac | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac @@ -220,7 +220,7 @@ if test "x$have_macos_keychain" != xno; then fi have_macos_keychain=yes AC_DEFINE(HAVE_MACOS_KEYCHAIN, 1, [Define to 1 if you have the macOS Keychain Services API.]) - AC_SUBST(KEYCHAIN_LIBS, ["-Wl,-framework,Security"]) + AC_SUBST(KEYCHAIN_LIBS, ["-Wl,-framework,Security,-framework,CoreFoundation"]) fi AC_CONFIG_FILES([Makefile src/Makefile isync.spec])