mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
9 lines
251 B
Python
9 lines
251 B
Python
#!/usr/bin/env python
|
|
|
|
conf.CHECK_HEADERS('security/pam_appl.h')
|
|
conf.CHECK_FUNCS_IN('pam_start', 'pam', checklibc=True)
|
|
|
|
if (conf.CHECK_HEADERS('sasl/sasl.h') and
|
|
conf.CHECK_FUNCS_IN('sasl_client_init', 'sasl2')):
|
|
conf.DEFINE('HAVE_SASL', 1)
|