1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00
freebsd-ports/devel/yacl/files/patch-af
Steve Price 544c361b03 - Don't tromple the contents of MAKE_ENV otherwise MOTIF_LIB isn't defined.
- Properly pass MAKE_ENV along.
- Fix build errors on -current.
- Minor cleanup to some echo'd text.
2000-02-27 23:20:31 +00:00

21 lines
713 B
Plaintext

--- ui/font.cxx.orig Sun Feb 27 11:49:09 2000
+++ ui/font.cxx Sun Feb 27 11:51:34 2000
@@ -60,7 +60,7 @@
// Local id zero is always in use.
#endif
-static const DEFAULT_POINT_SIZE = 11;
+static const int DEFAULT_POINT_SIZE = 11;
static const double PTS_PER_INCH = 72.24;
#if defined (__MS_WINDOWS__) || defined(__MS_WIN32__)
@@ -217,7 +217,7 @@
static XtResource resources[] = {
{ "font", "Font", XtRString, sizeof (String),
XtOffset (Value*, font ),
- XtRString, "fixed" }
+ XtRString, (void *)"fixed" }
};
Widget shell = YACLApp()->Controller().RootShell();
if (shell)