From: Lutz M. <lu...@us...> - 2008-02-17 18:17:20
|
Update of /cvsroot/libexif/exif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv25690 Modified Files: ChangeLog configure.ac exif.1 Log Message: 2008-02-17 Lutz Mueller <lu...@us...> * exif/main.c: Move the remaining actions to... * exif/actions.[c,h]: ...here. While at it, implement a --create-exif option (suggestion and patch by Alexander Drozdov <dza...@mt...>). This needs latest libexif, therefore ... * configure.ac: ...require at least libexif 0.6.16.2. Index: configure.ac =================================================================== RCS file: /cvsroot/libexif/exif/configure.ac,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -d -r1.15 -r1.16 --- configure.ac 29 Jan 2008 20:53:09 -0000 1.15 +++ configure.ac 17 Feb 2008 18:17:08 -0000 1.16 @@ -38,7 +38,7 @@ GP_PKG_CONFIG # --------------------------------------------------------------------------- # i18n support # --------------------------------------------------------------------------- -GP_GETTEXT_HACK([${PACKAGE}],[Lutz Müller and others]) +GP_GETTEXT_HACK([${PACKAGE}],[Lutz Mueller and others]) ALL_LINGUAS="de es fr nl pl sv" AM_GNU_GETTEXT_VERSION([0.14.1]) AM_GNU_GETTEXT([external]) @@ -66,7 +66,7 @@ AC_ARG_ENABLE(gettext-iconv, # --------------------------------------------------------------------------- # libraries needed # --------------------------------------------------------------------------- -GP_CHECK_LIBRARY([LIBEXIF],[libexif],[>= 0.6.13]) +GP_CHECK_LIBRARY([LIBEXIF],[libexif],[>= 0.6.16.2]) # --------------------------------------------------------------------------- Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/exif/ChangeLog,v retrieving revision 1.66 retrieving revision 1.67 diff -u -p -d -r1.66 -r1.67 --- ChangeLog 17 Feb 2008 11:49:05 -0000 1.66 +++ ChangeLog 17 Feb 2008 18:17:08 -0000 1.67 @@ -1,5 +1,13 @@ 2008-02-17 Lutz Mueller <lu...@us...> + * exif/main.c: Move the remaining actions to... + * exif/actions.[c,h]: ...here. While at it, implement a --create-exif + option (suggestion and patch by Alexander Drozdov + <dza...@mt...>). This needs latest libexif, therefore ... + * configure.ac: ...require at least libexif 0.6.16.2. + +2008-02-17 Lutz Mueller <lu...@us...> + In preparation of adding new command line options: * exif/main.c: Move more individual actions to... Index: exif.1 =================================================================== RCS file: /cvsroot/libexif/exif/exif.1,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -d -r1.9 -r1.10 --- exif.1 9 Feb 2008 23:57:08 -0000 1.9 +++ exif.1 17 Feb 2008 18:17:08 -0000 1.10 @@ -103,6 +103,9 @@ Set the data for the tag specified with Compound values consisting of multiple components are separated with spaces. .TP +.BI "\-c, \-\-create" +Create EXIF data if not existing +.TP .BI "\-m, \-\-machine\-readable" Produce output in a machine-readable (tab-delimited) format. The \-\-xml-output and \-\-machine\-readable options are mutually exclusive. |