Date: Wed, 3 Jul 2019 20:27:37 +0000 (UTC) From: Adriaan de Groot <adridg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505789 - head/mail/xpbiff/files Message-ID: <201907032027.x63KRbtC096841@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907032027.x63KRbtC096841>