diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-08 23:33:26 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-08 23:33:26 +0800 |
commit | 10256b2ff6a49d5283ca281ea0068e1acbe7686e (patch) | |
tree | d6738bead4c91e36a16a2a0e325749d216711cfe /configure.in | |
parent | d368e97a37dbd9ed2163f0a446fa3723ed57c732 (diff) | |
download | gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.tar gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.tar.gz gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.tar.bz2 gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.tar.lz gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.tar.xz gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.tar.zst gsoc2013-epiphany-10256b2ff6a49d5283ca281ea0068e1acbe7686e.zip |
R lib/widgets/ephy-ellipsizing-label.c: R
2004-08-08 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-marshal.list:
* lib/widgets/Makefile.am:
R lib/widgets/ephy-ellipsizing-label.c:
R lib/widgets/ephy-ellipsizing-label.h:
A lib/widgets/ephy-label.c:
A lib/widgets/ephy-label.h:
* src/ephy-notebook.c: (sync_label), (build_tab_label):
* src/pdm-dialog.c: (show_cookies_properties):
* src/prefs-dialog.c: (create_download_path_label),
(download_path_response_cb):
Kill our ellipsizing label implementation, and import GtkLabel
into our prefix.
* configure.in:
Depend on pango 1.5.1 for ellipsisation support.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 963024fca..3e5413657 100644 --- a/configure.in +++ b/configure.in @@ -18,6 +18,7 @@ AM_MAINTAINER_MODE AC_PROG_INTLTOOL([0.29]) GLIB_REQUIRED=2.4.1 +PANGO_REQUIRED=1.5.1 GTK_REQUIRED=2.4.0 LIBXML_REQUIRED=2.6.6 LIBGNOMEVFS_REQUIRED=2.3.1 @@ -25,6 +26,7 @@ LIBGLADE_REQUIRED=2.3.1 LIBGNOMEUI_REQUIRED=2.6.0 AC_SUBST(GLIB_REQUIRED) +AC_SUBST(PANGO_REQUIRED) AC_SUBST(GTK_REQUIRED) AC_SUBST(LIBXML_REQUIRED) AC_SUBST(LIBGNOMEVFS_REQUIRED) @@ -51,6 +53,7 @@ GNOME_COMPILE_WARNINGS(error) PKG_CHECK_MODULES(EPIPHANY_DEPENDENCY, \ glib-2.0 >= $GLIB_REQUIRED \ + pango >= $PANGO_REQUIRED \ gtk+-2.0 >= $GTK_REQUIRED \ libxml-2.0 >= $LIBXML_REQUIRED \ libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED \ |