svn commit: r505789 - head/mail/xpbiff/files

Adriaan de Groot adridg at FreeBSD.org
Wed Jul 3 20:27:38 UTC 2019


Author: adridg
Date: Wed Jul  3 20:27:37 2019
New Revision: 505789
URL: https://svnweb.freebsd.org/changeset/ports/505789

Log:
  Fix build of mail/xpbiff after libXt update.
  
  An implicit include has gone away (Intrinsic.h) so users of X11/StringDefs.h
  now need to explictly include X11/Intrinsic.h to get the typedef for
  String, otherwise many of the macro's like this one:
  
  #define XtRString ((String)&XtStrings[1797])
  
  will fall over.

Added:
  head/mail/xpbiff/files/patch-LocPixmap.c   (contents, props changed)

Added: head/mail/xpbiff/files/patch-LocPixmap.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/xpbiff/files/patch-LocPixmap.c	Wed Jul  3 20:27:37 2019	(r505789)
@@ -0,0 +1,10 @@
+--- LocPixmap.c.orig	2019-07-03 20:23:26 UTC
++++ LocPixmap.c
+@@ -30,6 +30,7 @@
+ #include <X11/Xlib.h>
+ #include <X11/Xresource.h>
+ #include <X11/Xutil.h>
++#include <X11/Intrinsic.h>
+ #include <X11/StringDefs.h>
+ #include <sys/param.h>			/* get MAXPATHLEN if possible */
+ #ifndef MAXPATHLEN


More information about the svn-ports-head mailing list