1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-ab,v 1.1 2001/10/19 07:05:29 kei Exp $
--- gd.c.orig Thu Oct 18 18:49:42 2001
+++ gd.c Thu Oct 18 18:51:51 2001
@@ -2662,7 +2662,7 @@
fontname = (unsigned char *) Z_STRVAL_PP(FONTNAME);
#ifdef USE_GD_IMGSTRTTF
-# if HAVE_LIBGD20 & HAVE_LIBFREETYPE
+# if HAVE_LIBGD20 && HAVE_LIBFREETYPE
error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str);
# else
error = gdImageStringTTF(im, brect, col, fontname, ptsize, angle, x, y, str);
|