From 2f9283108b19ce996752c091c89680142b1e90e6 Mon Sep 17 00:00:00 2001 From: blt Date: Mon, 21 Feb 2000 11:29:52 +0000 Subject: [PATCH] Fixed specifying --enable-drivers=all --- acinclude.m4 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index 8e8b96c..1ac1705 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -11,7 +11,8 @@ AC_ARG_ENABLE(drivers, if test "$drivers" = "all"; then drivers=[mtxorb,cfontz,curses,text,hd44780,joy,irman,lircin] AC_MSG_RESULT(all) -else +fi + drivers=`echo $drivers | sed 's/,/ /g'` AC_MSG_RESULT($drivers) for driver in $drivers @@ -41,7 +42,7 @@ else AC_DEFINE(TEXT_DRV) ;; hd44780) - DRIVERS="$DRIVERS hd44780.o" + DRIVERS="$DRIVERS hd44780.o hd44780-4bit.o hd44780-ext8bit.o lcd_sem.o hd44780-serialLpt.o hd44780-winamp.o" AC_DEFINE(HD44780_DRV) ;; joy) @@ -65,7 +66,7 @@ else ;; esac done -fi + AC_SUBST(LIBCURSES) AC_SUBST(LIBIRMAN) AC_SUBST(LIBLIRC_CLIENT)