Oops -- add the new files to go with the commit a second ago.

This commit is contained in:
Mikhail Teterin 2007-05-30 01:06:09 +00:00
parent 2da50fa6d4
commit ff5fe886f4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=192342
5 changed files with 70 additions and 0 deletions

View file

@ -0,0 +1,11 @@
--- configure.orig Wed Aug 23 05:33:19 2006
+++ configure
@@ -5250,7 +5250,7 @@
#define GETTEXT_PACKAGE "$GETTEXT_PACKAGE"
_ACEOF
-ALL_LINGUAS="en_GB malkovich"
+ALL_LINGUAS="en_GB"
case "$am__api_version" in
1.01234)

View file

@ -0,0 +1,14 @@
--- contrib/vdump/vdump.c.orig Tue Feb 8 07:19:19 2005
+++ contrib/vdump/vdump.c
@@ -309,9 +309,9 @@
/* Print body of file.
*/
if( im->Bands == 3 )
- encode_colour( im, scale, im->data );
+ encode_colour( im, scale, (struct pixel *) im->data );
else
- encode_mono( im, scale, im->data );
+ encode_mono( im, scale, (struct mpixel *) im->data );
/* Print trailer.
*/

View file

@ -0,0 +1,15 @@
--- libsrc/conversion/im_tiff2vips.c.orig Wed Aug 17 06:34:12 2005
+++ libsrc/conversion/im_tiff2vips.c
@@ -157,6 +157,12 @@
#include <vips/vips.h>
#include <vips/thread.h>
+#undef D50_X0
+#undef D50_Y0
+#undef D50_Z0
+#undef D65_X0
+#undef D65_Y0
+#undef D65_Z0
#include <tiffio.h>
#ifdef WITH_DMALLOC

View file

@ -0,0 +1,15 @@
--- libsrc/conversion/im_vips2tiff.c.orig Fri Mar 3 03:06:32 2006
+++ libsrc/conversion/im_vips2tiff.c
@@ -145,6 +145,12 @@
#include <vips/vips.h>
+#undef D50_X0
+#undef D50_Y0
+#undef D50_Z0
+#undef D65_X0
+#undef D65_Y0
+#undef D65_Z0
#include <tiffio.h>
#ifdef WITH_DMALLOC

View file

@ -0,0 +1,15 @@
--- libsrc/iofuncs/predicate.c.orig Tue Feb 8 07:19:20 2005
+++ libsrc/iofuncs/predicate.c
@@ -73,6 +73,12 @@
#include <vips/vips.h>
#ifdef HAVE_TIFF
+#undef D50_X0
+#undef D50_Y0
+#undef D50_Z0
+#undef D65_X0
+#undef D65_Y0
+#undef D65_Z0
#include <tiffio.h>
#endif /*HAVE_TIFF*/