You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(22) |
Sep
(57) |
Oct
(39) |
Nov
(93) |
Dec
(72) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(15) |
Feb
(8) |
Mar
(12) |
Apr
(25) |
May
(2) |
Jun
|
Jul
(11) |
Aug
(32) |
Sep
(18) |
Oct
(53) |
Nov
|
Dec
(11) |
2004 |
Jan
(19) |
Feb
(1) |
Mar
(15) |
Apr
(17) |
May
(56) |
Jun
(19) |
Jul
(6) |
Aug
(16) |
Sep
(44) |
Oct
(31) |
Nov
(36) |
Dec
(13) |
2005 |
Jan
(2) |
Feb
(41) |
Mar
(304) |
Apr
(176) |
May
(19) |
Jun
(33) |
Jul
(14) |
Aug
(21) |
Sep
(4) |
Oct
(3) |
Nov
|
Dec
(8) |
2006 |
Jan
(18) |
Feb
(9) |
Mar
(5) |
Apr
(2) |
May
(2) |
Jun
(4) |
Jul
(2) |
Aug
|
Sep
(7) |
Oct
(10) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
(3) |
Mar
(1) |
Apr
(4) |
May
(124) |
Jun
(59) |
Jul
(1) |
Aug
(13) |
Sep
(3) |
Oct
(11) |
Nov
(30) |
Dec
(35) |
2008 |
Jan
(31) |
Feb
(42) |
Mar
(4) |
Apr
(5) |
May
(2) |
Jun
(12) |
Jul
(8) |
Aug
(2) |
Sep
(4) |
Oct
(5) |
Nov
(89) |
Dec
(23) |
2009 |
Jan
(71) |
Feb
(5) |
Mar
(8) |
Apr
(7) |
May
(8) |
Jun
(7) |
Jul
|
Aug
(4) |
Sep
(58) |
Oct
(74) |
Nov
(53) |
Dec
(32) |
2010 |
Jan
(8) |
Feb
(13) |
Mar
(4) |
Apr
|
May
|
Jun
(10) |
Jul
(1) |
Aug
(2) |
Sep
(12) |
Oct
(17) |
Nov
(2) |
Dec
(24) |
2011 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(24) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
(20) |
Mar
(18) |
Apr
|
May
|
Jun
|
Jul
(5) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(12) |
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(8) |
Jun
|
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(5) |
From: <lu...@us...> - 2002-10-22 19:53:56
|
Update of /cvsroot/libexif/exif In directory usw-pr-cvs1:/tmp/cvs-serv24198 Modified Files: ChangeLog Log Message: 2002-10-22 Lutz Müller <lu...@us...> * exif/main.c: Print usage if no arguments are given. Save modified files on --remove-ifd and --remove. Try to avoid a segfault. Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/exif/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- ChangeLog 22 Oct 2002 19:49:23 -0000 1.19 +++ ChangeLog 22 Oct 2002 19:53:53 -0000 1.20 @@ -1,7 +1,7 @@ 2002-10-22 Lutz Müller <lu...@us...> * exif/main.c: Print usage if no arguments are given. Save modified - files on --remove-ifd and --remove. + files on --remove-ifd and --remove. Try to avoid a segfault. 2002-10-21 Lutz Müller <lu...@us...> |
From: <lu...@us...> - 2002-10-22 19:49:27
|
Update of /cvsroot/libexif/exif/exif In directory usw-pr-cvs1:/tmp/cvs-serv21161/exif Modified Files: main.c Log Message: 2002-10-22 Lutz Müller <lu...@us...> * exif/main.c: Print usage if no arguments are given. Save modified files on --remove-ifd and --remove. Index: main.c =================================================================== RCS file: /cvsroot/libexif/exif/exif/main.c,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- main.c 21 Oct 2002 20:03:34 -0000 1.23 +++ main.c 22 Oct 2002 19:49:23 -0000 1.24 @@ -373,6 +373,9 @@ } ed->size = 0; + /* Save the new data. */ + save_exif_data_to_file (ed, *args, fname); + } else if (ithumbnail) { /* Get rid of the old thumbnail */ @@ -537,7 +540,8 @@ } if (!tag) { - while (ed->ifd[ifd]->count) + while (ed->ifd[ifd] && + ed->ifd[ifd]->count) exif_content_remove_entry ( ed->ifd[ifd], ed->ifd[ifd]->entries[0]); @@ -556,12 +560,17 @@ exif_content_remove_entry (ed->ifd[ifd], e); } + + /* Save modified data. */ + save_exif_data_to_file (ed, *args, fname); + } else action_tag_list (*args, ed, eo.use_ids); exif_data_unref (ed); args++; } - } + } else + poptPrintUsage (ctx, stdout, 0); poptFreeContext (ctx); |
From: <lu...@us...> - 2002-10-22 19:49:26
|
Update of /cvsroot/libexif/exif In directory usw-pr-cvs1:/tmp/cvs-serv21161 Modified Files: ChangeLog Log Message: 2002-10-22 Lutz Müller <lu...@us...> * exif/main.c: Print usage if no arguments are given. Save modified files on --remove-ifd and --remove. Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/exif/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- ChangeLog 22 Oct 2002 10:34:57 -0000 1.18 +++ ChangeLog 22 Oct 2002 19:49:23 -0000 1.19 @@ -1,3 +1,8 @@ +2002-10-22 Lutz Müller <lu...@us...> + + * exif/main.c: Print usage if no arguments are given. Save modified + files on --remove-ifd and --remove. + 2002-10-21 Lutz Müller <lu...@us...> * exif/main.c: --remove-thumbnail and --remove [tag,ifd] as |
From: <as...@us...> - 2002-10-22 10:35:01
|
Update of /cvsroot/libexif/exif In directory usw-pr-cvs1:/tmp/cvs-serv2259 Modified Files: ChangeLog Log Message: FIx gettextize ChangeLog msg Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/exif/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ChangeLog 21 Oct 2002 20:03:33 -0000 1.17 +++ ChangeLog 22 Oct 2002 10:34:57 -0000 1.18 @@ -14,10 +14,6 @@ * exif/actions.c: IRIS fixes by Andrea Suatoni <a.s...@te...> -2002-09-16 gettextize <bug...@gn...> - - * configure.in (AC_OUTPUT): Add intl/Makefile. - 2002-09-15 Lutz Müller <lu...@us...> * configure.in: |
From: <lu...@us...> - 2002-10-21 20:03:36
|
Update of /cvsroot/libexif/exif/exif In directory usw-pr-cvs1:/tmp/cvs-serv1577/exif Modified Files: main.c Log Message: 2002-10-21 Lutz Müller <lu...@us...> * exif/main.c: --remove-thumbnail and --remove [tag,ifd] as requested by Marko Mäkelä <Mar...@HU...>. Index: main.c =================================================================== RCS file: /cvsroot/libexif/exif/exif/main.c,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- main.c 21 Oct 2002 19:48:06 -0000 1.22 +++ main.c 21 Oct 2002 20:03:34 -0000 1.23 @@ -194,7 +194,7 @@ /* POPT_ARG_NONE needs an int, not char! */ unsigned int list_tags = 0, show_description = 0; unsigned int extract_thumbnail = 0, remove_thumbnail = 0; - unsigned int remove_tag = 0; + unsigned int remove = 0; const char *set_value = NULL, *ifd_string = NULL, *tag_string = NULL; ExifIfd ifd = -1; ExifTag tag = 0; @@ -212,8 +212,8 @@ N_("Select IFD"), N_("IFD")}, {"list-tags", 'l', POPT_ARG_NONE, &list_tags, 0, N_("List all EXIF tags"), NULL}, - {"remove", '\0', POPT_ARG_NONE, &remove_tag, 0, - N_("Remove tag"), NULL}, + {"remove", '\0', POPT_ARG_NONE, &remove, 0, + N_("Remove tag or ifd"), NULL}, {"show-description", 's', POPT_ARG_NONE, &show_description, 0, N_("Show description of tag"), NULL}, {"extract-thumbnail", 'e', POPT_ARG_NONE, &extract_thumbnail, 0, @@ -526,35 +526,36 @@ } } save_exif_data_to_file (ed, *args, fname); - } else if (remove_tag) { + } else if (remove) { - /* We need a tag... */ - if (!tag) { - fprintf (stderr, _("You need to " - "specify a tag!")); - fputc ('\n', stderr); - return (1); - } - - /* ... and an IFD. */ + /* We need an IFD. */ if (ifd < 0) { fprintf (stderr, _("You need to " "specify an IFD!")); fputc ('\n', stderr); return (1); } - - e = exif_content_get_entry (ed->ifd[ifd], tag); - if (!e) { - fprintf (stderr, _("IFD '%s' does " - "not contain a tag '%s'!"), - exif_ifd_get_name (ifd), - exif_tag_get_name (tag)); - fputc ('\n', stderr); - return (1); - } - exif_content_remove_entry (ed->ifd[ifd], e); + if (!tag) { + while (ed->ifd[ifd]->count) + exif_content_remove_entry ( + ed->ifd[ifd], + ed->ifd[ifd]->entries[0]); + } else { + e = exif_content_get_entry ( + ed->ifd[ifd], tag); + if (!e) { + fprintf (stderr, _("IFD '%s' " + "does not contain a " + "tag '%s'!"), + exif_ifd_get_name (ifd), + exif_tag_get_name (tag)); + fputc ('\n', stderr); + return (1); + } + exif_content_remove_entry (ed->ifd[ifd], + e); + } } else action_tag_list (*args, ed, eo.use_ids); exif_data_unref (ed); |
From: <lu...@us...> - 2002-10-21 20:03:36
|
Update of /cvsroot/libexif/exif In directory usw-pr-cvs1:/tmp/cvs-serv1577 Modified Files: ChangeLog Log Message: 2002-10-21 Lutz Müller <lu...@us...> * exif/main.c: --remove-thumbnail and --remove [tag,ifd] as requested by Marko Mäkelä <Mar...@HU...>. Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/exif/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- ChangeLog 21 Oct 2002 19:48:05 -0000 1.16 +++ ChangeLog 21 Oct 2002 20:03:33 -0000 1.17 @@ -1,7 +1,7 @@ 2002-10-21 Lutz Müller <lu...@us...> - * exif/main.c: --remove-thumbnail and --remove [tag] as requested by - Marko Mäkelä <Mar...@HU...>. + * exif/main.c: --remove-thumbnail and --remove [tag,ifd] as + requested by Marko Mäkelä <Mar...@HU...>. 2002-09-16 Lutz Müller <lu...@us...> |
From: <lu...@us...> - 2002-10-21 19:48:09
|
Update of /cvsroot/libexif/exif/exif In directory usw-pr-cvs1:/tmp/cvs-serv18361/exif Modified Files: main.c Log Message: 2002-10-21 Lutz Müller <lu...@us...> * exif/main.c: --remove-thumbnail and --remove [tag] as requested by Marko Mäkelä <Mar...@HU...>. Index: main.c =================================================================== RCS file: /cvsroot/libexif/exif/exif/main.c,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- main.c 15 Sep 2002 21:55:27 -0000 1.21 +++ main.c 21 Oct 2002 19:48:06 -0000 1.22 @@ -193,7 +193,8 @@ { /* POPT_ARG_NONE needs an int, not char! */ unsigned int list_tags = 0, show_description = 0; - unsigned int extract_thumbnail = 0; + unsigned int extract_thumbnail = 0, remove_thumbnail = 0; + unsigned int remove_tag = 0; const char *set_value = NULL, *ifd_string = NULL, *tag_string = NULL; ExifIfd ifd = -1; ExifTag tag = 0; @@ -211,10 +212,14 @@ N_("Select IFD"), N_("IFD")}, {"list-tags", 'l', POPT_ARG_NONE, &list_tags, 0, N_("List all EXIF tags"), NULL}, + {"remove", '\0', POPT_ARG_NONE, &remove_tag, 0, + N_("Remove tag"), NULL}, {"show-description", 's', POPT_ARG_NONE, &show_description, 0, N_("Show description of tag"), NULL}, {"extract-thumbnail", 'e', POPT_ARG_NONE, &extract_thumbnail, 0, N_("Extract thumbnail"), NULL}, + {"remove-thumbnail", 'r', POPT_ARG_NONE, &remove_thumbnail, 0, + N_("Remove thumbnail"), NULL}, {"insert-thumbnail", 'n', POPT_ARG_STRING, &ithumbnail, 0, N_("Insert FILE as thumbnail"), N_("FILE")}, {"output", 'o', POPT_ARG_STRING, &output, 0, @@ -359,6 +364,15 @@ fname); fprintf (stdout, "\n"); + } else if (remove_thumbnail) { + + /* Get rid of the thumbnail */ + if (ed->data) { + free (ed->data); + ed->data = NULL; + } + ed->size = 0; + } else if (ithumbnail) { /* Get rid of the old thumbnail */ @@ -368,6 +382,7 @@ } ed->size = 0; + /* Insert new thumbnail */ f = fopen (ithumbnail, "rb"); if (!f) { #ifdef __GNUC__ @@ -511,6 +526,35 @@ } } save_exif_data_to_file (ed, *args, fname); + } else if (remove_tag) { + + /* We need a tag... */ + if (!tag) { + fprintf (stderr, _("You need to " + "specify a tag!")); + fputc ('\n', stderr); + return (1); + } + + /* ... and an IFD. */ + if (ifd < 0) { + fprintf (stderr, _("You need to " + "specify an IFD!")); + fputc ('\n', stderr); + return (1); + } + + e = exif_content_get_entry (ed->ifd[ifd], tag); + if (!e) { + fprintf (stderr, _("IFD '%s' does " + "not contain a tag '%s'!"), + exif_ifd_get_name (ifd), + exif_tag_get_name (tag)); + fputc ('\n', stderr); + return (1); + } + + exif_content_remove_entry (ed->ifd[ifd], e); } else action_tag_list (*args, ed, eo.use_ids); exif_data_unref (ed); |
From: <lu...@us...> - 2002-10-21 19:48:09
|
Update of /cvsroot/libexif/exif In directory usw-pr-cvs1:/tmp/cvs-serv18361 Modified Files: ChangeLog Log Message: 2002-10-21 Lutz Müller <lu...@us...> * exif/main.c: --remove-thumbnail and --remove [tag] as requested by Marko Mäkelä <Mar...@HU...>. Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/exif/ChangeLog,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- ChangeLog 15 Sep 2002 22:10:46 -0000 1.15 +++ ChangeLog 21 Oct 2002 19:48:05 -0000 1.16 @@ -1,3 +1,8 @@ +2002-10-21 Lutz Müller <lu...@us...> + + * exif/main.c: --remove-thumbnail and --remove [tag] as requested by + Marko Mäkelä <Mar...@HU...>. + 2002-09-16 Lutz Müller <lu...@us...> * exif.1: Donated by Thomas Pircher <tho...@gm...> @@ -5,8 +10,8 @@ 2002-09-15 Lutz Müller <lu...@us...> * configure.in: - * src/main.c: - * src/actions.c: IRIS fixes by Andrea Suatoni + * exif/main.c: + * exif/actions.c: IRIS fixes by Andrea Suatoni <a.s...@te...> 2002-09-16 gettextize <bug...@gn...> |
From: <hu...@us...> - 2002-10-17 17:07:26
|
Update of /cvsroot/libexif/gexif In directory usw-pr-cvs1:/tmp/cvs-serv13112 Modified Files: autogen.sh Log Message: doesnt't build without libtool Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/gexif/autogen.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- autogen.sh 5 Oct 2002 18:10:53 -0000 1.5 +++ autogen.sh 17 Oct 2002 17:07:23 -0000 1.6 @@ -46,6 +46,14 @@ DIE=1 } +(libtool --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have libtool installed to compile $PROJECT." + echo "Download the appropriate package for your distribution," + echo "or get the source tarball at ftp://ftp.gnu.org/gnu/libtool/" + DIE=1 +} + (automake${AUTOMAKE_SUFFIX} --version) < /dev/null > /dev/null 2>&1 || { echo echo "You must have automake installed to compile $PROJECT." @@ -134,6 +142,12 @@ ( sed -e 's#\(^SUBDIRS.*\)$#\1 intl#' Makefile.am >Makefile.am.new \ && mv Makefile.am.new Makefile.am ) esac + + echo "Cleaning stuff generated by libtoolize" + rm -f ltmain.sh config.guess config.sub + + echo "Running libtoolize --copy" + libtoolize --copy || fail echo "Cleaning stuff generated by aclocal" rm -f aclocal.m4 |
From: <as...@us...> - 2002-10-05 18:11:24
|
Update of /cvsroot/libexif/libexif-gtk In directory usw-pr-cvs1:/tmp/cvs-serv1120 Modified Files: autogen.sh Log Message: Add cleanup stuff for gettextize modified files Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/autogen.sh,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- autogen.sh 30 Sep 2002 12:26:08 -0000 1.6 +++ autogen.sh 5 Oct 2002 18:11:21 -0000 1.7 @@ -111,6 +111,12 @@ rm -f "m4/$file" done rm -rf intl/ + grep "intl/Makefile" configure.in > /dev/null && + ( sed -e 's#^AC_OUTPUT(\[.*intl/Makefile po/Makefile.in#AC_OUTPUT(\[#' \ + configure.in >configure.in.new && mv configure.in.new configure.in ) + grep "SUBDIRS.*intl" Makefile.am > /dev/null && + ( sed -e 's#\(^SUBDIRS.*\) intl#\1#' Makefile.am >Makefile.am.new \ + && mv Makefile.am.new Makefile.am ) echo "Running gettextize --copy $gettext_opt" gettextize --copy $gettext_opt || fail |
From: <as...@us...> - 2002-10-05 18:11:18
|
Update of /cvsroot/libexif/libexif In directory usw-pr-cvs1:/tmp/cvs-serv1074 Modified Files: autogen.sh Log Message: Add cleanup stuff for gettextize modified files Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/libexif/autogen.sh,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- autogen.sh 30 Sep 2002 12:26:01 -0000 1.9 +++ autogen.sh 5 Oct 2002 18:11:14 -0000 1.10 @@ -111,6 +111,12 @@ rm -f "m4/$file" done rm -rf intl/ + grep "intl/Makefile" configure.in > /dev/null && + ( sed -e 's#^AC_OUTPUT(\[.*intl/Makefile po/Makefile.in#AC_OUTPUT(\[#' \ + configure.in >configure.in.new && mv configure.in.new configure.in ) + grep "SUBDIRS.*intl" Makefile.am > /dev/null && + ( sed -e 's#\(^SUBDIRS.*\) intl#\1#' Makefile.am >Makefile.am.new \ + && mv Makefile.am.new Makefile.am ) echo "Running gettextize --copy $gettext_opt" gettextize --copy $gettext_opt || fail |
From: <as...@us...> - 2002-10-05 18:10:56
|
Update of /cvsroot/libexif/gexif In directory usw-pr-cvs1:/tmp/cvs-serv913 Modified Files: autogen.sh Log Message: Add cleanup stuff for gettextize modified files Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/gexif/autogen.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- autogen.sh 30 Sep 2002 12:25:39 -0000 1.4 +++ autogen.sh 5 Oct 2002 18:10:53 -0000 1.5 @@ -111,6 +111,12 @@ rm -f "m4/$file" done rm -rf intl/ + grep "intl/Makefile" configure.in > /dev/null && + ( sed -e 's#^AC_OUTPUT(\[.*intl/Makefile po/Makefile.in#AC_OUTPUT(\[#' \ + configure.in >configure.in.new && mv configure.in.new configure.in ) + grep "SUBDIRS.*intl" Makefile.am > /dev/null && + ( sed -e 's#\(^SUBDIRS.*\) intl#\1#' Makefile.am >Makefile.am.new \ + && mv Makefile.am.new Makefile.am ) echo "Running gettextize --copy $gettext_opt" gettextize --copy $gettext_opt || fail |
From: <as...@us...> - 2002-10-05 18:10:50
|
Update of /cvsroot/libexif/exif In directory usw-pr-cvs1:/tmp/cvs-serv823 Modified Files: autogen.sh Log Message: Add cleanup stuff for gettextize modified files Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/exif/autogen.sh,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- autogen.sh 30 Sep 2002 12:25:32 -0000 1.6 +++ autogen.sh 5 Oct 2002 18:10:45 -0000 1.7 @@ -111,6 +111,12 @@ rm -f "m4/$file" done rm -rf intl/ + grep "intl/Makefile" configure.in > /dev/null && + ( sed -e 's#^AC_OUTPUT(\[.*intl/Makefile po/Makefile.in#AC_OUTPUT(\[#' \ + configure.in >configure.in.new && mv configure.in.new configure.in ) + grep "SUBDIRS.*intl" Makefile.am > /dev/null && + ( sed -e 's#\(^SUBDIRS.*\) intl#\1#' Makefile.am >Makefile.am.new \ + && mv Makefile.am.new Makefile.am ) echo "Running gettextize --copy $gettext_opt" gettextize --copy $gettext_opt || fail |
From: <as...@us...> - 2002-09-30 12:26:10
|
Update of /cvsroot/libexif/libexif-gtk In directory usw-pr-cvs1:/tmp/cvs-serv8571 Modified Files: autogen.sh Log Message: gettext 0.10 does not add automagically the intl/ directory Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/autogen.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- autogen.sh 30 Sep 2002 07:16:24 -0000 1.5 +++ autogen.sh 30 Sep 2002 12:26:08 -0000 1.6 @@ -124,6 +124,9 @@ grep "intl/Makefile" configure.in > /dev/null || ( sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \ configure.in >configure.in.new && mv configure.in.new configure.in ) + grep "SUBDIRS.*intl" Makefile.am > /dev/null || + ( sed -e 's#\(^SUBDIRS.*\)$#\1 intl#' Makefile.am >Makefile.am.new \ + && mv Makefile.am.new Makefile.am ) esac echo "Cleaning stuff generated by libtoolize" |
From: <as...@us...> - 2002-09-30 12:26:03
|
Update of /cvsroot/libexif/libexif In directory usw-pr-cvs1:/tmp/cvs-serv8508 Modified Files: autogen.sh Log Message: gettext 0.10 does not add automagically the intl/ directory Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/libexif/autogen.sh,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- autogen.sh 30 Sep 2002 07:16:17 -0000 1.8 +++ autogen.sh 30 Sep 2002 12:26:01 -0000 1.9 @@ -124,6 +124,9 @@ grep "intl/Makefile" configure.in > /dev/null || ( sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \ configure.in >configure.in.new && mv configure.in.new configure.in ) + grep "SUBDIRS.*intl" Makefile.am > /dev/null || + ( sed -e 's#\(^SUBDIRS.*\)$#\1 intl#' Makefile.am >Makefile.am.new \ + && mv Makefile.am.new Makefile.am ) esac echo "Cleaning stuff generated by libtoolize" |
From: <as...@us...> - 2002-09-30 12:25:41
|
Update of /cvsroot/libexif/gexif In directory usw-pr-cvs1:/tmp/cvs-serv8381 Modified Files: autogen.sh Log Message: gettext 0.10 does not add automagically the intl/ directory Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/gexif/autogen.sh,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- autogen.sh 30 Sep 2002 07:16:32 -0000 1.3 +++ autogen.sh 30 Sep 2002 12:25:39 -0000 1.4 @@ -124,6 +124,9 @@ grep "intl/Makefile" configure.in > /dev/null || ( sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \ configure.in >configure.in.new && mv configure.in.new configure.in ) + grep "SUBDIRS.*intl" Makefile.am > /dev/null || + ( sed -e 's#\(^SUBDIRS.*\)$#\1 intl#' Makefile.am >Makefile.am.new \ + && mv Makefile.am.new Makefile.am ) esac echo "Cleaning stuff generated by aclocal" |
From: <as...@us...> - 2002-09-30 12:25:35
|
Update of /cvsroot/libexif/exif In directory usw-pr-cvs1:/tmp/cvs-serv8341 Modified Files: autogen.sh Log Message: gettext 0.10 does not add automagically the intl/ directory Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/exif/autogen.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- autogen.sh 30 Sep 2002 07:16:39 -0000 1.5 +++ autogen.sh 30 Sep 2002 12:25:32 -0000 1.6 @@ -124,6 +124,9 @@ grep "intl/Makefile" configure.in > /dev/null || ( sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \ configure.in >configure.in.new && mv configure.in.new configure.in ) + grep "SUBDIRS.*intl" Makefile.am > /dev/null || + ( sed -e 's#\(^SUBDIRS.*\)$#\1 intl#' Makefile.am >Makefile.am.new \ + && mv Makefile.am.new Makefile.am ) esac echo "Cleaning stuff generated by aclocal" |
From: <as...@us...> - 2002-09-30 12:15:59
|
Update of /cvsroot/libexif/libexif-gtk In directory usw-pr-cvs1:/tmp/cvs-serv5426 Modified Files: Makefile.am Log Message: intl is automatically added by gettextize > 0.11 Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile.am 23 Jul 2002 07:22:41 -0000 1.3 +++ Makefile.am 30 Sep 2002 12:15:55 -0000 1.4 @@ -1,4 +1,4 @@ -SUBDIRS = gtk-extensions libexif-gtk tests po intl +SUBDIRS = gtk-extensions libexif-gtk tests po ######################################################################## |
From: <as...@us...> - 2002-09-30 12:14:39
|
Update of /cvsroot/libexif/gexif In directory usw-pr-cvs1:/tmp/cvs-serv4967 Modified Files: Makefile.am Log Message: intl is automatically added by gettextize > 0.11 Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/gexif/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Makefile.am 22 Jul 2002 22:53:59 -0000 1.5 +++ Makefile.am 30 Sep 2002 12:14:35 -0000 1.6 @@ -1,4 +1,4 @@ -SUBDIRS = libjpeg gexif po intl +SUBDIRS = libjpeg gexif po ######################################################################## |
From: <as...@us...> - 2002-09-30 07:16:41
|
Update of /cvsroot/libexif/exif In directory usw-pr-cvs1:/tmp/cvs-serv14596 Modified Files: autogen.sh Log Message: Fix configure.in automodifications Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/exif/autogen.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- autogen.sh 13 Sep 2002 15:35:42 -0000 1.4 +++ autogen.sh 30 Sep 2002 07:16:39 -0000 1.5 @@ -121,9 +121,9 @@ case $gettext_version in 0.10.*) - grep "intl/Makefile" configure.in || - sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \ - configure.in >configure.in.new && mv configure.in.new configure.in + grep "intl/Makefile" configure.in > /dev/null || + ( sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \ + configure.in >configure.in.new && mv configure.in.new configure.in ) esac echo "Cleaning stuff generated by aclocal" |
From: <as...@us...> - 2002-09-30 07:16:34
|
Update of /cvsroot/libexif/gexif In directory usw-pr-cvs1:/tmp/cvs-serv14558 Modified Files: autogen.sh Log Message: Fix configure.in automodifications Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/gexif/autogen.sh,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- autogen.sh 13 Sep 2002 15:37:16 -0000 1.2 +++ autogen.sh 30 Sep 2002 07:16:32 -0000 1.3 @@ -121,9 +121,9 @@ case $gettext_version in 0.10.*) - grep "intl/Makefile" configure.in || - sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \ - configure.in >configure.in.new && mv configure.in.new configure.in + grep "intl/Makefile" configure.in > /dev/null || + ( sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \ + configure.in >configure.in.new && mv configure.in.new configure.in ) esac echo "Cleaning stuff generated by aclocal" |
From: <as...@us...> - 2002-09-30 07:16:27
|
Update of /cvsroot/libexif/libexif-gtk In directory usw-pr-cvs1:/tmp/cvs-serv14527 Modified Files: autogen.sh Log Message: Fix configure.in automodifications Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/autogen.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- autogen.sh 13 Sep 2002 15:39:26 -0000 1.4 +++ autogen.sh 30 Sep 2002 07:16:24 -0000 1.5 @@ -121,9 +121,9 @@ case $gettext_version in 0.10.*) - grep "intl/Makefile" configure.in || - sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \ - configure.in >configure.in.new && mv configure.in.new configure.in + grep "intl/Makefile" configure.in > /dev/null || + ( sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \ + configure.in >configure.in.new && mv configure.in.new configure.in ) esac echo "Cleaning stuff generated by libtoolize" |
From: <as...@us...> - 2002-09-30 07:16:20
|
Update of /cvsroot/libexif/libexif In directory usw-pr-cvs1:/tmp/cvs-serv14501 Modified Files: autogen.sh Log Message: Fix configure.in automodifications Index: autogen.sh =================================================================== RCS file: /cvsroot/libexif/libexif/autogen.sh,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- autogen.sh 13 Sep 2002 15:39:06 -0000 1.7 +++ autogen.sh 30 Sep 2002 07:16:17 -0000 1.8 @@ -121,9 +121,9 @@ case $gettext_version in 0.10.*) - grep "intl/Makefile" configure.in || - sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \ - configure.in >configure.in.new && mv configure.in.new configure.in + grep "intl/Makefile" configure.in > /dev/null || + ( sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \ + configure.in >configure.in.new && mv configure.in.new configure.in ) esac echo "Cleaning stuff generated by libtoolize" |
From: <lu...@us...> - 2002-09-16 20:58:43
|
Update of /cvsroot/libexif/libexif/libexif In directory usw-pr-cvs1:/tmp/cvs-serv3050/libexif Modified Files: exif-utils.c Log Message: 2002-09-16 Lutz Müller <lu...@us...> * libexif: Some fixes for Windows (Visual C++) by Andres <ap...@sm...> Index: exif-utils.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-utils.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- exif-utils.c 23 Dec 2001 22:39:31 -0000 1.2 +++ exif-utils.c 16 Sep 2002 20:58:40 -0000 1.3 @@ -48,12 +48,12 @@ { switch (order) { case EXIF_BYTE_ORDER_MOTOROLA: - b[0] = value >> 8; - b[1] = value; + b[0] = (unsigned char) (value >> 8); + b[1] = (unsigned char) value; break; case EXIF_BYTE_ORDER_INTEL: - b[0] = value; - b[1] = value >> 8; + b[0] = (unsigned char) value; + b[1] = (unsigned char) (value >> 8); break; } } @@ -77,16 +77,16 @@ { switch (order) { case EXIF_BYTE_ORDER_MOTOROLA: - b[0] = value >> 24; - b[1] = value >> 16; - b[2] = value >> 8; - b[3] = value; + b[0] = (unsigned char) (value >> 24); + b[1] = (unsigned char) (value >> 16); + b[2] = (unsigned char) (value >> 8); + b[3] = (unsigned char) value; break; case EXIF_BYTE_ORDER_INTEL: - b[3] = value >> 24; - b[2] = value >> 16; - b[1] = value >> 8; - b[0] = value; + b[3] = (unsigned char) (value >> 24); + b[2] = (unsigned char) (value >> 16); + b[1] = (unsigned char) (value >> 8); + b[0] = (unsigned char) value; break; } } |
From: <lu...@us...> - 2002-09-16 20:58:43
|
Update of /cvsroot/libexif/libexif In directory usw-pr-cvs1:/tmp/cvs-serv3050 Modified Files: ChangeLog Log Message: 2002-09-16 Lutz Müller <lu...@us...> * libexif: Some fixes for Windows (Visual C++) by Andres <ap...@sm...> Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/libexif/ChangeLog,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- ChangeLog 15 Sep 2002 21:58:10 -0000 1.45 +++ ChangeLog 16 Sep 2002 20:58:39 -0000 1.46 @@ -1,9 +1,7 @@ -2002-09-16 gettextize <bug...@gn...> +2002-09-16 Lutz Müller <lu...@us...> - * Makefile.am (SUBDIRS): Add m4. - (ACLOCAL_AMFLAGS): New variable. - (EXTRA_DIST): Add config.rpath. - * configure.in (AC_OUTPUT): Add m4/Makefile. + * libexif: Some fixes for Windows (Visual C++) by + Andres <ap...@sm...> 2002-09-15 Lutz Müller <lu...@us...> |