This is a patch file for "lcms" 1.19.  This file is  based on  a patch
file that was obtained originally from:

      http://www.linuxfromscratch.org/blfs/downloads/6.1/\
lcms-1.14-gcc343-1.patch

Note:  This patch file includes carriage returns in some places. Pres-
ently, the carriage returns are required.

Submitted By:            Randy McMurchy <randy_at_linuxfromscratch_dot_org>
Date:                    2005-04-15
Initial Package Version: 1.14
Upstream Status:         Submitted to the LCMS mailing list
Origin:                  Randy McMurchy
Description:             Adds an identifier declaration so that the SWIG/Python
                         module will compile using GCC-3.4.3

$LastChangedBy: bdubbs $
$Date: 2005-08-01 13:29:19 -0600 (Mon, 01 Aug 2005) $

--- lcms-1.19.old/python/lcms.i
+++ lcms-1.19/python/lcms.i
@@ -102,6 +102,7 @@
 %typemap(in) LPGAMMATABLE[3](LPGAMMATABLE gamma[3]) {  
   
   PyObject* tmp[3];
+  swig_type_info* SWIGTYPE_LPGAMMATABLE;
 
   if (PyTuple_Check($input)) {
     if (!PyArg_ParseTuple($input,"OOO",&tmp[0],&tmp[1],&tmp[2])) {