mirror of
https://github.com/samba-team/samba.git
synced 2025-03-01 04:58:35 +03:00
8 lines
226 B
Python
8 lines
226 B
Python
Import('hostenv')
|
|
hostenv.Library('tls', ['tls.c', 'tlscert.c'])
|
|
|
|
if hostenv['configure']:
|
|
conf = hostenv.Configure()
|
|
conf.CheckLibWithHeader('gnutls', 'gnutls/gnutls.h', 'c', 'gnutls_global_init()')
|
|
conf.Finish()
|