python: Add py_is_heimdal_built() to pyglue
authorAndreas Schneider <asn@samba.org>
Tue, 4 Apr 2017 06:10:52 +0000 (08:10 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Sat, 29 Apr 2017 21:31:11 +0000 (23:31 +0200)
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlet <abartlet@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
python/pyglue.c

index 2bb6247fdeb24cda55666456bd2cd5da09f4d2d4..07cde49e16bda6ce0e0bea0b67e2bcdda8d8fad1 100644 (file)
@@ -152,6 +152,15 @@ static PyObject *py_is_ntvfs_fileserver_built(PyObject *self)
 #endif
 }
 
+static PyObject *py_is_heimdal_built(PyObject *self)
+{
+#ifdef SAMBA4_USES_HEIMDAL
+       Py_RETURN_TRUE;
+#else
+       Py_RETURN_FALSE;
+#endif
+}
+
 /*
   return the list of interface IPs we have configured
   takes an loadparm context, returns a list of IPs in string form
@@ -307,6 +316,8 @@ static PyMethodDef py_misc_methods[] = {
                "(for testing) find one string in another with Samba's strstr_m()"},
        { "is_ntvfs_fileserver_built", (PyCFunction)py_is_ntvfs_fileserver_built, METH_NOARGS,
                "is the NTVFS file server built in this installation?" },
+       { "is_heimdal_built", (PyCFunction)py_is_heimdal_built, METH_NOARGS,
+               "is Samba built with Heimdal Kerberbos?" },
        { NULL }
 };