aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2004-03-16 22:20:33 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2004-03-16 22:20:33 +0000
commitb17256bb3a02d4c06b9750abc7ba6f87880234b8 (patch)
tree6ec835806e93ff6d189a713da703fa5d4aabf0a7 /CHANGES
parent7c9d180767e5067fd85ef5ffc6806255d39f2894 (diff)
downloadports-b17256bb3a02d4c06b9750abc7ba6f87880234b8.tar.gz
ports-b17256bb3a02d4c06b9750abc7ba6f87880234b8.zip
Add instructions for fixing portability issues with the new freetype2.
Notes
Notes: svn path=/head/; revision=104218
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES15
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 4a79e1db45eb..ab533759dea5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,21 @@ in the release notes.
All ports committers are allowed to commit to this file.
+20040316:
+ The print/freetype2 port has been updated to 2.1.7. This update
+ changes some of the internal FreeType API. Applications may need
+ to be patched to support this new API. If a source files includes
+ freetype/freetype.h, make sure ft2build.h is included before
+ freetype/freetype.h. The proper way to do this is:
+
+#include <ft2build.h>
+#include FT_FREETYPE_H
+
+ However, the following will work as well, but is deprecated:
+
+#include <ft2build.h>
+#include <freetype/freetype.h>
+
20040314:
USE_LIBTOOL, USE_AUTOCONF, and USE_AUTOMAKE are now considered
deprecated, and will be removed on or around June 1st 2004.