blob: 1c85139f661a53ce4c173f03951f5e4712342e9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env python
def configure(conf):
# Check for fuse support
if conf.CHECK_CODE('''
#define FUSE_USE_VERSION 26
#define _FILE_OFFSET_BITS 64
#include "fuse/fuse_lowlevel.h"
int main(void) { return 0; }
''', 'HAVE_FUSE_FUSE_LOWLEVEL_H',
addmain=False,
execute=False) and conf.CHECK_FUNCS_IN('fuse_mount',
'fuse'):
conf.DEFINE('HAVE_FUSE', 1)
|