openbsd-ports/devel/libnotify/patches/patch-libnotify_notification_h
landry 818cde702f Comma at end of enumerator list is not valid in c++ (and errors out when
using -pedantic), and some c++ code (like, mozilla) might use libnotify.
Fix offending header.

ok ajacoutot@
2012-01-28 09:33:09 +00:00

14 lines
451 B
Plaintext

$OpenBSD: patch-libnotify_notification_h,v 1.1 2012/01/28 09:33:09 landry Exp $
comma at end of list isn't valid in c++, and c++ code might use libnotify
--- libnotify/notification.h.orig Sat Jan 28 09:55:27 2012
+++ libnotify/notification.h Sat Jan 28 09:56:25 2012
@@ -84,7 +84,7 @@ typedef enum
{
NOTIFY_URGENCY_LOW,
NOTIFY_URGENCY_NORMAL,
- NOTIFY_URGENCY_CRITICAL,
+ NOTIFY_URGENCY_CRITICAL
} NotifyUrgency;