blob: 03b65ffce8d56a73ecd24ea7cf19e0ab5592cf59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# $FreeBSD$
OPTIONS_DEFINE = \
OWDEBUG \
OWMUTEXDEBUG \
OWSHELL \
OWNET \
I2C \
OWHTTPD \
OWFTPD \
OWSERVER \
OWTAP \
OWMALLOC \
OWTRAFFIC \
OWMON \
OWCAPI \
OWPERL \
OWPHP \
OWPYTHON \
OWTCL \
PROFILING \
OWFS \
ZERO \
USB
# Options disabled
# PARPORT - linux/parport.h not available
# W1 - no support on FreeBSD
OWDEBUG_DESC= Enable debug output
OWMUTEXDEBUG_DESC= Enable mutex debug
OWSHELL_DESC= Enable CLI utils
OWNET_DESC= Enable network communication
I2C_DESC= Enable i2c (DS2482-x00) support (UNTESTED)
OWHTTPD_DESC= Enable owhttpd HTTP server
OWFTPD_DESC= Enable owftpd FTP server
OWSERVER_DESC= Enable owserver
OWMALLOC_DESC= Enable malloc checking
OWTRAFFIC_DESC= Enable debug bus traffic reports
OWTAP_DESC= Enable owtap module (X11)
OWMON_DESC= Enable owmon module (X11)
OWCAPI_DESC= Enable C API
OWPERL_DESC= Enable Perl binding (BROKEN)
OWPHP_DESC= Enable PHP binding (BROKEN)
OWPYTHON_DESC= Enable Python binding
OWTCL_DESC= Enable TCL binding
PROFILING_DESC= Enable profiling (BROKEN)
OWFS_DESC= Enable FUSE support
ZERO_DESC= Enable Zeroconf/bonjour (UNTESTED)
USB_DESC= Enable 1-Wire usb DS2490 support
# Options disabled
#PARPORT_DESC= Enable 1-Wire parallel port DS1410E support
#W1_DESC=Enable w1 support
OPTIONS_DEFAULT=OWDEBUG\
OWSHELL\
OWNET\
I2C\
OWHTTPD\
OWFTPD\
OWSERVER\
OWCAPI\
OWFS\
USB
|