aboutsummaryrefslogtreecommitdiffstats
path: root/plugins.m4
diff options
context:
space:
mode:
authormichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2008-12-24 09:40:58 +0000
committermichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2008-12-24 09:40:58 +0000
commit6266c2fb61ca14e4c4ff64851d0323fd480c757a (patch)
tree827323614976108f8e4573f67cef11b0b494fd2d /plugins.m4
parent16d014e412692d4479c6e091c11335a07f193e76 (diff)
downloadlcd4linux-6266c2fb61ca14e4c4ff64851d0323fd480c757a.tar.gz
w1retap plugin by Jonathan Hudson
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@909 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 9184c1b..417c894 100644
--- a/plugins.m4
+++ b/plugins.m4
@@ -83,6 +83,7 @@ for plugin in $plugins; do
PLUGIN_STATFS="yes"
PLUGIN_UNAME="yes"
PLUGIN_UPTIME="yes"
+ PLUGIN_W1RETAP="yes"
PLUGIN_WIRELESS="yes"
PLUGIN_XMMS="yes"
;;
@@ -176,6 +177,9 @@ for plugin in $plugins; do
uptime)
PLUGIN_UPTIME=$val
;;
+ w1retap)
+ PLUGIN_W1RETAP=$val
+ ;;
wireless)
PLUGIN_WIRELESS=$val
;;
@@ -369,6 +373,10 @@ if test "$PLUGIN_UPTIME" = "yes"; then
PLUGINS="$PLUGINS plugin_uptime.o"
AC_DEFINE(PLUGIN_UPTIME,1,[uptime plugin])
fi
+if test "$PLUGIN_W1RETAP" = "yes"; then
+ PLUGINS="$PLUGINS plugin_w1retap.o"
+ AC_DEFINE(PLUGIN_W1RETAP,1,[w1retap plugin])
+fi
if test "$PLUGIN_WIRELESS" = "yes"; then
PLUGINS="$PLUGINS plugin_wireless.o"
AC_DEFINE(PLUGIN_WIRELESS,1,[wireless plugin])