diff options
author | reinelt <> | 2004-05-29 00:27:23 +0000 |
---|---|---|
committer | reinelt <> | 2004-05-29 00:27:23 +0000 |
commit | 7ef1fa155517c2ec0f926cfd4363e44b8290245d (patch) | |
tree | b0d6504b7d6326632626c09f978c464a1cff28f1 /configure | |
parent | e47488c46bab60eb801ed0a663e26e4e8ec12f2f (diff) | |
download | lcd4linux-7ef1fa155517c2ec0f926cfd4363e44b8290245d.tar.gz |
[lcd4linux @ 2004-05-29 00:27:14 by reinelt]
added plugin_diskstats.c
Diffstat (limited to '')
-rwxr-xr-x | configure | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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 ;; @@ -5825,6 +5829,14 @@ cat >>confdefs.h <<\_ACEOF _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 for ac_header in linux/dvb/frontend.h |