summaryrefslogtreecommitdiffstats
path: root/src/external
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2014-03-04 16:40:36 +0100
committerJakub Hrozek <jhrozek@redhat.com>2014-05-16 15:47:26 +0200
commita2e417f38c57ed87c956ddcecf4dafca93842b65 (patch)
tree33cb120c44f34b531cf1ea7474e14c51bfdc87e4 /src/external
parentf333ca01311000475db0fbd059243d05f9a90e96 (diff)
downloadsssd-a2e417f38c57ed87c956ddcecf4dafca93842b65.tar.gz
sssd-a2e417f38c57ed87c956ddcecf4dafca93842b65.tar.xz
sssd-a2e417f38c57ed87c956ddcecf4dafca93842b65.zip
BUILD: Make samba4 libraries optional
Samba 4 libraries are necessary for building {ad, ipa} provider, but samba4 needn't be available on older distributions. This patch add possibility to build SSSD without {ad, ipa} provider and thus without Samba 4 libraries. The script configure have new argument --with-samba with default value yes. Reviewed-by: Michal Židek <mzidek@redhat.com>
Diffstat (limited to 'src/external')
-rw-r--r--src/external/libndr_nbt.m411
1 files changed, 9 insertions, 2 deletions
diff --git a/src/external/libndr_nbt.m4 b/src/external/libndr_nbt.m4
index d4d94f2d6..bb4f89f13 100644
--- a/src/external/libndr_nbt.m4
+++ b/src/external/libndr_nbt.m4
@@ -1,5 +1,12 @@
AC_SUBST(NDR_NBT_CFLAGS)
AC_SUBST(NDR_NBT_LIBS)
-PKG_CHECK_MODULES(NDR_NBT, ndr_nbt, ,
- AC_MSG_ERROR("Please install Samba 4 development libraries")) \ No newline at end of file
+if test x"$with_samba" = xyes; then
+ PKG_CHECK_MODULES(NDR_NBT, ndr_nbt, ,
+ AC_MSG_ERROR([[Please install Samba 4 development libraries.
+Samba 4 libraries are necessary for building ad and ipa provider.
+If you do not want to build these providers it is possible to build SSSD
+without them. In this case, you will need to execute configure script
+with argument --without-samba
+ ]]))
+fi