now that the output depends on --verbose, enable it for stable releases

2004-07-20  Sven Neumann  <sven@gimp.org>

	* app/composite/gimp-composite.c (gimp_composite_init): now that
	the output depends on --verbose, enable it for stable releases also.
This commit is contained in:
Sven Neumann
2004-07-20 16:55:39 +00:00
committed by Sven Neumann
parent faa6e7b70d
commit aab25cdc36
2 changed files with 19 additions and 20 deletions

View File

@ -1,8 +1,14 @@
2004-07-20 Sven Neumann <sven@gimp.org>
* app/composite/gimp-composite.c (gimp_composite_init): now that
the output depends on --verbose, enable it for stable releases also.
2004-07-20 Shlomi Fish <shlomif@iglu.org.il> 2004-07-20 Shlomi Fish <shlomif@iglu.org.il>
* plug-ins/gimpressionist/presets.c: fixed the incorrect strings * plug-ins/gimpressionist/presets.c: fixed the incorrect strings
for input and output of the preset's fields. (a relic of an for input and output of the preset's fields. (a relic of an
irresponsible search-and-replace script). irresponsible search-and-replace script).
* plug-ins/gimpressionist/: normalized the identifiers of * plug-ins/gimpressionist/: normalized the identifiers of
orientmap.c. orientmap.c.
@ -41,7 +47,6 @@
* app/composite/gimp-composite-vis-test.c: * app/composite/gimp-composite-vis-test.c:
Regenerated sources via make-installer.py Regenerated sources via make-installer.py
2004-07-20 Sven Neumann <sven@gimp.org> 2004-07-20 Sven Neumann <sven@gimp.org>
* app/app_procs.c * app/app_procs.c

View File

@ -365,14 +365,12 @@ gimp_composite_init (gboolean be_verbose,
if (!use_cpu_accel) if (!use_cpu_accel)
gimp_composite_options.bits |= GIMP_COMPOSITE_OPTION_NOEXTENSIONS; gimp_composite_options.bits |= GIMP_COMPOSITE_OPTION_NOEXTENSIONS;
#ifdef GIMP_UNSTABLE
if (be_verbose) if (be_verbose)
{
g_printerr ("gimp_composite: use=%s, verbose=%s\n", g_printerr ("gimp_composite: use=%s, verbose=%s\n",
(gimp_composite_options.bits & GIMP_COMPOSITE_OPTION_USE) ? "yes" : "no", (gimp_composite_options.bits & GIMP_COMPOSITE_OPTION_USE) ?
(gimp_composite_options.bits & GIMP_COMPOSITE_OPTION_VERBOSE) ? "yes" : "no"); "yes" : "no",
} (gimp_composite_options.bits & GIMP_COMPOSITE_OPTION_VERBOSE) ?
#endif "yes" : "no");
gimp_composite_generic_install (); gimp_composite_generic_install ();
@ -402,9 +400,7 @@ gimp_composite_init (gboolean be_verbose,
gboolean can_use_altivec = gimp_composite_altivec_install (); gboolean can_use_altivec = gimp_composite_altivec_install ();
gboolean can_use_vis = gimp_composite_vis_install (); gboolean can_use_vis = gimp_composite_vis_install ();
#ifdef GIMP_UNSTABLE
if (be_verbose) if (be_verbose)
{
g_printerr ("Processor instruction sets: " g_printerr ("Processor instruction sets: "
"%cmmx %csse %csse2 %c3dnow %caltivec %cvis\n", "%cmmx %csse %csse2 %c3dnow %caltivec %cvis\n",
can_use_mmx ? '+' : '-', can_use_mmx ? '+' : '-',
@ -414,6 +410,4 @@ gimp_composite_init (gboolean be_verbose,
can_use_altivec ? '+' : '-', can_use_altivec ? '+' : '-',
can_use_vis ? '+' : '-'); can_use_vis ? '+' : '-');
} }
#endif
}
} }