- 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:
+14
-13
@@ -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
|
||||
|
||||
@@ -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]);
|
||||
}
|
||||
|
||||
@@ -58,6 +58,7 @@ static parameter args[] = {
|
||||
{"-t", "--type"},
|
||||
{"-f", "--foreground"},
|
||||
{"-b", "--backlight"},
|
||||
{"-i", "--serverinfo"},
|
||||
{NULL, NULL},
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user