From 7e44ab0308d1606f2b3e1a24fa9f256c39ef8cc4 Mon Sep 17 00:00:00 2001 From: Edin Kadribasic Date: Fri, 14 Jun 2002 14:48:33 +0000 Subject: [PATCH] Use some more sane paths for win32 version. --- ext/gd/libgd/gd.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ext/gd/libgd/gd.h b/ext/gd/libgd/gd.h index 8dfb301e02..9f67185649 100644 --- a/ext/gd/libgd/gd.h +++ b/ext/gd/libgd/gd.h @@ -5,9 +5,15 @@ extern "C" { #endif +#ifndef WIN32 /* default fontpath for unix systems */ #define DEFAULT_FONTPATH "/usr/share/fonts/truetype" #define PATHSEPARATOR ":" +#else +/* default fontpath for windows systems */ +#define DEFAULT_FONTPATH "c:\\winnt\\fonts" +#define PATHSEPARATOR ";" +#endif /* gd.h: declarations file for the graphic-draw module. * Permission to use, copy, modify, and distribute this software and its -- 2.50.1