~vcs-imports/evolution/+git/evolution:gnome-3-1-90

Last commit made on 2011-08-31
Get this branch:
git clone -b gnome-3-1-90 https://git.launchpad.net/~vcs-imports/evolution/+git/evolution

Branch merges

Branch information

Name:
gnome-3-1-90
Repository:
lp:~vcs-imports/evolution/+git/evolution

Recent commits

bdc331b... by Matthew Barnes

NEWS update for 3.1.90.1 release.

6fef2f3... by Frédéric Péters

Bug 657765 - Explicitly link libgnomecanvas against libm

We used to implicitly link to libm through gtk+, but that got dropped.

http://mail.gnome.org/archives/desktop-devel-list/2011-August/msg00236.html

798966d... by Matthew Barnes

NEWS update for 3.1.90 release.

5e3b6a4... by Matthew Barnes

Fix build break in libeshell.

51b84a7... by Fran Dieguez <email address hidden>

Updated galician translations

445dabb... by Fran Dieguez <email address hidden>

Updated Galician translations

05c2282... by Jorge González

Updated Spanish translation

ef004d5... by Jorge González

Updated Spanish translation

5481c26... by Yuri Myasoedov

Updated Russian translation

aa3b6c5... by Matthew Barnes

Fix enum generation problems in glib-gen.mak.

Don't use pattern rules like %-enumtypes.h anymore because it matches
installed header files like camel-enumtypes.h, so you get very strange
things happening during the build like:

    .../camel/camel-enumtypes.h: e-util-enums.h
            glib-mkenums ... $^ > $@

when e-util-enums.h has a newer timestamp than camel-enumtypes.h.

Instead, we'll use another variable name -- glib_enum_output -- to
replace the %-enumtypes pattern rules like so:

    $(glib_enum_output).h: $(glib_enum_headers)
            glib-mkenums ... $^ > $@

    $(glib_enum_output).c: $(glib_enum_headers)
            glib-mkenums ... $^ > $@

Also use $(AM_V_GEN) to get cleaner looking output while building.