- Fixed acconfig comment-splitting problem.. (?)

- "-i off" option now works when placed after a driver
- CFontz driver no longer attempts to use 19200 baud if asked.
This commit is contained in:
toykeeper
2000-05-13 20:21:16 +00:00
parent 6a115b4446
commit 8b5b842c89
3 changed files with 15 additions and 15 deletions
+14 -13
View File
@@ -1,19 +1,20 @@
/* acconfig.h
$Id$
This file is in the public domain.
* $Id$
* This file is in the public domain.
*
* Descriptive text for the C preprocessor macros that
* the distributed Autoconf macros can define.
* No software package will use all of them; autoheader copies the ones
* your configure.in uses into your configuration header file templates.
*
* The entries are in sort -df order: alphabetical, case insensitive,
* ignoring punctuation (such as underscores). Although this order
* can split up related entries, it makes it easier to check whether
* a given entry is in the file.
*/
/* Leave the following blank line there!! Autoheader needs it. */
Descriptive text for the C preprocessor macros that
the distributed Autoconf macros can define.
No software package will use all of them; autoheader copies the ones
your configure.in uses into your configuration header file templates.
The entries are in sort -df order: alphabetical, case insensitive,
ignoring punctuation (such as underscores). Although this order
can split up related entries, it makes it easier to check whether
a given entry is in the file.
Leave the following blank line there!! Autoheader needs it. */
#undef LIRCIN_DRV
#undef CFONTZ_DRV
-2
View File
@@ -113,8 +113,6 @@ CFontz_init (lcd_logical_driver * driver, char *args)
speed = B2400;
else if (tmp == 9600)
speed = B9600;
else if (tmp == 19200)
speed = B19200;
else {
fprintf (stderr, "CFontz_init: %s argument must be 1200, 2400, or 9600. Using default value.\n", argv[i]);
}
+1
View File
@@ -58,6 +58,7 @@ static parameter args[] = {
{"-t", "--type"},
{"-f", "--foreground"},
{"-b", "--backlight"},
{"-i", "--serverinfo"},
{NULL, NULL},
};