aboutsummaryrefslogtreecommitdiffstats
path: root/plugins.m4
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-05-22 18:30:02 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-05-22 18:30:02 +0000
commit34e69ead4b80f67ddbf4114df25fd9906877cba5 (patch)
tree1d68a2aab7e852c1500c9c2417114e1d787db966 /plugins.m4
parentcdee7ced9e0eafe17d8963c25d969b96b099b9f3 (diff)
downloadlcd4linux-34e69ead4b80f67ddbf4114df25fd9906877cba5.tar.gz
[lcd4linux @ 2004-05-22 18:30:01 by reinelt]
added plugin 'uptime' git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@427 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 4e97005..547fc57 100644
--- a/plugins.m4
+++ b/plugins.m4
@@ -46,6 +46,7 @@ for plugin in $plugins; do
PLUGIN_PROC_STAT="yes"
PLUGIN_SETI="yes"
PLUGIN_UNAME="yes"
+ PLUGIN_UPTIME="yes"
PLUGIN_WIRELESS="yes"
PLUGIN_XMMS="yes"
;;
@@ -97,6 +98,9 @@ for plugin in $plugins; do
uname)
PLUGIN_UNAME=$val
;;
+ uptime)
+ PLUGIN_UPTIME=$val
+ ;;
wireless)
PLUGIN_WIRELESS=$val
;;
@@ -199,6 +203,10 @@ if test "$PLUGIN_UNAME" = "yes"; then
PLUGINS="$PLUGINS plugin_uname.o"
AC_DEFINE(PLUGIN_UNAME,1,[uname plugin])
fi
+if test "$PLUGIN_UPTIME" = "yes"; then
+ PLUGINS="$PLUGINS plugin_uptime.o"
+ AC_DEFINE(PLUGIN_UPTIME,1,[uptime plugin])
+fi
if test "$PLUGIN_WIRELESS" = "yes"; then
PLUGINS="$PLUGINS plugin_wireless.o"
AC_DEFINE(PLUGIN_WIRELESS,1,[wireless plugin])