Update to evolution-3.24.3.

This commit is contained in:
ajacoutot 2017-06-19 12:05:45 +00:00
parent 2ffe6dc648
commit 3ed295409a
3 changed files with 4 additions and 33 deletions

View File

@ -1,10 +1,9 @@
# $OpenBSD: Makefile,v 1.279 2017/05/30 12:32:59 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.280 2017/06/19 12:05:45 ajacoutot Exp $
COMMENT= integrated email and PIM software for GNOME
GNOME_PROJECT= evolution
GNOME_VERSION= 3.24.2
REVISION= 0
GNOME_VERSION= 3.24.3
CATEGORIES= mail

View File

@ -1,2 +1,2 @@
SHA256 (evolution-3.24.2.tar.xz) = 57NaYPStU7tUFtjpY5CqechgGwmnHmNcHecwuU86698=
SIZE (evolution-3.24.2.tar.xz) = 12132032
SHA256 (evolution-3.24.3.tar.xz) = NfOJMhSovb7PE9Bz/xI6OfZVhcYgZiQd838/Vht9Wd0=
SIZE (evolution-3.24.3.tar.xz) = 12135196

View File

@ -1,28 +0,0 @@
$OpenBSD: patch-src_modules_cal-config-weather_evolution-cal-config-weather_c,v 1.1 2017/05/30 12:32:59 ajacoutot Exp $
From 4612b707975f8925e251b5afd34d49334107c129 Mon Sep 17 00:00:00 2001
From: Antoine Jacoutot <ajacoutot@gnome.org>
Date: Tue, 30 May 2017 14:18:49 +0200
Subject: Bug 783191 - Fix conditional to prevent a compiler warning
Index: src/modules/cal-config-weather/evolution-cal-config-weather.c
--- src/modules/cal-config-weather/evolution-cal-config-weather.c.orig
+++ src/modules/cal-config-weather/evolution-cal-config-weather.c
@@ -28,7 +28,7 @@
#include <e-util/e-util.h>
-#if HAVE_NL_LANGINFO
+#if defined(HAVE_NL_LANGINFO)
#include <langinfo.h>
#endif
@@ -170,7 +170,7 @@ is_locale_metric (void)
{
const gchar *fmt;
-#if HAVE_NL_LANGINFO && HAVE__NL_MEASUREMENT_MEASUREMENT
+#if defined(HAVE_NL_LANGINFO) && defined(HAVE__NL_MEASUREMENT_MEASUREMENT)
fmt = nl_langinfo (_NL_MEASUREMENT_MEASUREMENT);
if (fmt && *fmt == 2)