diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-07-28 00:42:11 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-07-28 00:42:11 +0800 |
commit | 08de5e9e147248b84bc1fa618f7cc9d892ddb136 (patch) | |
tree | 4d1b07578b9152c2c94318d70cf06083fc4145bd /widgets | |
parent | f0d21ded368b4fc2bc2285767f08587c5a821185 (diff) | |
download | gsoc2013-evolution-08de5e9e147248b84bc1fa618f7cc9d892ddb136.tar.gz gsoc2013-evolution-08de5e9e147248b84bc1fa618f7cc9d892ddb136.tar.zst gsoc2013-evolution-08de5e9e147248b84bc1fa618f7cc9d892ddb136.zip |
Collect all the required package versions in one place and explicitly
2007-07-27 Matthew Barnes <mbarnes@redhat.com>
* configure.in:
Collect all the required package versions in one place and
explicitly require GTK+ 2.10 or higher. (#380354)
* Adapt various Makefile.am files.
svn path=/trunk/; revision=33863
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/ChangeLog | 6 | ||||
-rw-r--r-- | widgets/misc/ChangeLog | 6 | ||||
-rw-r--r-- | widgets/misc/Makefile.am | 4 | ||||
-rw-r--r-- | widgets/table/ChangeLog | 6 | ||||
-rw-r--r-- | widgets/table/Makefile.am | 4 | ||||
-rw-r--r-- | widgets/text/Makefile.am | 4 |
6 files changed, 24 insertions, 6 deletions
diff --git a/widgets/ChangeLog b/widgets/ChangeLog index 49be5eaf93..a58f6539e6 100644 --- a/widgets/ChangeLog +++ b/widgets/ChangeLog @@ -1,3 +1,9 @@ +2007-07-27 Matthew Barnes <mbarnes@redhat.com> + + * text/Makefile.am: + Rename EXTRA_GNOME_CFLAGS to GNOME_PLATFORM_CFLAGS. + Similarly for EXTRA_GNOME_LIBS. + 2007-07-26 Hiroyuki Ikezoe <poincare@ikezoe.net> * text/e-text.c: (e_text_dispose): Plugged memory leak. diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index a99b9b31ce..2529923031 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,9 @@ +2007-07-27 Matthew Barnes <mbarnes@redhat.com> + + * Makefile.am: + Rename EXTRA_GNOME_CFLAGS to GNOME_PLATFORM_CFLAGS. + Similarly for EXTRA_GNOME_LIBS. + 2007-07-09 Chenthill Palanisamy <pchenthill@novell.com> Fixes #387844 diff --git a/widgets/misc/Makefile.am b/widgets/misc/Makefile.am index 24930ec79c..fb8997f4a5 100644 --- a/widgets/misc/Makefile.am +++ b/widgets/misc/Makefile.am @@ -10,7 +10,7 @@ INCLUDES = \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ -DG_LOG_DOMAIN=__FILE__ \ $(EVOLUTION_MAIL_CFLAGS) \ - $(EXTRA_GNOME_CFLAGS) \ + $(GNOME_PLATFORM_CFLAGS) \ $(ICONV_CFLAGS) @@ -133,7 +133,7 @@ libemiscwidgets_la_LIBADD = $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/a11y/widgets/libevolution-widgets-a11y.la \ $(top_builddir)/a11y/libevolution-a11y.la \ $(CAMEL_LIBS) \ - $(EXTRA_GNOME_LIBS) \ + $(GNOME_PLATFORM_LIBS) \ $(ICONV_LIBS) libefilterbar_la_SOURCES = \ diff --git a/widgets/table/ChangeLog b/widgets/table/ChangeLog index f4a5ec9560..b0313a186b 100644 --- a/widgets/table/ChangeLog +++ b/widgets/table/ChangeLog @@ -1,3 +1,9 @@ +2007-07-27 Matthew Barnes <mbarnes@redhat.com> + + * Makefile.am: + Rename EXTRA_GNOME_CFLAGS to GNOME_PLATFORM_CFLAGS. + Similarly for EXTRA_GNOME_LIBS. + 2007-07-27 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #323522 diff --git a/widgets/table/Makefile.am b/widgets/table/Makefile.am index 815ba8a784..c1ffba1912 100644 --- a/widgets/table/Makefile.am +++ b/widgets/table/Makefile.am @@ -13,7 +13,7 @@ INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ $(E_WIDGETS_CFLAGS) \ - $(EXTRA_GNOME_CFLAGS) \ + $(GNOME_PLATFORM_CFLAGS) \ -DEVOLUTION_GLADEDIR=\"$(gladedir)\" \ -DG_LOG_DOMAIN=\"e-table\" @@ -155,7 +155,7 @@ libetable_la_LIBADD = \ $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/a11y/libevolution-a11y.la \ $(E_WIDGETS_LIBS) \ - $(EXTRA_GNOME_LIBS) + $(GNOME_PLATFORM_LIBS) icons = \ add-col.xpm \ diff --git a/widgets/text/Makefile.am b/widgets/text/Makefile.am index 508178fda3..c348e039c6 100644 --- a/widgets/text/Makefile.am +++ b/widgets/text/Makefile.am @@ -5,7 +5,7 @@ endif INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ - $(EXTRA_GNOME_CFLAGS) \ + $(GNOME_PLATFORM_CFLAGS) \ -DG_LOG_DOMAIN=\"e-text\" @@ -44,5 +44,5 @@ libetext_la_LIBADD = \ $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/a11y/libevolution-a11y.la \ $(top_builddir)/widgets/table/libetable.la \ - $(EXTRA_GNOME_LIBS) \ + $(GNOME_PLATFORM_LIBS) \ $(REGEX_LIBS) |