GImageView is a GTK+ based image viewer which supports tabbed browsing, thumbnail table views, directory tree views and drag and drop. It also support movies using the Xine library and MPlayer, and supports images in compressed archive formats.
Revision | 99a8e01d99a27ea6b244c47a724f7c6b5b6325f8 (tree) |
---|---|
Time | 2009-01-13 14:31:59 |
Author | makeinu <makeinu@aeae...> |
Commiter | makeinu |
Fix a compile error.
git-svn-id: https://gtkmmviewer.svn.sourceforge.net/svnroot/gtkmmviewer/gimageview/trunk@1209 aeae0eed-423c-0410-9251-95fb8af3d19f
@@ -1,5 +1,9 @@ | ||
1 | 1 | 2009-01-13 Takuro Ashie <ashie@homa.ne.jp> |
2 | 2 | |
3 | + * src/gimv_image_win.c: Fix a compile error (without libexif). | |
4 | + | |
5 | +2009-01-13 Takuro Ashie <ashie@homa.ne.jp> | |
6 | + | |
3 | 7 | * src/jpeg-data.[ch], src/jpeg-marker.[ch]: Moved from lib/libexif/. |
4 | 8 | * configure.ac, lib/Makefile.am, src/Makefile.am, src/gimv_image_view.c, |
5 | 9 | src/gimv_exif_view.[ch]: |
@@ -278,7 +278,9 @@ GtkItemFactoryEntry gimv_image_win_menu_items[] = | ||
278 | 278 | |
279 | 279 | {N_("/_Edit"), NULL, NULL, 0, "<Branch>"}, |
280 | 280 | {N_("/_Edit/Edit _Comment..."), NULL, cb_edit_comment, 0, NULL}, |
281 | +#ifdef ENABLE_EXIF | |
281 | 282 | {N_("/_Edit/Scan E_XIF Data..."), NULL, cb_exif, 0, NULL}, |
283 | +#endif /* ENABLE_EXIF */ | |
282 | 284 | {N_("/_Edit/Create _Thumbnail"), "<shift>T", cb_create_thumb, 0, NULL}, |
283 | 285 | {N_("/_Edit/---"), NULL, NULL, 0, "<Separator>"}, |
284 | 286 | {N_("/_Edit/_Options..."), "<control>O", cb_options, 0, NULL}, |