diff options
author | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2010-01-28 17:19:58 +0000 |
---|---|---|
committer | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2010-01-28 17:19:58 +0000 |
commit | d0405cd2da7da1b950321248e44395a09c44bfbf (patch) | |
tree | 251e42611569f31ae75b29400c5f8b24b9cefc72 /plugins.m4 | |
parent | 3e58b77fe16119822685e2da236f2d8f3a4674f3 (diff) | |
download | lcd4linux-d0405cd2da7da1b950321248e44395a09c44bfbf.tar.gz |
plugin_huawei from Jar
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1096 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugins.m4')
-rw-r--r-- | plugins.m4 | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -53,9 +53,11 @@ for plugin in $plugins; do list) AC_MSG_RESULT( [available plugins:] - [ apm,cpuinfo,dbus,diskstats,dvb,exec,event,file,gps,i2c_sensors,iconv,imon,] - [ isdn,kvv,loadavg,meminfo,mpd,mpris_dbus,mysql,netdev,netinfo,pop3,ppp,] - [ proc_stat,sample,seti,statfs,uname,uptime,wireless,xmms]) + [ apm,asterisk,button_exec,cpuinfo,dbus,diskstats,dvb,exec,event,] + [ fifo,file,gps,hddtemp,huawei,i2c_sensors,iconv,imon,isdn,kvv,] + [ loadavg,meminfo,mpd,mpris_dbus,mysql,netdev,netinfo,pop3,ppp,] + [ proc_stat,python,qnaplog,sample,seti,statfs,uname,uptime,] + [ w1retap,wireless,xmms]) AC_MSG_ERROR([run ./configure --with-plugins=...]) ;; all) @@ -72,6 +74,7 @@ for plugin in $plugins; do PLUGIN_FILE="yes" PLUGIN_GPS="yes" PLUGIN_HDDTEMP="yes" + PLUGIN_HUAWEI="yes" PLUGIN_I2C_SENSORS="yes" PLUGIN_ICONV="yes" PLUGIN_IMON="yes" @@ -137,6 +140,9 @@ for plugin in $plugins; do hddtemp) PLUGIN_HDDTEMP=$val ;; + huawei) + PLUGIN_HUAWEI=$val + ;; i2c_sensors) PLUGIN_I2C_SENSORS=$val ;; @@ -339,6 +345,12 @@ if test "$PLUGIN_HDDTEMP" = "yes"; then AC_DEFINE(PLUGIN_HDDTEMP,1,[hddtemp plugin]) fi +# Huawei +if test "$PLUGIN_HUAWEI" = "yes"; then + PLUGINS="$PLUGINS plugin_huawei.o" + AC_DEFINE(PLUGIN_HUAWEI,1,[huawei plugin]) +fi + # I2C if test "$PLUGIN_I2C_SENSORS" = "yes"; then PLUGINS="$PLUGINS plugin_i2c_sensors.o" |