From: Lutz M. <lu...@us...> - 2004-10-05 19:16:23
|
Update of /cvsroot/libexif/libexif/libexif In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19550 Modified Files: exif-content.c exif-entry.c Log Message: 2004-10-05 Lutz Mueller <lu...@us...> * libexif/exif-data.c: Support for WatCom. Convert debugging code to exif-log API. * libexif/i18n.h: Support for WatCom. Patch by Angela Wrobel. Index: exif-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-entry.c,v retrieving revision 1.66 retrieving revision 1.67 diff -u -d -r1.66 -r1.67 --- exif-entry.c 4 Oct 2004 06:26:59 -0000 1.66 +++ exif-entry.c 5 Oct 2004 19:16:00 -0000 1.67 @@ -31,8 +31,6 @@ #include <time.h> #include <math.h> -/* #define DEBUG */ - #undef MIN #define MIN(a, b) (((a) < (b)) ? (a) : (b)) Index: exif-content.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-content.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- exif-content.c 4 Oct 2004 06:26:59 -0000 1.12 +++ exif-content.c 5 Oct 2004 19:16:00 -0000 1.13 @@ -25,8 +25,6 @@ #include <stdio.h> #include <string.h> -/* #define DEBUG */ - static const unsigned char ExifHeader[] = {0x45, 0x78, 0x69, 0x66, 0x00, 0x00}; struct _ExifContentPrivate |