aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2004-03-17 06:20:33 +0800
committermarcus <marcus@FreeBSD.org>2004-03-17 06:20:33 +0800
commit653b7a6968b8a829bd8ec782125492d1a58c678f (patch)
treecd3049d421612955aaa4f425173a279ec31b687c /CHANGES
parent797ccf5011e05c1ad486a2d482df80809b072990 (diff)
downloadfreebsd-ports-gnome-653b7a6968b8a829bd8ec782125492d1a58c678f.tar.gz
freebsd-ports-gnome-653b7a6968b8a829bd8ec782125492d1a58c678f.tar.zst
freebsd-ports-gnome-653b7a6968b8a829bd8ec782125492d1a58c678f.zip
Add instructions for fixing portability issues with the new freetype2.
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.