summaryrefslogtreecommitdiff
path: root/xkbcomp.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-12-11 10:02:13 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-01-03 11:02:11 -0800
commit3e486c4578f3f6a81fc0f9afba6551dfa8c7b63b (patch)
tree9530291dc25bd3f137778129297a32e76ceb8bb8 /xkbcomp.c
parenta3bbf780252e55bb1dcab717289ef09e00d11223 (diff)
Only build debug infrastructure if DEBUG is defined
It's only used when DEBUG is defined, so don't build it when we're not using it. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'xkbcomp.c')
-rw-r--r--xkbcomp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/xkbcomp.c b/xkbcomp.c
index 98e0d26..1be264d 100644
--- a/xkbcomp.c
+++ b/xkbcomp.c
@@ -67,7 +67,9 @@
#define INPUT_XKB 1
#define INPUT_XKM 2
+#ifdef DEBUG
unsigned int debugFlags;
+#endif
static const char *fileTypeExt[] = {
"XXX",
@@ -905,7 +907,9 @@ main(int argc, char *argv[])
Status status;
scan_set_file(stdin);
+#ifdef DEBUG
uSetDebugFile(NullString);
+#endif
uSetErrorFile(NullString);
XkbInitIncludePath();