summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-2.1.0-rc1-PATCHES/patch-01-win32
blob: 51d9b4dc2f347d24dc227d8f68bda90c23e2e60b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff -ur libgd-2.1.0-rc1.orig/src/gdft.c libgd-2.1.0-rc1/src/gdft.c
--- libgd-2.1.0-rc1.orig/src/gdft.c	2013-05-20 21:10:28.000000000 +0200
+++ libgd-2.1.0-rc1/src/gdft.c	2013-06-02 15:06:12.000000000 +0200
@@ -1512,6 +1512,16 @@
 	 */
 	*fontpath = NULL;
 	fontsearchpath = getenv ("GDFONTPATH");
+#ifdef _WIN32
+  if (!fontsearchpath) {
+    char *ffptr = getenv ("SYSTEMROOT");
+    if (ffptr) {
+      fontsearchpath = malloc (strlen(ffptr) + strlen("\\fonts") + 1);
+      strcpy(fontsearchpath, ffptr);
+      strcat(fontsearchpath, "\\fonts");
+    }
+  }
+#endif
 	if (!fontsearchpath)
 		fontsearchpath = DEFAULT_FONTPATH;