diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-02-13 00:47:42 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-02-13 00:47:42 +0800 |
commit | bbd519c4867de487e09f8ac5f838a2b150cb75a1 (patch) | |
tree | 4dc38467cc053d2c5723d7f3cda39d116e0242a1 /src | |
parent | ccc77d2861cff93d3752cb21cf78a74df5817f02 (diff) | |
download | gsoc2013-epiphany-bbd519c4867de487e09f8ac5f838a2b150cb75a1.tar gsoc2013-epiphany-bbd519c4867de487e09f8ac5f838a2b150cb75a1.tar.gz gsoc2013-epiphany-bbd519c4867de487e09f8ac5f838a2b150cb75a1.tar.bz2 gsoc2013-epiphany-bbd519c4867de487e09f8ac5f838a2b150cb75a1.tar.lz gsoc2013-epiphany-bbd519c4867de487e09f8ac5f838a2b150cb75a1.tar.xz gsoc2013-epiphany-bbd519c4867de487e09f8ac5f838a2b150cb75a1.tar.zst gsoc2013-epiphany-bbd519c4867de487e09f8ac5f838a2b150cb75a1.zip |
Depend on libxml2 >= 2.6.6 because of bug #133298 and bug # 131548.
2004-02-12 Christian Persch <chpe@cvs.gnome.org>
* configure.in:
Depend on libxml2 >= 2.6.6 because of bug #133298 and bug # 131548.
* src/ephy-main.c: (main):
Use LIBXML_TEST_VERSION to check for API compatibility.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-main.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/ephy-main.c b/src/ephy-main.c index f2240e76b..1bf5520f7 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -14,10 +14,12 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Id$ */ #ifdef HAVE_CONFIG_H -#include <config.h> +#include "config.h" #endif #include "ephy-shell.h" @@ -35,6 +37,7 @@ #include <glib/gi18n.h> #include <glade/glade-init.h> #include <libgnomevfs/gnome-vfs-init.h> +#include <libxml/xmlversion.h> static gboolean open_in_existing = FALSE; static gboolean open_in_new_tab = FALSE; @@ -97,6 +100,11 @@ main (int argc, char *argv[]) textdomain(GETTEXT_PACKAGE); #endif + /* check libxml2 API version epiphany was compiled with against the + * version we're running with. + */ + LIBXML_TEST_VERSION + g_set_application_name (_("Epiphany Web Browser")); program = gnome_program_init (PACKAGE, VERSION, LIBGNOMEUI_MODULE, argc, argv, |