--- gnats/Makefile Thu May 15 18:24:26 2003 +++ gnats/Makefile Thu May 15 18:19:36 2003 @@ -21,6 +21,7 @@ CONFIGURE_ARGS= --with-lispdir=${PREFIX}/share/emacs/site-lisp \ --with-full-gnats \ --with-release-based +CFLAGS+= -DUSE_WIDE_RESPONSIBLE USE_GMAKE= yes MAN1= edit-pr.1 query-pr.1 send-pr.1 --- gnats/files/patch-gnats::query.c Wed Dec 31 18:00:00 1969 +++ gnats/files/patch-gnats::query.c Thu May 15 18:20:50 2003 @@ -0,0 +1,25 @@ +--- gnats/query.c.dist Wed Nov 25 08:15:19 1998 ++++ gnats/query.c Thu May 15 18:15:59 2003 +@@ -488,7 +488,7 @@ + + if (query_format & FORMAT_SQL) + { +- char *t, *q, *tempstr; ++ char *t, *q, *tempstr, *fmtstring; + + tempstr = (char *) xmalloc (strlen (i->synopsis) + 1); + strcpy (tempstr, i->synopsis); +@@ -503,7 +503,12 @@ + if (q != NULL) + *q = '\0'; + +- fprintf (outfile, "%1.1d|%1.1d|%-16.16s|%1.1d|%1.1d|%-16.16s|", ++#ifdef USE_WIDE_RESPONSIBLE ++ fmtstring = "%1.1d|%1.1d|%-20.20s|%1.1d|%1.1d|%-16.16s|"; ++#else ++ fmtstring = "%1.1d|%1.1d|%-16.16s|%1.1d|%1.1d|%-16.16s|"; ++#endif ++ fprintf (outfile, fmtstring, + sql_types (i->severity, Severity), sql_types (i->priority, + tempstr, + sql_types (i->state, State), sql_types (i->class, Class),