• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

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.


Commit MetaInfo

Revision99a8e01d99a27ea6b244c47a724f7c6b5b6325f8 (tree)
Time2009-01-13 14:31:59
Authormakeinu <makeinu@aeae...>
Commitermakeinu

Log Message

Fix a compile error.

git-svn-id: https://gtkmmviewer.svn.sourceforge.net/svnroot/gtkmmviewer/gimageview/trunk@1209 aeae0eed-423c-0410-9251-95fb8af3d19f

Change Summary

Incremental Difference

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
11 2009-01-13 Takuro Ashie <ashie@homa.ne.jp>
22
3+ * src/gimv_image_win.c: Fix a compile error (without libexif).
4+
5+2009-01-13 Takuro Ashie <ashie@homa.ne.jp>
6+
37 * src/jpeg-data.[ch], src/jpeg-marker.[ch]: Moved from lib/libexif/.
48 * configure.ac, lib/Makefile.am, src/Makefile.am, src/gimv_image_view.c,
59 src/gimv_exif_view.[ch]:
--- a/src/gimv_image_win.c
+++ b/src/gimv_image_win.c
@@ -278,7 +278,9 @@ GtkItemFactoryEntry gimv_image_win_menu_items[] =
278278
279279 {N_("/_Edit"), NULL, NULL, 0, "<Branch>"},
280280 {N_("/_Edit/Edit _Comment..."), NULL, cb_edit_comment, 0, NULL},
281+#ifdef ENABLE_EXIF
281282 {N_("/_Edit/Scan E_XIF Data..."), NULL, cb_exif, 0, NULL},
283+#endif /* ENABLE_EXIF */
282284 {N_("/_Edit/Create _Thumbnail"), "<shift>T", cb_create_thumb, 0, NULL},
283285 {N_("/_Edit/---"), NULL, NULL, 0, "<Separator>"},
284286 {N_("/_Edit/_Options..."), "<control>O", cb_options, 0, NULL},