diff options
author | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-05-29 00:27:23 +0000 |
---|---|---|
committer | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-05-29 00:27:23 +0000 |
commit | 4749def80d9a775c8d0791fe322322f5d1425c95 (patch) | |
tree | b0d6504b7d6326632626c09f978c464a1cff28f1 /configure | |
parent | ba5326cf8e6dd8051efadde4528e3aeb6e654fb2 (diff) | |
download | lcd4linux-4749def80d9a775c8d0791fe322322f5d1425c95.tar.gz |
[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
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 |