aboutsummaryrefslogtreecommitdiffstats
path: root/plugins.m4
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-04-03 07:07:51 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-04-03 07:07:51 +0000
commit118d85d597ffa77ca2d53b01c1dc5295f11c5f2c (patch)
tree17e1bc77e5cff45aafa54e635548000f59db2d9b /plugins.m4
parenta6a03faa860233ec2b2d13abbb14bd9661a61222 (diff)
downloadlcd4linux-118d85d597ffa77ca2d53b01c1dc5295f11c5f2c.tar.gz
[lcd4linux @ 2005-04-03 07:07:43 by reinelt]
added statfs plugin git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@524 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugins.m4')
-rw-r--r--plugins.m48
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins.m4 b/plugins.m4
index 90fc339..cf122f5 100644
--- a/plugins.m4
+++ b/plugins.m4
@@ -65,6 +65,7 @@ for plugin in $plugins; do
PLUGIN_PPP="yes"
PLUGIN_PROC_STAT="yes"
PLUGIN_SETI="yes"
+ PLUGIN_STATFS="yes"
PLUGIN_UNAME="yes"
PLUGIN_UPTIME="yes"
PLUGIN_WIRELESS="yes"
@@ -118,6 +119,9 @@ for plugin in $plugins; do
seti)
PLUGIN_SETI=$val
;;
+ statfs)
+ PLUGIN_STATFS=$val
+ ;;
uname)
PLUGIN_UNAME=$val
;;
@@ -226,6 +230,10 @@ if test "$PLUGIN_SETI" = "yes"; then
PLUGINS="$PLUGINS plugin_seti.o"
AC_DEFINE(PLUGIN_SETI,1,[seti plugin])
fi
+if test "$PLUGIN_STATFS" = "yes"; then
+ PLUGINS="$PLUGINS plugin_statfs.o"
+ AC_DEFINE(PLUGIN_STATFS,1,[statfs plugin])
+fi
if test "$PLUGIN_UNAME" = "yes"; then
PLUGINS="$PLUGINS plugin_uname.o"
AC_DEFINE(PLUGIN_UNAME,1,[uname plugin])