summaryrefslogtreecommitdiff
path: root/xkb
diff options
context:
space:
mode:
authorEgbert Eich <eich@suse.de>2004-11-02 08:54:53 +0000
committerEgbert Eich <eich@suse.de>2004-11-02 08:54:53 +0000
commit522c878fca3bfe97cd408e37065f827c004faa04 (patch)
tree7c9c6342d44b63529fd039ca12d7404ddcce1637 /xkb
parent1074992c285835ca9d96d11e8352bbe2cdbc2a28 (diff)
Removing unneeded private FreeType2 symbol.
Updating to EDID 1.3. (Bugzilla# 1490, Jay Cotton, Egbert Eich). Removing unneeded code. Fixed KGA handling for i810. KGA handling for chips derived from C&T chips is slightly different. The changes make the code consistent with the C&T (chips) and i740 drivers.
Diffstat (limited to 'xkb')
-rw-r--r--xkb/ddxList.c3
-rw-r--r--xkb/ddxLoad.c9
2 files changed, 12 insertions, 0 deletions
diff --git a/xkb/ddxList.c b/xkb/ddxList.c
index 30510ffaa..b2e644fc3 100644
--- a/xkb/ddxList.c
+++ b/xkb/ddxList.c
@@ -200,6 +200,9 @@ char tmpname[32];
in= Popen(buf,"r");
#else
{
+#ifdef DEBUG_CMD
+ ErrorF("xkb executes: %s\n",cmd);
+#endif
if (System(buf) < 0)
ErrorF("Could not invoke keymap compiler\n");
else
diff --git a/xkb/ddxLoad.c b/xkb/ddxLoad.c
index ed61becb0..636882955 100644
--- a/xkb/ddxLoad.c
+++ b/xkb/ddxLoad.c
@@ -177,6 +177,9 @@ char cmd[PATH_MAX],file[PATH_MAX],xkm_output_dir[PATH_MAX],*map,*outFile;
ErrorF(" \"cmd\"\n");
}
#endif
+#ifdef DEBUG_CMD
+ ErrorF("xkb executes: %s\n",cmd);
+#endif
if (System(cmd)==0) {
if (nameRtrn) {
strncpy(nameRtrn,outFile,nameRtrnLen);
@@ -312,6 +315,12 @@ int i;
if (fclose(out)==0)
#endif
{
+#ifdef DEBUG_CMD
+ ErrorF("xkb executes: %s\n",buf);
+ ErrorF("xkbcomp input:\n");
+ XkbWriteXKBKeymapForNames(stderr,names,NULL,xkb,want,need);
+ ErrorF("end xkbcomp input\n");
+#endif
#ifdef WIN32
if (System(buf) < 0)
ErrorF("Could not invoke keymap compiler\n");