[lcd4linux @ 2005-11-04 04:53:08 by reinelt]

sample plugin activated

git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@591 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
This commit is contained in:
reinelt
2005-11-04 04:53:10 +00:00
parent 7d94facdb6
commit 23947e3030
7 changed files with 54 additions and 16 deletions

View File

@@ -65,6 +65,7 @@ for plugin in $plugins; do
PLUGIN_PPP="yes"
PLUGIN_PROC_STAT="yes"
PLUGIN_PYTHON=$with_python
PLUGIN_SAMPLE="yes"
PLUGIN_SETI="yes"
PLUGIN_STATFS="yes"
PLUGIN_UNAME="yes"
@@ -120,6 +121,9 @@ for plugin in $plugins; do
python)
PLUGIN_PYTHON=$val
;;
sample)
PLUGIN_SAMPLE=$val
;;
seti)
PLUGIN_SETI=$val
;;
@@ -244,6 +248,10 @@ if test "$PLUGIN_PYTHON" = "yes"; then
fi
fi
fi
if test "$PLUGIN_SAMPLE" = "yes"; then
PLUGINS="$PLUGINS plugin_sample.o"
AC_DEFINE(PLUGIN_SAMPLE,1,[sample plugin])
fi
if test "$PLUGIN_SETI" = "yes"; then
PLUGINS="$PLUGINS plugin_seti.o"
AC_DEFINE(PLUGIN_SETI,1,[seti plugin])