mirror of https://github.com/GNOME/gimp.git
print the value of $datarootdir in the summary.
2006-08-25 Sven Neumann <sven@gimp.org> * configure.in: print the value of $datarootdir in the summary. * app/base/tile-swap.c (tile_swap_in_attempt): fixed error handling in this unused function.
This commit is contained in:
parent
8caad39203
commit
232b11c188
11
ChangeLog
11
ChangeLog
|
@ -1,9 +1,16 @@
|
|||
2006-08-25 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* configure.in: print the value of $datarootdir in the summary.
|
||||
|
||||
* app/base/tile-swap.c (tile_swap_in_attempt): fixed error
|
||||
handling in this unused function.
|
||||
|
||||
2006-08-25 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/actions/file-actions.c (file_actions_setup)
|
||||
(file_actions_last_opened_update): if there are too few images in
|
||||
the document history, use the action's name as its label for the
|
||||
empty slots, to keep the translation of "" from showing up in the
|
||||
the document history, use the action's name as label for the empty
|
||||
slots, to keep the translation of "" from showing up in the
|
||||
shortcut editor.
|
||||
|
||||
2006-08-24 Sven Neumann <sven@gimp.org>
|
||||
|
|
|
@ -926,7 +926,7 @@ tile_swap_in_attempt (DefSwapFile *def_swap_file,
|
|||
def_swap_file->cur_position = tile->swap_offset;
|
||||
|
||||
if (lseek (fd, tile->swap_offset, SEEK_SET) == -1)
|
||||
return;
|
||||
goto out;
|
||||
}
|
||||
|
||||
tile_alloc (tile);
|
||||
|
@ -943,7 +943,8 @@ tile_swap_in_attempt (DefSwapFile *def_swap_file,
|
|||
if (err <= 0)
|
||||
{
|
||||
g_free (tile->data);
|
||||
return;
|
||||
tile->data = NULL;
|
||||
goto out;
|
||||
}
|
||||
|
||||
nleft -= err;
|
||||
|
|
|
@ -1856,7 +1856,7 @@ AC_OUTPUT
|
|||
|
||||
dnl Print a summary of features enabled/disabled:
|
||||
AC_MSG_RESULT([
|
||||
Building GIMP with prefix=$prefix
|
||||
Building GIMP with prefix=$prefix, datarootdir=$datarootdir
|
||||
Desktop files install into $DESKTOP_DATADIR
|
||||
|
||||
Extra Binaries:
|
||||
|
|
Loading…
Reference in New Issue