~ubuntu-branches/ubuntu/maverick/liferea/maverick

« back to all changes in this revision

Viewing changes to src/mozilla/mozilla.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2008-06-23 12:44:17 UTC
  • mfrom: (1.2.52 upstream)
  • Revision ID: james.westby@ubuntu.com-20080623124417-o4klc8dom3qwd7wn
Tags: 1.4.16b-0.1ubuntu1
* Merge from Debian unstable.
* Remaining Ubuntu changes:
  - Change Build-Depends from xulrunner-dev to xulrunner-1.9-dev.
  - Add intltool to Build-Depends.
  - Fix systray mis-behaviour when Liferea is visible in another workspace.
  - Add Hildonisation from Frothing as a patch.
  - Add libhildon-1-dev Build-Depends for lpia.
  - --enable-maemo when building on lpia.
  - Call intltool-update -p to generate translation template for Rosetta.
  - Do not build transitional packages (not required due to Conflicts/
    Provides/Replaces).
  - Build-depend on liblualib50-dev instead of liblua5.1-0-dev.
  - Do not build webkit package.
  - Munge Maintainer field as per spec.
* Ubuntu changes dropped:
  - mobile.desktop, it isn't needed any more.
  - Added xulrunner-1.9 to liferea dependencies.
  - Quilt changes.
* Edit xulrunner-1.9 patch to not patch configure, handle that in
  99_autoconf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
2
 * @file mozilla.c a Mozilla/Firefox browser module implementation
3
3
 *   
4
 
 * Copyright (C) 2003-2006 Lars Lindner <lars.lindner@gmx.net>   
 
4
 * Copyright (C) 2003-2006 Lars Lindner <lars.lindner@gmail.com>
5
5
 * Copyright (C) 2004-2006 Nathan J. Conrad <t98502@users.sourceforge.net>
6
6
 *
7
7
 * Contains code from the Galeon sources
34
34
 
35
35
static void mozilla_init(void) {
36
36
 
 
37
#ifndef XPCOM_GLUE
37
38
        /* Avoid influencing the component loading by $MOZILLA_FIVE_HOME */
38
39
        g_unsetenv("MOZILLA_FIVE_HOME");
39
40
 
40
41
        gtk_moz_embed_set_comp_path(MOZILLA_LIB_ROOT);
41
 
 
 
42
#endif
42
43
        mozembed_init();        
43
44
}
44
45