diff options
author | harbaum <harbaum@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-08-13 18:14:03 +0000 |
---|---|---|
committer | harbaum <harbaum@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-08-13 18:14:03 +0000 |
commit | 763788fd716a2c8f5064c913d35d10973c621ef9 (patch) | |
tree | 553a469c55802d218cae6c2f62db3f3ccd4e1927 /configure | |
parent | 9e6804e49cac8d859b899ae49509ffdf347eda7f (diff) | |
download | lcd4linux-763788fd716a2c8f5064c913d35d10973c621ef9.tar.gz |
[lcd4linux @ 2006-08-13 18:14:03 by harbaum]
Added KVV plugin
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@692 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-rwxr-xr-x | configure | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -8245,6 +8245,7 @@ echo "$as_me: error: run ./configure --with-plugins=..." >&2;} PLUGIN_I2C_SENSORS="yes" PLUGIN_IMON="yes" PLUGIN_ISDN="yes" + PLUGIN_KVV="yes" PLUGIN_LOADAVG="yes" PLUGIN_MEMINFO="yes" PLUGIN_MPD="yes" @@ -8289,6 +8290,9 @@ echo "$as_me: error: run ./configure --with-plugins=..." >&2;} isdn) PLUGIN_ISDN=$val ;; + kvv) + PLUGIN_KVV=$val + ;; loadavg) PLUGIN_LOADAVG=$val ;; @@ -8771,6 +8775,14 @@ cat >>confdefs.h <<\_ACEOF _ACEOF fi +if test "$PLUGIN_KVV" = "yes"; then + PLUGINS="$PLUGINS plugin_kvv.o" + +cat >>confdefs.h <<\_ACEOF +#define PLUGIN_KVV 1 +_ACEOF + +fi if test "$PLUGIN_LOADAVG" = "yes"; then PLUGINS="$PLUGINS plugin_loadavg.o" |