mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
8 lines
257 B
Plaintext
8 lines
257 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
def configure(conf):
|
||
|
conf.CHECK_HEADERS('linux/sockios.h linux/ethtool.h')
|
||
|
if (conf.CONFIG_SET('HAVE_LINUX_SOCKIOS_H') and \
|
||
|
conf.CONFIG_SET('HAVE_LINUX_ETHTOOL_H')):
|
||
|
conf.DEFINE('HAVE_ETHTOOL', 1)
|