From 1d3c8759b487ca14af7be31f66ccd66bdff7cef4 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 6 Apr 2002 12:40:59 +0000 Subject: [PATCH] Different default font when WIN32 is defined git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@117 a5681a0c-68f1-0310-ab6d-d61299d08faa --- program/src/rrd_graph.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/program/src/rrd_graph.c b/program/src/rrd_graph.c index 5f5ab274..27627178 100644 --- a/program/src/rrd_graph.c +++ b/program/src/rrd_graph.c @@ -21,9 +21,13 @@ #ifndef RRD_DEFAULT_FONT +#ifdef WIN32 +#define RRD_DEFAULT_FONT "c:/winnt/fonts/COUR.TTF" +#else #define RRD_DEFAULT_FONT "/usr/share/fonts/truetype/openoffice/ariosor.ttf" /* #define RRD_DEFAULT_FONT "/usr/share/fonts/truetype/Arial.ttf" */ #endif +#endif text_prop_t text_prop[] = { -- 2.30.2