From: Lutz M. <lu...@us...> - 2004-10-17 13:54:32
|
Update of /cvsroot/libexif/libexif-gtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27336 Modified Files: ChangeLog configure.in Makefile.am Log Message: 2004-10-17 Lutz Mueller <lu...@us...> First part of a patch to get libexif-gtk to compile again against current gtk. For now, libexif-gtk does not compile at all. * gtk-extensions/gtk-option-menu-option.[c,h]: Removed. * libexif-gtk/gtk-exif-browser.c: Redirect EXPOSURE_PROGRAM to the generic entry. * libexif-gtk/gtk-exif-tag-menu.[c,h]: Removed. * libexif-gtk/gtk-exif-entry-exposure.[c,h]: Removed. Now covered by the generic entry. * configure.in: CURRENT = 5. Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ChangeLog 1 Aug 2003 20:43:00 -0000 1.16 +++ ChangeLog 17 Oct 2004 13:54:23 -0000 1.17 @@ -1,3 +1,16 @@ +2004-10-17 Lutz Mueller <lu...@us...> + + First part of a patch to get libexif-gtk to compile again against + current gtk. For now, libexif-gtk does not compile at all. + + * gtk-extensions/gtk-option-menu-option.[c,h]: Removed. + * libexif-gtk/gtk-exif-browser.c: Redirect EXPOSURE_PROGRAM to + the generic entry. + * libexif-gtk/gtk-exif-tag-menu.[c,h]: Removed. + * libexif-gtk/gtk-exif-entry-exposure.[c,h]: Removed. Now covered + by the generic entry. + * configure.in: CURRENT = 5. + 2003-08-01 Lutz Mueller <lu...@us...> * libexif-gtk/gtk-exif-browser.c: Implement removal of entries. Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/Makefile.am,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile.am 17 Nov 2002 17:17:20 -0000 1.7 +++ Makefile.am 17 Oct 2004 13:54:23 -0000 1.8 @@ -1 +1,5 @@ -SUBDIRS = gtk-extensions libexif-gtk tests po +SUBDIRS = m4 gtk-extensions libexif-gtk tests po + +ACLOCAL_AMFLAGS = -I m4 + +EXTRA_DIST = config.rpath mkinstalldirs Index: configure.in =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/configure.in,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- configure.in 13 Apr 2003 10:45:22 -0000 1.18 +++ configure.in 17 Oct 2004 13:54:23 -0000 1.19 @@ -1,8 +1,8 @@ AC_PREREQ(2.50) AC_INIT(libexif-gtk/gtk-exif-browser.c) -AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE(libexif-gtk, 0.3.3) AM_MAINTAINER_MODE +AC_CONFIG_HEADERS(config.h) AC_ISC_POSIX AC_PROG_CC @@ -21,7 +21,7 @@ dnl --------------------------------------------------------------------------- LIBEXIF_GTK_AGE=0 LIBEXIF_GTK_REVISION=0 -LIBEXIF_GTK_CURRENT=4 +LIBEXIF_GTK_CURRENT=5 AC_SUBST(LIBEXIF_GTK_AGE) AC_SUBST(LIBEXIF_GTK_REVISION) AC_SUBST(LIBEXIF_GTK_CURRENT) @@ -49,7 +49,7 @@ CFLAGS="$CFLAGS -Wall -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith" AC_SUBST(CFLAGS) -AC_OUTPUT([ +AC_OUTPUT([ po/Makefile.in m4/Makefile Makefile libexif-gtk/Makefile libexif-gtk/libexif-gtk.pc |