From 1106a9fe56ef06231f3e1efeeb7e54c4c55eb196 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 8 Aug 2010 15:35:11 +0200 Subject: [PATCH] Added libssh dependency. --- .gitignore | 31 +++++++++++++++++++++++++++++++ configure.ac | 16 +++++++++++++++- src/Makefile.am | 2 ++ 3 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a41bfdd --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +COPYING +INSTALL +Makefile +aclocal.m4 +autom4te.cache/ +config.guess +config.log +config.status +config.sub +configure +depcomp +version.xml +gtk-doc.make +install-sh +libaute.pc +libtool +ltmain.sh +missing +.deps +.libs +*.lo +*.o +*.la +*~ +*.in +config.h +stamp-h1 +tests/test +tools/aute-db-mkpwd +*.tar.gz +*.exe \ No newline at end of file diff --git a/configure.ac b/configure.ac index 3cd1783..f2d0935 100644 --- a/configure.ac +++ b/configure.ac @@ -28,9 +28,23 @@ AC_SUBST(LIBAUTESMBLDAP_LIBS) with_ldap=no AC_CHECK_LIB([ldap], [ldap_initialize], with_ldap=yes) -if test "$with_ldap" = "yes" +if test "x$with_ldap" = "xyes" then AC_SUBST(LIBLDAP_LIBS, [" -lldap"]) +else + echo "Libldap is mandatory."; + exit 1; +fi + +with_ssh=no +AC_CHECK_LIB([ssh], [ssh_new], with_ssh=yes) + +if test "x$with_ssh" = "xyes" +then + AC_SUBST(LIBSSH_LIBS, [" -lssh"]) +else + echo "Libssh is mandatory."; + exit 1; fi PKG_CHECK_MODULES(LIBCONFI, [libconfi >= 0.0.2], [AC_DEFINE(HAVE_LIBCONFI, [1], [libconfi is present]), have_libconfi=yes], have_libconfi=no) diff --git a/src/Makefile.am b/src/Makefile.am index f69e3e7..2082de6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,12 +3,14 @@ formdir = $(datadir)/libaute-smbldap/form AM_CPPFLAGS = $(LIBAUTESMBLDAP_CFLAGS) \ $(LIBLDAP_CFLAGS) \ + $(LIBSSH_CFLAGS) \ $(LIBCONFI_CFLAGS) \ -DGUIDIR=\""$(guidir)"\" \ -DFORMDIR=\""$(formdir)"\" LIBS = $(LIBAUTESMBLDAP_LIBS) \ $(LIBLDAP_LIBS) \ + $(LIBSSH_LIBS) \ $(LIBCONFI_LIBS) libaute_pluginsdir = $(libdir)/libaute/plugins -- 2.49.0