~brandonsnider/chromium-browser/chromium-browser

« back to all changes in this revision

Viewing changes to debian/patches/fix_glib_includes.patch

  • Committer: Chris Coulson
  • Date: 2011-12-14 18:23:23 UTC
  • Revision ID: chris.coulson@canonical.com-20111214182323-gtactqdw2cwih3uq
* Fix glib includes when building with the new glib in precise
  - add debian/patches/fix_glib_includes.patch
  - update debian/patches/series

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Index: src/ui/base/l10n/l10n_util.cc
 
2
===================================================================
 
3
--- src.orig/ui/base/l10n/l10n_util.cc  2011-11-30 06:03:46.000000000 +0000
 
4
+++ src/ui/base/l10n/l10n_util.cc       2011-12-14 18:05:19.981195684 +0000
 
5
@@ -5,7 +5,8 @@
 
6
 #include "ui/base/l10n/l10n_util.h"
 
7
 
 
8
 #if defined(USE_X11)
 
9
-#include <glib/gutils.h>
 
10
+#include <glib.h>
 
11
+#include <glib/gi18n.h>
 
12
 #endif
 
13
 
 
14
 #include <algorithm>