[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [29153] trunk/lib/windows/gcc/tiff: libtiff for mingw re-compiled with linking to new zlib and jpeg libraries

Sergey Sharybin g.ulairi at gmail.com
Wed Jun 2 09:59:15 CEST 2010


Revision: 29153
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=29153
Author:   nazgul
Date:     2010-06-02 09:59:15 +0200 (Wed, 02 Jun 2010)

Log Message:
-----------
libtiff for mingw re-compiled with linking to new zlib and jpeg libraries

Modified Paths:
--------------
    trunk/lib/windows/gcc/tiff/include/tiffconf.h
    trunk/lib/windows/gcc/tiff/lib/libtiff.a

Added Paths:
-----------
    trunk/lib/windows/gcc/tiff/README.txt

Added: trunk/lib/windows/gcc/tiff/README.txt
===================================================================
--- trunk/lib/windows/gcc/tiff/README.txt	                        (rev 0)
+++ trunk/lib/windows/gcc/tiff/README.txt	2010-06-02 07:59:15 UTC (rev 29153)
@@ -0,0 +1,30 @@
+Compiled from tiff-3.9.2.tar.gz under MSys
+
+Configuration line:
+./configure \
+  --prefix="/home/nazgul/libtiff-inst" \
+  CPPFLAGS=" -I/n/src/packages/blender/lib/windows/zlib/include \
+             -I/n/src/packages/blender/lib/windows/jpeg/include" \
+  LDFLAGS=" -mwindows -L/n/src/packages/blender/lib/windows/zlib/lib \
+            -L/n/src/packages/blender/lib/windows/jpeg/lib "
+
+Configuration details:
+
+Support for internal codecs:
+  CCITT Group 3 & 4 algorithms:       yes
+  Macintosh PackBits algorithm:       yes
+  LZW algorithm:                      yes
+  ThunderScan 4-bit RLE algorithm:    yes
+  NeXT 2-bit RLE algorithm:           yes
+  LogLuv high dynamic range encoding: yes
+
+Support for external codecs:
+  ZLIB support:                       yes
+  Pixar log-format algorithm:         yes
+  JPEG support:                       yes
+  Old JPEG support:                   yes
+  ISO JBIG support:                   no
+
+  C++ support:                        yes
+
+  OpenGL support:                     no

Modified: trunk/lib/windows/gcc/tiff/include/tiffconf.h
===================================================================
--- trunk/lib/windows/gcc/tiff/include/tiffconf.h	2010-06-02 07:41:55 UTC (rev 29152)
+++ trunk/lib/windows/gcc/tiff/include/tiffconf.h	2010-06-02 07:59:15 UTC (rev 29153)
@@ -40,7 +40,7 @@
 #define CCITT_SUPPORT 1
 
 /* Support JPEG compression (requires IJG JPEG library) */
-/* #undef JPEG_SUPPORT */
+#define JPEG_SUPPORT 1
 
 /* Support JBIG compression (requires JBIG-KIT library) */
 /* #undef JBIG_SUPPORT */
@@ -56,19 +56,19 @@
 
 /* Support Old JPEG compresson (read contrib/ojpeg/README first! Compilation
    fails with unpatched IJG JPEG library) */
-/* #undef OJPEG_SUPPORT */
+#define OJPEG_SUPPORT 1
 
 /* Support Macintosh PackBits algorithm */
 #define PACKBITS_SUPPORT 1
 
 /* Support Pixar log-format algorithm (requires Zlib) */
-/* #undef PIXARLOG_SUPPORT */
+#define PIXARLOG_SUPPORT 1
 
 /* Support ThunderScan 4-bit RLE algorithm */
 #define THUNDER_SUPPORT 1
 
 /* Support Deflate compression */
-/* #undef ZIP_SUPPORT */
+#define ZIP_SUPPORT 1
 
 /* Support strip chopping (whether or not to convert single-strip uncompressed
    images to mutiple strips of ~8Kb to reduce memory usage) */

Modified: trunk/lib/windows/gcc/tiff/lib/libtiff.a
===================================================================
(Binary files differ)





More information about the Bf-blender-cvs mailing list