diff options
author | reinelt <> | 2004-05-22 18:30:02 +0000 |
---|---|---|
committer | reinelt <> | 2004-05-22 18:30:02 +0000 |
commit | 54a3ddf9b4ab1b2f739700268de2f09014ecd95c (patch) | |
tree | 1d68a2aab7e852c1500c9c2417114e1d787db966 /configure | |
parent | 8f9e1a5296018e0729343eea686970bfc917c699 (diff) | |
download | lcd4linux-54a3ddf9b4ab1b2f739700268de2f09014ecd95c.tar.gz |
[lcd4linux @ 2004-05-22 18:30:01 by reinelt]
added plugin 'uptime'
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -5748,6 +5748,7 @@ echo "$as_me: error: run ./configure --with-plugins=..." >&2;} PLUGIN_PROC_STAT="yes" PLUGIN_SETI="yes" PLUGIN_UNAME="yes" + PLUGIN_UPTIME="yes" PLUGIN_WIRELESS="yes" PLUGIN_XMMS="yes" ;; @@ -5799,6 +5800,9 @@ echo "$as_me: error: run ./configure --with-plugins=..." >&2;} uname) PLUGIN_UNAME=$val ;; + uptime) + PLUGIN_UPTIME=$val + ;; wireless) PLUGIN_WIRELESS=$val ;; @@ -6641,6 +6645,14 @@ cat >>confdefs.h <<\_ACEOF _ACEOF fi +if test "$PLUGIN_UPTIME" = "yes"; then + PLUGINS="$PLUGINS plugin_uptime.o" + +cat >>confdefs.h <<\_ACEOF +#define PLUGIN_UPTIME 1 +_ACEOF + +fi if test "$PLUGIN_WIRELESS" = "yes"; then PLUGINS="$PLUGINS plugin_wireless.o" |