openbsd-ports/mail/faces/patches/patch-x11_c
jasper a3da0e55b6 really fix build on mips64...
some #if defined(mips) were trying to include non-existing headers
2007-05-24 08:35:13 +00:00

91 lines
3.0 KiB
Plaintext

--- x11.c.orig Tue Nov 19 05:00:50 1991
+++ x11.c Thu May 24 10:23:45 2007
@@ -18,24 +18,11 @@
#include <stdio.h>
#include <ctype.h>
-#if ( !defined(mips) && !defined(TOPIX) ) || defined(ultrix)
+
#include <sys/types.h>
#include <sys/time.h>
#include <sys/param.h>
-#else
-#ifdef SYSTYPE_BSD43
-#include <sys/types.h>
-#include <sys/time.h>
-#else
-#ifndef TOPIX
-#include <bsd/sys/types.h>
-#include <bsd/sys/time.h>
-#include <sys/param.h>
-#else
-#include <sys/bsd_time.h>
-#endif /*TOPIX*/
-#endif /*SYSTYPE_BSD43*/
-#endif /*( !defined(mips) && !defined(TOPIX) ) || defined(ultrix)*/
+
#include "faces.h"
#include "extern.h"
@@ -58,7 +45,6 @@
#define F_ICON 0 /* Icon index to frame array. */
#define F_WINDOW 1 /* Window index to frame array. */
-#define FACES_BORDER_WIDTH 2
#define FRAME_MASK (ButtonPressMask | ExposureMask | \
ButtonMotionMask | KeyPressMask)
#define ICON_MASK ExposureMask
@@ -364,11 +350,13 @@ char *argv[] ;
init_font() ;
gc_mask = GCFont | GCForeground | GCBackground | GCGraphicsExposures ;
gc_val.font = sfont->fid ;
- gc_val.foreground = foregnd ;
- gc_val.background = backgnd ;
+ gc_val.foreground = BlackPixel(dpy, screen) ;
+ gc_val.background = WhitePixel(dpy, screen) ;
gc_val.graphics_exposures = False ;
gc = XCreateGC(dpy, root, gc_mask, &gc_val) ;
+ gc_val.foreground = foregnd ;
+ gc_val.background = backgnd ;
tilegc = XCreateGC(dpy, root, gc_mask, &gc_val) ;
if (depth == 1) XSetFillStyle(dpy, tilegc, FillOpaqueStippled) ;
else XSetFillStyle(dpy, tilegc, FillTiled) ;
@@ -459,7 +447,11 @@ load_resources()
home = getenv("HOME") ;
XrmInitialize() ;
+#ifdef __FreeBSD__
+ STRCPY(name, "/usr/X11R6/lib/X11/app-defaults/Faces") ;
+#else
STRCPY(name, "/usr/lib/X11/app-defaults/Faces") ;
+#endif
/* Get applications defaults file, if any. */
@@ -576,14 +568,14 @@ char *argv[] ;
winattrs.event_mask = FRAME_MASK ;
frame[F_WINDOW] = XCreateWindow(dpy, root, size.x, size.y,
- size.width, size.height, FACES_BORDER_WIDTH,
+ size.width, size.height, border_width,
CopyFromParent, InputOutput, CopyFromParent,
CWBackPixel | CWBorderPixel | CWEventMask, &winattrs) ;
winattrs.event_mask = ICON_MASK ;
frame[F_ICON] = XCreateWindow(dpy, root,
- ix, iy, imagewidth, imageheight, FACES_BORDER_WIDTH,
+ ix, iy, imagewidth, imageheight, border_width,
CopyFromParent, InputOutput, CopyFromParent,
CWBackPixel | CWBorderPixel | CWEventMask, &winattrs) ;
@@ -856,6 +848,7 @@ char *str ;
XFillRectangle(dpy, pr[(int) dtype], gc, x, y-9,
(unsigned int) textwidth+2, 13) ;
XSetFunction(dpy, gc, GXxor) ;
+ XSetForeground(dpy, gc, WhitePixel(dpy, screen));
XDrawImageString(dpy, pr[(int) dtype], gc, x, y, str, len) ;
XSetFunction(dpy, gc, GXcopy) ;
}