From f467b805f7cbe821d1bfec27ad643067dd19ca10 Mon Sep 17 00:00:00 2001 From: oetiker Date: Sun, 7 Feb 2010 19:55:47 +0000 Subject: [PATCH] use _NL_TIME_WEEK_1STDAY to determin the first day of the week. git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@2018 a5681a0c-68f1-0310-ab6d-d61299d08faa --- src/rrd_graph.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/rrd_graph.c b/src/rrd_graph.c index bd7e3c3..390a66e 100644 --- a/src/rrd_graph.c +++ b/src/rrd_graph.c @@ -1364,7 +1364,11 @@ static int find_first_weekday(void){ static int first_weekday = -1; if (first_weekday == -1){ #if defined(HAVE_NL_LANGINFO) - first_weekday = nl_langinfo(_NL_TIME_FIRST_WEEKDAY)[0] - 1; + /* according to http://sourceware.org/ml/libc-locales/2009-q1/msg00011.html */ + long week_1stday_l = (long) nl_langinfo (_NL_TIME_WEEK_1STDAY); + if (week_1stday_l == 19971130) first_weekday = 0; /* Sun */ + else if (week_1stday_l == 19971201) first_weekday = 1; /* Mon */ + else first_weekday = 1; /* we go for a monday default */ #else first_weekday = 1; #endif -- 2.11.0