From 487144639c9a643e6d01a1a4d03c009af34e1903 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sat, 6 Jul 2013 00:16:14 -0700 Subject: Remove CRAY/WORD64 support (unifdef -UCRAY -UWORD64) Signed-off-by: Alan Coopersmith --- src/Label.c | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) diff --git a/src/Label.c b/src/Label.c index e8743c5..dac1f3a 100644 --- a/src/Label.c +++ b/src/Label.c @@ -77,9 +77,6 @@ int abs(); #define MULTI_LINE_LABEL 32767 -#ifdef CRAY -#define WORD64 -#endif /**************************************************************** * @@ -197,55 +194,9 @@ ClassInitialize(void) (XtConvertArgList)NULL, 0 ); } -#ifndef WORD64 #define TXT16 XChar2b -#else - -#define TXT16 char - -static XChar2b *buf2b; -static int buf2blen = 0; - -static int -_XawLabelWidth16(XFontStruct *fs, char *str, int n) -{ - int i; - XChar2b *ptr; - - if (n > buf2blen) { - buf2b = (XChar2b *)XtRealloc((char *)buf2b, n * sizeof(XChar2b)); - buf2blen = n; - } - for (ptr = buf2b, i = n; --i >= 0; ptr++) { - ptr->byte1 = *str++; - ptr->byte2 = *str++; - } - return XTextWidth16(fs, buf2b, n); -} - -static int -_XawLabelDraw16(Display *dpy, Drawable d, GC gc, int x, int y, char *str, int n) -{ - int i; - XChar2b *ptr; - - if (n > buf2blen) { - buf2b = (XChar2b *)XtRealloc((char *)buf2b, n * sizeof(XChar2b)); - buf2blen = n; - } - for (ptr = buf2b, i = n; --i >= 0; ptr++) { - ptr->byte1 = *str++; - ptr->byte2 = *str++; - } - XDrawString16(dpy, d, gc, x, y, buf2b, n); -} - -#define XTextWidth16 _XawLabelWidth16 -#define XDrawString16 _XawLabelDraw16 - -#endif /* WORD64 */ /* * Calculate width and height of displayed text in pixels -- cgit v1.2.3