From 4749def80d9a775c8d0791fe322322f5d1425c95 Mon Sep 17 00:00:00 2001 From: reinelt Date: Sat, 29 May 2004 00:27:23 +0000 Subject: [lcd4linux @ 2004-05-29 00:27:14 by reinelt] added plugin_diskstats.c git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@443 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- configure | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'configure') diff --git a/configure b/configure index bede6cf..2f9a299 100755 --- a/configure +++ b/configure @@ -5724,6 +5724,7 @@ echo "$as_me: error: run ./configure --with-plugins=..." >&2;} all) PLUGIN_APM="yes" PLUGIN_CPUINFO="yes" + PLUGIN_DISKSTATS="yes" PLUGIN_DVB="yes" PLUGIN_EXEC="yes" PLUGIN_I2C_SENSORS="yes" @@ -5748,6 +5749,9 @@ echo "$as_me: error: run ./configure --with-plugins=..." >&2;} cpuinfo) PLUGIN_CPUINFO=$val ;; + diskstats) + PLUGIN_DISKSTATS=$val + ;; dvb) PLUGIN_DVB=$val ;; @@ -5824,6 +5828,14 @@ cat >>confdefs.h <<\_ACEOF #define PLUGIN_CPUINFO 1 _ACEOF +fi +if test "$PLUGIN_DISKSTATS" = "yes"; then + PLUGINS="$PLUGINS plugin_diskstats.o" + +cat >>confdefs.h <<\_ACEOF +#define PLUGIN_DISKSTATS 1 +_ACEOF + fi if test "$PLUGIN_DVB" = "yes"; then -- cgit v1.2.3 -tables.git/log/isdb-t/br-pr-MoreiraSales'>logtreecommitdiffstats
path: root/isdb-t/br-pr-MoreiraSales
blob: 3815d72bbc0407ee1b6b72162a4422826ae03124 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90