~ubuntu-branches/debian/sid/banshee/sid

« back to all changes in this revision

Viewing changes to src/Core/Banshee.WebBrowser/libossifer/ossifer-session.c

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2012-04-20 21:40:13 UTC
  • Revision ID: package-import@ubuntu.com-20120420214013-y14ah91qw3icrir7
Tags: 2.4.0-2
* d/patches:
  - [8119b20] Patch to fix SSL cert validation with new libsoup (LP: #980300)
  - [516bc06] Refresh patches
  - [2077d23] Cherry-pick patch to fix Upnp crash
* d/control:
  - [002c13b] Bump Standards-Version (3.9.2 → 3.9.3)
  - [ed8f5a8] Bump mono-upnp build-dep version.
    + This is to include the related Mono.Upnp patch listed in bgo#672744.
    + Also fixes a crasher when the UPnP extension is enabled. (LP: #945566)
* [c4f25f3] d/copyright: Switch to new copyright-format

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
 
51
51
    session = webkit_get_default_session ();
52
52
 
 
53
#ifdef HAVE_LIBSOUP_2_38
 
54
    g_object_set (session,
 
55
                  SOUP_SESSION_SSL_USE_SYSTEM_CA_FILE, TRUE,
 
56
                  NULL);
 
57
#endif
 
58
 
53
59
#ifdef HAVE_LIBSOUP_GNOME
54
60
    path = g_strdup_printf ("%s.sqlite", cookie_db_path);
55
61
    cookie_jar = soup_cookie_jar_sqlite_new (path, FALSE);