Skip to content

Commit

Permalink
Fix build on musl libc
Browse files Browse the repository at this point in the history
  • Loading branch information
Cameron Nemo committed Oct 18, 2018
1 parent 51b07ef commit 67d91fe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/Model/CalendarModel.vala
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ public class Maya.Model.CalendarModel : Object {
}

private CalendarModel () {
#if _NL_TIME_FIRST_WEEKDAY
int week_start = Posix.NLTime.FIRST_WEEKDAY.to_string ().data[0];
#else
int week_start = 0;
#endif
if (week_start >= 1 && week_start <= 7) {
week_starts_on = (Maya.Settings.Weekday)week_start-1;
}
Expand Down

0 comments on commit 67d91fe

Please sign in to comment.