Fix: SE053 Problem: GTK interface is not included in the list of supported windowing systems produced by the #version command. Also updated the version number to the same style as elsewhere in Slash'EM. Compatible with: Slash'EM 0.0.6E0F2 Author: J. Ali Harlow, ali@avrc.city.ac.uk Date: 3 Mar 2000 diff -Narc ../slashem-0.0.6E0F2/util/makedefs.c ./util/makedefs.c *** ../slashem-0.0.6E0F2/util/makedefs.c Mon Jan 17 13:30:13 2000 --- ./util/makedefs.c Fri Mar 3 16:07:08 2000 *************** *** 776,781 **** --- 776,784 ---- #ifdef X11_GRAPHICS "X11", #endif + #ifdef GTK_GRAPHICS + "GTK", + #endif #ifdef MAC "Mac", #endif *************** *** 806,818 **** /* WAC use DEF_GAME_NAME */ ! Fprintf(ofp, #ifdef BETA ! "\n %s version %d.%d.%d-%d [beta]\n", #else ! "\n %s version %d.%d.%d-%d\n", #endif - DEF_GAME_NAME, VERSION_MAJOR, VERSION_MINOR, PATCHLEVEL, EDITLEVEL); Fprintf(ofp,"\nOptions compiled into this edition:\n"); --- 809,824 ---- /* WAC use DEF_GAME_NAME */ ! Fprintf(ofp,"\n %s version %d.%d.%dE%d", ! DEF_GAME_NAME, VERSION_MAJOR, VERSION_MINOR, PATCHLEVEL, EDITLEVEL); ! #ifdef FIXLEVEL ! Fprintf(ofp, "F%d", FIXLEVEL); ! #endif #ifdef BETA ! Fprintf(ofp, " [beta]\n"); #else ! Fprintf(ofp, "\n"); #endif Fprintf(ofp,"\nOptions compiled into this edition:\n");