diff options
author | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2008-12-23 15:46:23 +0000 |
---|---|---|
committer | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2008-12-23 15:46:23 +0000 |
commit | 91348c5ecee2d7b22b2cb8d0af5a41d309efab91 (patch) | |
tree | 65f21f90e24bced996e37b61c0f0e0d08d6fd8f7 /plugins.m4 | |
parent | c881473ad3e54d4f9c149358173b52b3405262c7 (diff) | |
download | lcd4linux-91348c5ecee2d7b22b2cb8d0af5a41d309efab91.tar.gz |
hddtemp plugin from Scott Bronson
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@907 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugins.m4')
-rw-r--r-- | plugins.m4 | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -63,6 +63,7 @@ for plugin in $plugins; do PLUGIN_FIFO="yes" PLUGIN_FILE="yes" PLUGIN_GPS="yes" + PLUGIN_HDDTEMP="yes" PLUGIN_I2C_SENSORS="yes" PLUGIN_ICONV="yes" PLUGIN_IMON="yes" @@ -115,6 +116,9 @@ for plugin in $plugins; do gps) PLUGIN_GPS=$val ;; + hddtemp) + PLUGIN_HDDTEMP=$hddtemp + ;; i2c_sensors) PLUGIN_I2C_SENSORS=$val ;; @@ -242,6 +246,10 @@ if test "$PLUGIN_GPS" = "yes"; then AC_MSG_WARN(nmeap.h header not found: gps plugin disabled) fi fi +if test "$PLUGIN_HDDTEMP" = "yes"; then + PLUGINS="$PLUGINS plugin_hddtemp.o" + AC_DEFINE(PLUGIN_HDDTEMP,1,[hddtemp plugin]) +fi if test "$PLUGIN_I2C_SENSORS" = "yes"; then PLUGINS="$PLUGINS plugin_i2c_sensors.o" AC_DEFINE(PLUGIN_I2C_SENSORS,1,[i2c sensors plugin]) |