diff options
author | Egbert Eich <eich@suse.de> | 2004-11-02 08:54:53 +0000 |
---|---|---|
committer | Egbert Eich <eich@suse.de> | 2004-11-02 08:54:53 +0000 |
commit | 522c878fca3bfe97cd408e37065f827c004faa04 (patch) | |
tree | 7c9c6342d44b63529fd039ca12d7404ddcce1637 /xkb/ddxLoad.c | |
parent | 1074992c285835ca9d96d11e8352bbe2cdbc2a28 (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/ddxLoad.c')
-rw-r--r-- | xkb/ddxLoad.c | 9 |
1 files changed, 9 insertions, 0 deletions
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"); |