aboutsummaryrefslogtreecommitdiffstats
path: root/drivers.m4
diff options
context:
space:
mode:
authormichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2007-02-04 06:50:50 +0000
committermichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2007-02-04 06:50:50 +0000
commitfa45bc0aea3c81f341a8f7173f53e9b139cb89d6 (patch)
tree9bdbb430e3fca2a13fa4a81207ab9eb23c5fa146 /drivers.m4
parent9e747f790a76893e8f63d42f5ba66a79ef34fc61 (diff)
downloadlcd4linux-fa45bc0aea3c81f341a8f7173f53e9b139cb89d6.tar.gz
autoconf & smoketest bugs fixed
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@761 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drivers.m4')
-rw-r--r--drivers.m416
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers.m4 b/drivers.m4
index 7bbb8c2..32a624e 100644
--- a/drivers.m4
+++ b/drivers.m4
@@ -330,13 +330,13 @@ if test "$LCDTERM" = "yes"; then
fi
if test "$LEDMATRIX" = "yes"; then
- GRAPHICS="yes"
+ GRAPHIC="yes"
DRIVERS="$DRIVERS drv_LEDMatrix.o"
AC_DEFINE(WITH_LEDMATRIX,1,[LEDMatrix driver])
fi
if test "$LPH7508" = "yes"; then
- GRAPHICS="yes"
+ GRAPHIC="yes"
GPIO="yes"
PARPORT="yes"
DRIVERS="$DRIVERS drv_LPH7508.o"
@@ -519,6 +519,12 @@ if test "$X11" = "yes"; then
fi
+# Image driver
+if test "$IMAGE" = "yes"; then
+ GRAPHIC="yes"
+ DRIVERS="$DRIVERS drv_Image.o"
+fi
+
if test "$DRIVERS" = ""; then
AC_MSG_ERROR([You should activate at least one driver...])
fi
@@ -528,12 +534,6 @@ if test "$TEXT" = "yes"; then
DRIVERS="$DRIVERS drv_generic_text.o"
fi
-# Image driver
-if test "$IMAGE" = "yes"; then
- GRAPHIC="yes"
- DRIVERS="$DRIVERS drv_Image.o"
-fi
-
# generic graphic driver
if test "$GRAPHIC" = "yes"; then
DRIVERS="$DRIVERS drv_generic_graphic.o"