diff options
author | michux <michux@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2008-04-10 14:45:45 +0000 |
---|---|---|
committer | michux <michux@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2008-04-10 14:45:45 +0000 |
commit | 5228b499ae2aaf77a7203a33a6a3216854fbe479 (patch) | |
tree | 2aa738002e15fcfbd973f639388eb1264ce6e1e7 /plugins.m4 | |
parent | e52b948730d08edbe20fee98b8ac860d620c467b (diff) | |
download | lcd4linux-5228b499ae2aaf77a7203a33a6a3216854fbe479.tar.gz |
Add basic FIFO plugin
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@869 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugins.m4')
-rw-r--r-- | plugins.m4 | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -60,6 +60,7 @@ for plugin in $plugins; do PLUGIN_DISKSTATS="yes" PLUGIN_DVB="yes" PLUGIN_EXEC="yes" + PLUGIN_FIFO="yes" PLUGIN_FILE="yes" PLUGIN_GPS="yes" PLUGIN_I2C_SENSORS="yes" @@ -105,6 +106,9 @@ for plugin in $plugins; do exec) PLUGIN_EXEC=$val ;; + fifo) + PLUGIN_FIFO=$val + ;; file) PLUGIN_FILE=$val ;; @@ -219,6 +223,10 @@ if test "$PLUGIN_FILE" = "yes"; then PLUGINS="$PLUGINS plugin_file.o" AC_DEFINE(PLUGIN_FILE,1,[file plugin]) fi +if test "$PLUGIN_FIFO" = "yes"; then + PLUGINS="$PLUGINS plugin_fifo.o" + AC_DEFINE(PLUGIN_FIFO,1,[fifo plugin]) +fi if test "$PLUGIN_GPS" = "yes"; then AC_CHECK_HEADERS(nmeap.h, [has_nmeap_header="true"], [has_nmeap_header="false"]) if test "$has_nmeap_header" = "true"; then |