sort drivers alphabetically in acinclude.m4 & server/drivers/Makefile.am;

update server/drivers/wirz-sli.c to make it complile afgain and announce
it in acinclude.m4; update info how to include a new driver to make the
examples resemble the current driver situation more closely
This commit is contained in:
marschap
2005-12-17 17:04:00 +00:00
parent 2b07585f0f
commit f0300d1765
4 changed files with 135 additions and 133 deletions
+28 -26
View File
@@ -43,28 +43,30 @@ First you need to add your driver name to the list of possible choices in the he
<para>This:</para>
<screen>
AC_ARG_ENABLE(drivers,
[ --enable-drivers=&lt;list&gt; compile driver for LCDs in &lt;list&gt;.]
[ drivers may be separated with commas.]
[ Possible choices are:]
[ mtxorb,cfontz,cfontz633,curses,text,lb216,]
[ hd44780,joy,irman,lirc,bayrad,glk,,mtc_s16209x]
[ stv5730,sed1330,sed1520,svga,lcdm001,t6963]
[ lcterm,icp_a106]
[ \"all\" compiles all drivers],
drivers="$enableval",
[ --enable-drivers=<list> compile driver for LCDs in <list>.]
[ drivers may be separated with commas.]
[ Possible choices are:]
[ bayrad,cfontz,cfontz633,curses,cwlnx,glcdlib,glk,]
[ hd44780,icp_a106,imon,iowarrior,irman,joy,lb216,]
[ lcdm001,lcterm,lirc,ms6931,mtc_s16209x,mtxorb,]
[ noritakevfd,pylcd,sed1330,sed1520,sli,stv5730,svga,]
[ t6963,text,tyan,xosd]
[ \"all\" compiles all drivers],
drivers="$enableval",
</screen>
<para>becomes:</para>
<screen>
AC_ARG_ENABLE(drivers,
[ --enable-drivers=&lt;list&gt; compile driver for LCDs in &lt;list&gt;.]
[ drivers may be separated with commas.]
[ Possible choices are:]
[ mtxorb,cfontz,cfontz633,curses,text,lb216,]
[ hd44780,joy,irman,lirc,bayrad,glk,,mtc_s16209x]
[ stv5730,sed1330,sed1520,svga,lcdm001,t6963]
[ lcterm,icp_a106,<emphasis>myDriver</emphasis>]
[ \"all\" compiles all drivers],
drivers="$enableval",
[ --enable-drivers=<list> compile driver for LCDs in <list>.]
[ drivers may be separated with commas.]
[ Possible choices are:]
[ bayrad,cfontz,cfontz633,curses,cwlnx,glcdlib,glk,]
[ hd44780,icp_a106,imon,iowarrior,irman,joy,lb216,]
[ lcdm001,lcterm,lirc,ms6931,mtc_s16209x,mtxorb,]
[ noritakevfd,pylcd,sed1330,sed1520,sli,stv5730,svga,]
[ t6963,text,tyan,xosd,<emphasis>myDriver</emphasis>]
[ \"all\" compiles all drivers],
drivers="$enableval",
</screen>
</sect3>
@@ -76,15 +78,15 @@ AC_ARG_ENABLE(drivers,
<para>This:</para>
<screen>
if test "$drivers" = "all"; then
drivers=[mtxorb,cfontz,...biglist...,lcterm,icp_a106]
fi
if test "$drivers" = "all"; then
drivers=[bayrad,cfontz,...(big list)...,tyan,xosd]
fi
</screen>
<para>becomes:</para>
<screen>
if test "$drivers" = "all"; then
drivers=[mtxorb,cfontz,...biglist...,lcterm,icp_a106,<emphasis>myDriver</emphasis>]
fi
if test "$drivers" = "all"; then
drivers=[bayrad,cfontz,...(big list)...,tyan,xosd,<emphasis>myDriver</emphasis>]
fi
</screen>
</sect3>
@@ -121,11 +123,11 @@ If your driver only works in some platform or requires a particular library or h
<para>This</para>
<screen>
EXTRA_PROGRAMS = bayrad CFontz ...biglist... text wirz_sli
EXTRA_PROGRAMS = bayrad CFontz ...(big list)... wirz_sli xosd
</screen>
<para>becomes</para>
<screen>
EXTRA_PROGRAMS = bayrad CFontz ...biglist... text wirz_sli <emphasis>myDriver</emphasis>
EXTRA_PROGRAMS = bayrad CFontz ...(big list)... wirz_sli xosd <emphasis>myDriver</emphasis>
</screen>
</sect3>