mirror of https://github.com/GNOME/gimp.git
Made 2.4.0-rc2 release.
2007-09-03 Michael Natterer <mitch@gimp.org> * Made 2.4.0-rc2 release. * app/Makefile.am (dist-dump-gimprc): added some sed voodoo to make sure the num-processors in the distributed gimprc and its manpage don't depend on the machine that does make dist. svn path=/trunk/; revision=23453
This commit is contained in:
parent
c85b228e4d
commit
d7da2573a1
10
ChangeLog
10
ChangeLog
|
@ -1,7 +1,15 @@
|
||||||
|
2007-09-03 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* Made 2.4.0-rc2 release.
|
||||||
|
|
||||||
|
* app/Makefile.am (dist-dump-gimprc): added some sed voodoo to
|
||||||
|
make sure the num-processors in the distributed gimprc and its
|
||||||
|
manpage don't depend on the machine that does make dist.
|
||||||
|
|
||||||
2007-09-03 Michael Natterer <mitch@gimp.org>
|
2007-09-03 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* app/core/gimp-transform-region.c: Applied slightly reformatted
|
* app/core/gimp-transform-region.c: Applied slightly reformatted
|
||||||
patch by Jakub Friedl and Daniel Hornung which ROUND()s the
|
patch from Jakub Friedl and Daniel Hornung which ROUND()s the
|
||||||
floating point result values before assigning them to integers to
|
floating point result values before assigning them to integers to
|
||||||
avoid reducing the output space to [0..254] (thus darkening the
|
avoid reducing the output space to [0..254] (thus darkening the
|
||||||
image). Fixes bug #472806.
|
image). Fixes bug #472806.
|
||||||
|
|
|
@ -220,13 +220,17 @@ endif
|
||||||
#
|
#
|
||||||
dist-dump-gimprc: gimp-console-$(GIMP_APP_VERSION)$(EXEEXT)
|
dist-dump-gimprc: gimp-console-$(GIMP_APP_VERSION)$(EXEEXT)
|
||||||
./$< --dump-gimprc-system > gimprc.tmp \
|
./$< --dump-gimprc-system > gimprc.tmp \
|
||||||
&& (cmp -s gimprc.tmp $(top_srcdir)/etc/gimprc || \
|
&& sed -e "s/num-processors [0-9]*/num-processors 1/" \
|
||||||
cp gimprc.tmp $(top_srcdir)/etc/gimprc) \
|
gimprc.tmp > gimprc.tmp2 \
|
||||||
&& rm gimprc.tmp
|
&& (cmp -s gimprc.tmp2 $(top_srcdir)/etc/gimprc || \
|
||||||
|
cp gimprc.tmp2 $(top_srcdir)/etc/gimprc) \
|
||||||
|
&& rm gimprc.tmp gimprc.tmp2
|
||||||
./$< --dump-gimprc-manpage > gimprc.tmp \
|
./$< --dump-gimprc-manpage > gimprc.tmp \
|
||||||
&& (cmp -s gimprc.tmp $(top_srcdir)/docs/gimprc.5.in || \
|
&& sed -e "s/num-processors [0-9]*/num-processors 1/" \
|
||||||
cp gimprc.tmp $(top_srcdir)/docs/gimprc.5.in) \
|
gimprc.tmp > gimprc.tmp2 \
|
||||||
&& rm gimprc.tmp
|
&& (cmp -s gimprc.tmp2 $(top_srcdir)/docs/gimprc.5.in ||\
|
||||||
|
cp gimprc.tmp2 $(top_srcdir)/docs/gimprc.5.in) \
|
||||||
|
&& rm gimprc.tmp gimprc.tmp2
|
||||||
|
|
||||||
dist-hook: dist-check-gimp-console dist-dump-gimprc
|
dist-hook: dist-check-gimp-console dist-dump-gimprc
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue