aboutsummaryrefslogtreecommitdiffstats
path: root/debug.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-03-12 12:39:36 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-03-12 12:39:36 +0000
commit3f2399e0a62d4df4e055ec5273f5b7738c55e81d (patch)
tree711f05c7dafc211fd5ba65e5f66240d2291e9956 /debug.c
parentae1c4ae6f41459fdd78ac41cc43fdfa34cdc1067 (diff)
downloadlcd4linux-3f2399e0a62d4df4e055ec5273f5b7738c55e81d.tar.gz
[lcd4linux @ 2001-03-12 12:39:36 by reinelt]
reworked autoconf a lot: drivers may be excluded, #define's went to config.h git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@110 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/debug.c b/debug.c
index e5f99eb..271ad9f 100644
--- a/debug.c
+++ b/debug.c
@@ -1,4 +1,4 @@
-/* $Id: debug.c,v 1.2 2001/03/09 13:08:11 ltoetsch Exp $
+/* $Id: debug.c,v 1.3 2001/03/12 12:39:36 reinelt Exp $
*
* debug() and error() functions
*
@@ -20,6 +20,10 @@
*
*
* $Log: debug.c,v $
+ * Revision 1.3 2001/03/12 12:39:36 reinelt
+ *
+ * reworked autoconf a lot: drivers may be excluded, #define's went to config.h
+ *
* Revision 1.2 2001/03/09 13:08:11 ltoetsch
* Added Text driver
*
@@ -42,6 +46,7 @@
*
*/
+#include "config.h"
#include <stdlib.h>
#include <stdio.h>
@@ -65,7 +70,7 @@ void message (int level, const char *format, ...)
va_end(ap);
if (foreground) {
-#ifdef WITH_Text
+#ifdef WITH_TEXT
extern int curs_err(char *);
if (!curs_err(buffer))
#endif