From stephane at harobed.org Wed Sep 9 14:15:42 2009 From: stephane at harobed.org (=?windows-1252?Q?Klein_St=E9phane?=) Date: Wed, 09 Sep 2009 14:15:42 +0200 Subject: [Image-SIG] Some issue with easy_install and PIL/Imaging Message-ID: Hi, I would like to insert Imaging dependence in my setup.py file. Resume : 1. first question : why PIL package in "pypi" don't work ? 2. second question : when I add PIL dependence in my setup.py and I do "python setup.py develop", I've this error : "error: Could not find required distribution Imaging". Why ? Full explication : First, I test manualy installation : :: (env1)sklein at eee-sklein:$ easy_install pil Searching for pil Reading http://pypi.python.org/simple/pil/ Reading http://www.pythonware.com/products/pil Reading http://effbot.org/zone/pil-changes-115.htm Reading http://effbot.org/downloads/#Imaging No local packages or download links found for pil error: Could not find suitable distribution for Requirement.parse('pil') This command fail ! Now, I try with Imaging package name : :: (env1)sklein at eee-sklein:$ easy_install Imaging Searching for Imaging Reading http://pypi.python.org/simple/Imaging/ Couldn't find index page for 'Imaging' (maybe misspelled?) Scanning index of all packages (this may take a while) Reading http://pypi.python.org/simple/ No local packages or download links found for Imaging error: Could not find suitable distribution for Requirement.parse('Imaging') This command fail also. Now, I add --find-links parameter to easy_install : :: (env1)sklein at eee-sklein:$ easy_install --find-links http://www.pythonware.com/products/pil/ Imaging Searching for Imaging Reading http://www.pythonware.com/products/pil/ Best match: Imaging 1.1.6 Downloading http://effbot.org/downloads/Imaging-1.1.6.tar.gz Processing Imaging-1.1.6.tar.gz Running Imaging-1.1.6/setup.py -q bdist_egg --dist-dir /tmp/easy_install-rF1PG1/Imaging-1.1.6/egg-dist-tmp-Xtv8GV libImaging/Effects.c:210: attention : ?perlin_init? defined but not used libImaging/File.c: In function ?ImagingOpenPPM?: libImaging/File.c:112: attention : ignoring return value of ?fread?, declared with attribute warn_unused_result libImaging/File.c:119: attention : ignoring return value of ?fread?, declared with attribute warn_unused_result libImaging/Geometry.c:236: attention : ?quadratic_transform? defined but not used libImaging/Quant.c:311: attention : ?test_sorted? defined but not used libImaging/Quant.c:676: attention : ?checkContained? defined but not used libImaging/QuantHash.c:136: attention : ?_hashtable_test? defined but not used -------------------------------------------------------------------- PIL 1.1.6 BUILD SUMMARY -------------------------------------------------------------------- version 1.1.6 platform linux2 2.6.2 (release26-maint, Apr 19 2009, 01:56:41) [GCC 4.3.3] -------------------------------------------------------------------- *** TKINTER support not available (Tcl/Tk 8.5 libraries needed) --- JPEG support ok --- ZLIB (PNG/ZIP) support ok --- FREETYPE2 support ok -------------------------------------------------------------------- To add a missing option, make sure you have the required library, and set the corresponding ROOT variable in the setup.py script. To check the build, run the selftest.py script. zip_safe flag not set; analyzing archive contents... Image: module references __file__ Adding PIL 1.1.6 to easy-install.pth file Installing pilprint.py script to /home/sklein/tests/test_eggs_pil/env1/bin Installing pilfile.py script to /home/sklein/tests/test_eggs_pil/env1/bin Installing pilconvert.py script to /home/sklein/tests/test_eggs_pil/env1/bin Installing pilfont.py script to /home/sklein/tests/test_eggs_pil/env1/bin Installing pildriver.py script to /home/sklein/tests/test_eggs_pil/env1/bin Installed /home/sklein/tests/test_eggs_pil/env1/lib/python2.6/site-packages/PIL-1.1.6-py2.6-linux-i686.egg Skipping dependencies for PIL 1.1.6 This command work very well. First question : why PIL package in "pypi" don't work ? Now, I remove PIL in my virtualenv to test setup.py installation : :: (env1)sklein at eee-sklein:$ rm /home/sklein/tests/test_eggs_pil/env1/lib/python2.6/site-packages/PIL-1.1.6-py2.6-linux-i686.egg/ -rf (env1)sklein at eee-sklein:$ cat setup.py from setuptools import setup, find_packages import sys, os version = '0.0' setup(name='test_pil', version=version, description="", long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='', author_email='', url='', license='', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, dependency_links=['http://www.pythonware.com/products/pil/'], install_requires=[ # -*- Extra requirements: -*- 'Imaging' ], entry_points=""" # -*- Entry points: -*- """, ) (env1)sklein at eee-sklein:$ python setup.py develop running develop running egg_info writing requirements to test_pil.egg-info/requires.txt writing test_pil.egg-info/PKG-INFO writing top-level names to test_pil.egg-info/top_level.txt writing dependency_links to test_pil.egg-info/dependency_links.txt writing entry points to test_pil.egg-info/entry_points.txt reading manifest file 'test_pil.egg-info/SOURCES.txt' writing manifest file 'test_pil.egg-info/SOURCES.txt' running build_ext Creating /home/sklein/tests/test_eggs_pil/env1/lib/python2.6/site-packages/test-pil.egg-link (link to .) test-pil 0.0dev is already the active version in easy-install.pth Installed /home/sklein/tests/test_eggs_pil/test_pil Processing dependencies for test-pil==0.0dev Searching for Imaging Reading http://www.pythonware.com/products/pil/ Best match: Imaging 1.1.6 Downloading http://effbot.org/downloads/Imaging-1.1.6.tar.gz Processing Imaging-1.1.6.tar.gz Running Imaging-1.1.6/setup.py -q bdist_egg --dist-dir /tmp/easy_install-OpIvPF/Imaging-1.1.6/egg-dist-tmp-uNmpa5 libImaging/Effects.c:210: attention : ?perlin_init? defined but not used libImaging/File.c: In function ?ImagingOpenPPM?: libImaging/File.c:112: attention : ignoring return value of ?fread?, declared with attribute warn_unused_result libImaging/File.c:119: attention : ignoring return value of ?fread?, declared with attribute warn_unused_result libImaging/Geometry.c:236: attention : ?quadratic_transform? defined but not used libImaging/Quant.c:311: attention : ?test_sorted? defined but not used libImaging/Quant.c:676: attention : ?checkContained? defined but not used libImaging/QuantHash.c:136: attention : ?_hashtable_test? defined but not used -------------------------------------------------------------------- PIL 1.1.6 BUILD SUMMARY -------------------------------------------------------------------- version 1.1.6 platform linux2 2.6.2 (release26-maint, Apr 19 2009, 01:56:41) [GCC 4.3.3] -------------------------------------------------------------------- *** TKINTER support not available (Tcl/Tk 8.5 libraries needed) --- JPEG support ok --- ZLIB (PNG/ZIP) support ok --- FREETYPE2 support ok -------------------------------------------------------------------- To add a missing option, make sure you have the required library, and set the corresponding ROOT variable in the setup.py script. To check the build, run the selftest.py script. zip_safe flag not set; analyzing archive contents... Image: module references __file__ Adding PIL 1.1.6 to easy-install.pth file Installing pilprint.py script to /home/sklein/tests/test_eggs_pil/env1/bin Installing pilfile.py script to /home/sklein/tests/test_eggs_pil/env1/bin Installing pilconvert.py script to /home/sklein/tests/test_eggs_pil/env1/bin Installing pilfont.py script to /home/sklein/tests/test_eggs_pil/env1/bin Installing pildriver.py script to /home/sklein/tests/test_eggs_pil/env1/bin Installed /home/sklein/tests/test_eggs_pil/env1/lib/python2.6/site-packages/PIL-1.1.6-py2.6-linux-i686.egg error: Could not find required distribution Imaging This commend work but I have this error : "error: Could not find required distribution Imaging". Why ? Thanks for your help, Stephane From tiit at sympatico.ca Tue Sep 1 04:44:01 2009 From: tiit at sympatico.ca (Etienne Desautels) Date: Mon, 31 Aug 2009 22:44:01 -0400 Subject: [Image-SIG] Problem when resizing large JPEG to thumbnail Message-ID: Hi, I'm using sorl-thumbnail in Django to automatically resize my images. sorl-thumbnail use PIL to do is image manipulations. Unfortunately the result thumbnails are far from pretty. You can see some tests here: http://www.teknozen.net/resize_pil.html Here's the code I (and sorl) use to create the thumbnails: im = Image.open('source.jpg') if im.mode not in ("L", "RGB", "RGBA"): __im = im.convert("RGB") im = im.crop((568, 783, 3164, 3379)) im = im.resize((70, 70), resample=Image.ANTIALIAS) im.save('pil.jpg', "JPEG", quality=95) Pretty straightforward. I did some tests with ImageMagick to compare the result. The difference is huge. The ImageMagick thumbnail looks great. In contrast he PIL thumbnail look blocky and blurry at the same time and the colors are all fade out. I don't think the jpeg compression is the problem, I set it to 95. I did a test with resample=Image.BICUBIC and the result is really bad. But I don't think that BICUBIC was really applied because I got the exactly same result when I use resample=Image.NEAREST. Also, at the beginning, my source file was a TIFF in CMYK. The color of the generated thumbnail was completely off. That's why I convert it to RGB JPEG in Photoshop. So after experimenting, I see 3 problems: 1. Resize with ANTIALIAS from a large JPEG to a small thumbnail give poor image quality. 2. BICUBIC, when set, is not applied. Instead NEAREST is use. 3. Converting from TIFF CMYK to RGB shift the colors dramatically. Is all theses points are normal behavior ? Etienne From vbmendes at gmail.com Wed Sep 2 22:04:19 2009 From: vbmendes at gmail.com (Vinicius Mendes) Date: Wed, 2 Sep 2009 17:04:19 -0300 Subject: [Image-SIG] JPEG low quality Message-ID: Hi, I've created a script using PIL that opens a JPEG image and saves it with another name. What happens is that the saved image's quality is gets very low, even if I set quality=100. Somebody already experienced such a problem? Knows how to achieve a better quality? Saving the image as PNG the quality is perfect, but the filesize gets huge. The code I used was: from PIL import Image imagem = Image.open("original_file.jpg") imagem.save("file_saved_by_pil.jpg", "JPEG", quality=100, progressive=True) The original image file is: http://twitpic.com/g86ug And this is the one generated by PIL: http://twitpic.com/g8735 Pay attention that the original file has the text "conhe?a" legible and with a good filesize. The one generated by PIL has almost the same filesize but the text is illegible. My script will do more sutff then just open and save the image with another name: it will open two images, put one above the other and write some text on it. This was already achieved. The problem is just the quality. Thanks for the patience. --- Vin?cius Mendes Computer Engineer http://meiocodigo.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From bgibbons at stanford.edu Wed Sep 2 23:03:03 2009 From: bgibbons at stanford.edu (Brian J. Gibbons) Date: Wed, 2 Sep 2009 14:03:03 -0700 (PDT) Subject: [Image-SIG] python install problem 1 test failed selftest.testimage Message-ID: <1901179594.1906121251925383966.JavaMail.root@zm08.stanford.edu> This is the error generated when running selftest.py : python/Imaging-1.1.6> python selftest.py ***************************************************************** Failure in example: _info(Image.open("Images/lena.jpg")) from line #24 of selftest.testimage Exception raised: Traceback (most recent call last): File "./doctest.py", line 499, in _run_examples_inner exec compile(source, "", "single") in globs File "", line 1, in File "./selftest.py", line 22, in _info im.load() File "PIL/ImageFile.py", line 180, in load d = Image._getdecoder(self.mode, d, a, self.decoderconfig) File "PIL/Image.py", line 375, in _getdecoder raise IOError("decoder %s not available" % decoder_name) IOError: decoder jpeg not available 1 items had failures: 1 of 57 in selftest.testimage ***Test Failed*** 1 failures. *** 1 tests of 57 failed. Any suggestions? Sincerely, Brian Gibbons ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Brian Gibbons, Ph.D. Roger Kornberg Lab Stanford School of Medicine Department of Structural Biology 299 Campus Drive West Fairchild Building Rm. D125 Stanford, CA 94305 (650)723-6986 From andylei at gmail.com Fri Sep 4 22:19:17 2009 From: andylei at gmail.com (Andy Lei) Date: Fri, 4 Sep 2009 16:19:17 -0400 Subject: [Image-SIG] PIL on Snow Leopard Message-ID: I'm trying to reinstall PIL on OS X Snow Leopard, and I'm having some issues. PIL builds and installs fine (selftest.py works fine, and running build_ext -i says that jpeg support is okay), but libjpeg is still giving me problems. In Python (I'm using the default Apple build, version 2.6), when I try to import _imaging, or do certain things w/ jpegs, I get the error: >>> import _imaging Traceback (most recent call last): File "", line 1, in ImportError: dlopen(/Library/Python/2.6/site-packages/PIL/_imaging.so, 2): Symbol not found: _jpeg_resync_to_restart Referenced from: /Library/Python/2.6/site-packages/PIL/_imaging.so Expected in: flat namespace in /Library/Python/2.6/site-packages/PIL/_imaging.so I've tried rebuilding and reinstalling several times, using None for JPEG_ROOT, the Apple supplied libjpeg (/usr/local/lib/libjpeg.dylib) as well as the fink version (/sw/lib/libjpeg.dylib). Anybody have any ideas what I'm doing wrong? Thanks everyone! Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: From bjbackes at stanford.edu Sat Sep 5 00:06:58 2009 From: bjbackes at stanford.edu (Bjorn Backes) Date: Fri, 4 Sep 2009 15:06:58 -0700 Subject: [Image-SIG] Installation problem Message-ID: <7781C0E2-5BD5-48DC-BA45-6470253E595E@stanford.edu> Hi, I want to use the PIL for my research work but I got some problems during the installation. I recently updated my Mac to OS 10.6 but I had not installed the PIL before but I installed altready Python 2.6. So after the installation of the operating system I updated the development tools form 3.0 to 3.2. After that I installed MacPorts and the gd2 package. So I got the necessary libs like libjpeg, zlib and freetype. After that I tried the command "python setup.py build_ext - i" in the Imaging-1.1.6 directory and I got the following error message. $ python setup.py build_ext -i running build_ext --- using frameworks at /System/Library/Frameworks building '_imaging' extension gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk - fno-strict-aliasing -fno-common -dynamic -DNDEBUG -g -O3 - DHAVE_LIBJPEG -DHAVE_LIBZ -I/System/Library/Frameworks/Tcl.framework/ Headers -I/System/Library/Frameworks/Tk.framework/Headers -I/opt/local/ include/freetype2 -IlibImaging -I/opt/local/include -I/Library/ Frameworks/Python.framework/Versions/2.6/include -I/usr/local/include - I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.6/ include/python2.6 -c _imaging.c -o build/temp.macosx-10.3-fat-2.6/ _imaging.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/ 2.6/include/python2.6/pyport.h:235, from /Library/Frameworks/Python.framework/Versions/ 2.6/include/python2.6/Python.h:58, from _imaging.c:76: /usr/include/architecture/ppc/math.h:666: warning: conflicting types for built-in function ?scalb? In file included from /usr/include/stdarg.h:4, from /Library/Frameworks/Python.framework/Versions/ 2.6/include/python2.6/unicodeobject.h:4, from /Library/Frameworks/Python.framework/Versions/ 2.6/include/python2.6/Python.h:85, from _imaging.c:76: /Developer/SDKs/MacOSX10.4u.sdk/usr/include/stdarg.h:4:25: error: stdarg.h: No such file or directory _imaging.c:2907: warning: initialization from incompatible pointer type _imaging.c:2967: warning: initialization from incompatible pointer type In file included from /usr/include/architecture/i386/math.h:626, from /usr/include/math.h:28, from /Library/Frameworks/Python.framework/Versions/ 2.6/include/python2.6/pyport.h:235, from /Library/Frameworks/Python.framework/Versions/ 2.6/include/python2.6/Python.h:58, from _imaging.c:76: /usr/include/AvailabilityMacros.h:108:14: warning: #warning Building for Intel with Mac OS X Deployment Target < 10.4 is invalid. In file included from /usr/include/stdarg.h:4, from /Library/Frameworks/Python.framework/Versions/ 2.6/include/python2.6/unicodeobject.h:4, from /Library/Frameworks/Python.framework/Versions/ 2.6/include/python2.6/Python.h:85, from _imaging.c:76: /Developer/SDKs/MacOSX10.4u.sdk/usr/include/stdarg.h:4:25: error: stdarg.h: No such file or directory _imaging.c:2907: warning: initialization from incompatible pointer type _imaging.c:2967: warning: initialization from incompatible pointer type lipo: can't figure out the architecture type of: /var/folders/+G/ +Gkc0RsCG0K3jvpjrc8CbU+++TI/-Tmp-//cc1JWACK.out error: command 'gcc' failed with exit status 1 Do you have any idea? Any help is really appreciate! Thanks in advance! Bjorn -- Bjorn Backes Postdoctoral Scholar Department of Materials Science and Engineering 496 Lomita Mall, Durand Bldg. Stanford University Stanford, CA 94305-4034 e-mail: bjbackes at stanford.edu From donn.ingle at gmail.com Mon Sep 14 08:29:31 2009 From: donn.ingle at gmail.com (Donn) Date: Mon, 14 Sep 2009 08:29:31 +0200 Subject: [Image-SIG] ImageFont family mojibake Message-ID: <200909140829.31228.donn.ingle@gmail.com> (Reposted to image-sig: I sent it to python-list by mistake.) Python 2.6 PIL Version: 1.1.6-3ubuntu1 libfreetype6 Version: 2.3.9-4ubuntu0.1 Hello, I have a feeling I've asked this in the distant past, but it's recently emerged as a bug in my app so can anyone point me in the right direction? In Fonty Python, when I draw the family name of a font some* are mojibake in the form: ????s??? etc. The string is drawn to a DC with wxPython, but is fetched from the font via ImageFont, like so: f=ImageFont.truetype("FGTshgyo.TTF",1,encoding="utf-8") print f.font.family '?????s????' So, the string is plain (not unicode) and wrong from the get-go. *"some" being those fonts that contain family names not in western encodings. The sample font that demonstrates the problem and was sent to me to test is called: BGPENKB.TTF another is FGTshgyo.TTF These are substantial files and I can't attach them to a list. if you need them for testing I can send them to another email address, or upload them somewhere. I hope there's some simple encoding="voodoo" that might fix this. The problem is, I guess, knowing *what* that voodoo is for arbitrary fonts (which can come from any source). Any assistance would not go amiss. \d -- home: http://otherwise.relics.co.za/ 2D vector animation : https://savannah.nongnu.org/projects/things/ Font manager : https://savannah.nongnu.org/projects/fontypython/ From janssen at parc.com Mon Sep 14 17:32:06 2009 From: janssen at parc.com (Bill Janssen) Date: Mon, 14 Sep 2009 08:32:06 PDT Subject: [Image-SIG] PIL on Snow Leopard In-Reply-To: References: Message-ID: <43116.1252942326@parc.com> Yes, this just happened to me, too. If you look at the library, I suspect you'll find that libjpeg.dylib doesn't have the expected "architecture". I had to rebuild libjpeg with gcc 4.2 to get a version that had the right architecture. Bill Andy Lei wrote: > I'm trying to reinstall PIL on OS X Snow Leopard, and I'm having some > issues. PIL builds and installs fine (selftest.py works fine, and running > build_ext -i says that jpeg support is okay), but libjpeg is still giving me > problems. > In Python (I'm using the default Apple build, version 2.6), when I try to > import _imaging, or do certain things w/ jpegs, I get the error: > > >>> import _imaging > Traceback (most recent call last): > File "", line 1, in > ImportError: dlopen(/Library/Python/2.6/site-packages/PIL/_imaging.so, 2): > Symbol not found: _jpeg_resync_to_restart > Referenced from: /Library/Python/2.6/site-packages/PIL/_imaging.so > Expected in: flat namespace > in /Library/Python/2.6/site-packages/PIL/_imaging.so > > > I've tried rebuilding and reinstalling several times, using None for > JPEG_ROOT, the Apple supplied libjpeg (/usr/local/lib/libjpeg.dylib) as well > as the fink version (/sw/lib/libjpeg.dylib). > > Anybody have any ideas what I'm doing wrong? > > Thanks everyone! > > Andy > _______________________________________________ > Image-SIG maillist - Image-SIG at python.org > http://mail.python.org/mailman/listinfo/image-sig From mathieu.galtier at googlemail.com Tue Sep 8 16:25:30 2009 From: mathieu.galtier at googlemail.com (Mathieu Galtier) Date: Tue, 08 Sep 2009 16:25:30 +0200 Subject: [Image-SIG] bug in PIL rotate? Message-ID: <4AA6695A.9080009@gmail.com> Hello, am I right to think that the rotate function of PIL 1.1.6 is broken? Try this simple example: import Image import numpy as np tab = np.random.rand(100).reshape(10,10) im = Image.fromarray(tab) assert(im == im.rotate(0)) I went a bit further and it seems that rotate translates the image of one pixel or so. Cheers Mathieu From mathieu.galtier at googlemail.com Wed Sep 9 20:16:56 2009 From: mathieu.galtier at googlemail.com (Mathieu Galtier) Date: Wed, 09 Sep 2009 20:16:56 +0200 Subject: [Image-SIG] bug in PIL rotate? In-Reply-To: <4AA6695A.9080009@gmail.com> References: <4AA6695A.9080009@gmail.com> Message-ID: <4AA7F118.2040207@gmail.com> Hello, Ok it seems my first example is stupid. But have a look at this: from scipy.misc import * from pylab import * n = 11 tab = zeros([n,n]) for i in range(n): tab[n/2,i] = 1. matshow(tab) for angle in range(8): angleDegre = angle * 180. / 8 rotated = imrotate(tab,angleDegre,interp='bilinear') /255. matshow(rotated) show() knowing that imrotate is based on PIL's rotate. There is a uneccessary translation. No big deal: now I use: scipy.ndimage.interpolation.rotate Bye bye. Mathieu Mathieu Galtier wrote: > Hello, > > am I right to think that the rotate function of PIL 1.1.6 is broken? > > Try this simple example: > > import Image > import numpy as np > tab = np.random.rand(100).reshape(10,10) > im = Image.fromarray(tab) > assert(im == im.rotate(0)) > > I went a bit further and it seems that rotate translates the image of > one pixel or so. > > Cheers > Mathieu > From flashk at gmail.com Thu Sep 10 20:00:38 2009 From: flashk at gmail.com (Farshid Lashkari) Date: Thu, 10 Sep 2009 11:00:38 -0700 Subject: [Image-SIG] Windows CRT issues with Python 2.6 Message-ID: <978d1eac0909101100m832c000g8d766d8a6b4550e8@mail.gmail.com> Hello, I've encountered an issue with distributing a Python 2.6 and PIL based application on Windows computers that do not have the VC 9.0 CRT installed. The problem is that the _imaging.pyd module fails to load. I believe the reason is that the file has an embedded manifest specifying the CRT version to load, which causes it to ignore the CRT files in the Python exe folder. The pyd files that ship with Python (_socket.pyd, etc..) do not have this problem because they are built without an embedded manifest, which causes them to inherit the CRT that is already loaded through the Python process. You can find information about this at the following bug report ( http://bugs.python.org/issue4120). Would it be possible to modify the PIL build process to not embed a manifest for Windows pyd files? Cheers, Farshid -------------- next part -------------- An HTML attachment was scrubbed... URL: From chris at simplistix.co.uk Fri Sep 11 15:49:50 2009 From: chris at simplistix.co.uk (Chris Withers) Date: Fri, 11 Sep 2009 14:49:50 +0100 Subject: [Image-SIG] Some issue with easy_install and PIL/Imaging In-Reply-To: References: Message-ID: <4AAA557E.70508@simplistix.co.uk> Klein St?phane wrote: > Resume : > 1. first question : why PIL package in "pypi" don't work ? Because Fred Lundh have his package distributions unfortunate names that setuptools doesn't like... > 2. second question : when I add PIL dependence in my setup.py and I do > "python setup.py develop", I've this error : > "error: Could not find required distribution Imaging". > Why ? See above. > Now, I add --find-links parameter to easy_install : If you google harder, you'll find there are packagings of PIL that do work with setuptools... Chris -- Simplistix - Content Management, Batch Processing & Python Consulting - http://www.simplistix.co.uk From wmummer at gmail.com Mon Sep 14 05:48:31 2009 From: wmummer at gmail.com (Bill Mummert) Date: Sun, 13 Sep 2009 23:48:31 -0400 Subject: [Image-SIG] 64bit windows OS Message-ID: <64b65e1d0909132048k19df9a2ap2deb291e627e3a96@mail.gmail.com> I am trying to install PIL 1.1.6 on a machine running a Windows Vista 64bit OS with Python 2.6 installed. I tried the windows installer, but it fails to detect my Python installation. Python is registered with the OS. I checked the registry using regedit. I was able to install another Python module py2exe using an installer they provide. I was just wondering if their was a 64 bit installer I missed or a simple work around to make PIL happen on this OS. Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From donn.ingle at gmail.com Tue Sep 15 08:15:38 2009 From: donn.ingle at gmail.com (Donn) Date: Tue, 15 Sep 2009 08:15:38 +0200 Subject: [Image-SIG] ImageFont family mojibake In-Reply-To: <200909140829.31228.donn.ingle@gmail.com> References: <200909140829.31228.donn.ingle@gmail.com> Message-ID: <200909150815.38968.donn.ingle@gmail.com> Just a ping. I am not sure if this reached the list. \d From efotinis at yahoo.com Tue Sep 15 14:06:20 2009 From: efotinis at yahoo.com (Elias Fotinis) Date: Tue, 15 Sep 2009 15:06:20 +0300 Subject: [Image-SIG] 64bit windows OS In-Reply-To: <64b65e1d0909132048k19df9a2ap2deb291e627e3a96@mail.gmail.com> References: <64b65e1d0909132048k19df9a2ap2deb291e627e3a96@mail.gmail.com> Message-ID: From: Bill Mummert > I am trying to install PIL 1.1.6 on a machine running a Windows Vista > 64bit OS with Python 2.6 installed. I tried the windows installer, but it > fails to detect my Python installation. Python is registered with the OS. > I checked the registry using regedit. I was able to install another Python > module py2exe using an installer they provide. I was just wondering if > their was a 64 bit installer I missed or a simple work around to make PIL > happen on this OS. Thanks! Last time I checked, there were no x64 binaries available, so I compiled PIL from source. I've been using it for some time now and it seems to work OK. I only added FreeType support just now and haven't tested it much, but TrueType fonts are rendered just fine in my tests. It's here if you want it: http://www.mediafire.com/?20h3zeimnke MD5: ac8f1d861af3f7b57466d882aad38a9f From donn.ingle at gmail.com Wed Sep 16 17:06:08 2009 From: donn.ingle at gmail.com (Donn) Date: Wed, 16 Sep 2009 17:06:08 +0200 Subject: [Image-SIG] ImageFont family mojibake In-Reply-To: <200909140829.31228.donn.ingle@gmail.com> References: <200909140829.31228.donn.ingle@gmail.com> Message-ID: <200909161706.08327.donn.ingle@gmail.com> Another ping. Is anyone seeing the OP? \d From p.f.moore at gmail.com Wed Sep 16 17:45:14 2009 From: p.f.moore at gmail.com (Paul Moore) Date: Wed, 16 Sep 2009 16:45:14 +0100 Subject: [Image-SIG] ImageFont family mojibake In-Reply-To: <200909161706.08327.donn.ingle@gmail.com> References: <200909140829.31228.donn.ingle@gmail.com> <200909161706.08327.donn.ingle@gmail.com> Message-ID: <79990c6b0909160845o7ea61b79i8e5043f97d9bdf0f@mail.gmail.com> 2009/9/16 Donn : > Another ping. Is anyone seeing the OP? > \d I see it. Just can't help... From donn.ingle at gmail.com Wed Sep 16 17:50:11 2009 From: donn.ingle at gmail.com (Donn) Date: Wed, 16 Sep 2009 17:50:11 +0200 Subject: [Image-SIG] ImageFont family mojibake In-Reply-To: <200909140829.31228.donn.ingle@gmail.com> References: <200909140829.31228.donn.ingle@gmail.com> Message-ID: <200909161750.11534.donn.ingle@gmail.com> Thanks to Stani for letting me know I did reach the list. Seems I disabled my receiving of email from the list a while back and I forgot about it. I will get mail from now on, but am not sure if anyone weighed-in on the OP. Is there any feedback? If so, is there a link to the archives somewhere? Thanks, sorry for the noise. \d From p.f.moore at gmail.com Wed Sep 16 17:53:27 2009 From: p.f.moore at gmail.com (Paul Moore) Date: Wed, 16 Sep 2009 16:53:27 +0100 Subject: [Image-SIG] ImageFont family mojibake In-Reply-To: <200909161750.11534.donn.ingle@gmail.com> References: <200909140829.31228.donn.ingle@gmail.com> <200909161750.11534.donn.ingle@gmail.com> Message-ID: <79990c6b0909160853u4404c4d4q96047c89e25f8ded@mail.gmail.com> 2009/9/16 Donn : > Thanks to Stani for letting me know I did reach the list. Seems I disabled my > receiving of email from the list a while back and I forgot about it. > > I will get mail from now on, but am not sure if anyone weighed-in on the OP. > Is there any feedback? If so, is there a link to the archives somewhere? > > Thanks, sorry for the noise. > \d I've seen 3 mails from you and no replies. Looks like nobody's been able to help. Paul From mike.lwrnc at gmail.com Thu Sep 17 13:42:05 2009 From: mike.lwrnc at gmail.com (Mike Lawrence) Date: Thu, 17 Sep 2009 08:42:05 -0300 Subject: [Image-SIG] Installing PIL on Snow Leopard with Python 2.6.2 Message-ID: <37fda5350909170442q6a6bbe51vbf797a3fffd639b5@mail.gmail.com> Hi all, I have a fresh install (started with a wiped drive) of Snow Leopard with the developer tools installed during the Snow Leopard installation. I then installed Python 2.6.2, replacing the Snow Leopard default python 2.6.1. I've tried to install PIL by (1) easy_install (2) pip and (3) downloading source and running "python setup.py build" manually. All yield the same error (link to pip log: http://drop.io/gi2bgw6). I've seen others have had success installing PIL using the Snow Leopard default python 2.6.1, so I'm not sure why I'm having so much trouble getting it to work with 2.6.2. Any help would be greatly appreciated! Cheers, Mike -- Mike Lawrence Graduate Student Department of Psychology Dalhousie University Looking to arrange a meeting? Check my public calendar: http://tr.im/mikes_public_calendar ~ Certainty is folly... I think. ~ From efotinis at yahoo.com Fri Sep 18 11:41:03 2009 From: efotinis at yahoo.com (Elias Fotinis) Date: Fri, 18 Sep 2009 12:41:03 +0300 Subject: [Image-SIG] 64bit windows OS In-Reply-To: <64b65e1d0909132048k19df9a2ap2deb291e627e3a96@mail.gmail.com> References: <64b65e1d0909132048k19df9a2ap2deb291e627e3a96@mail.gmail.com> Message-ID: <7BF7F0F270894C5DA32B2CF839885F4F@efcore> From: Bill Mummert > I am trying to install PIL 1.1.6 on a machine running a Windows Vista > 64bit OS with Python 2.6 installed. I tried the windows installer, but it > fails to detect my Python installation. Python is registered with the OS. > I checked the registry using regedit. I was able to install another Python > module py2exe using an installer they provide. I was just wondering if > their was a 64 bit installer I missed or a simple work around to make PIL > happen on this OS. Thanks! Now that I reread your post, you don't specify whether you're using the 32- or 64-bit Python. My previous response is only relevant for Python x64. Otherwise, there's probably a mismatch of library versions or an incomplete installation of Python. From Mike.Lawrence at dal.ca Fri Sep 18 12:08:01 2009 From: Mike.Lawrence at dal.ca (Mike Lawrence) Date: Fri, 18 Sep 2009 07:08:01 -0300 Subject: [Image-SIG] Installing PIL on Snow Leopard with Python 2.6.2 In-Reply-To: <37fda5350909170442q6a6bbe51vbf797a3fffd639b5@mail.gmail.com> References: <37fda5350909170442q6a6bbe51vbf797a3fffd639b5@mail.gmail.com> Message-ID: <37fda5350909180308r7fdcee82j941d6adccff1605@mail.gmail.com> Nevermind, I found the solution elsewhere: http://stackoverflow.com/questions/1438270/installing-python-imaging-library-pil-on-snow-leopard-with-updated-python-2-6-2 On Thu, Sep 17, 2009 at 8:42 AM, Mike Lawrence wrote: > Hi all, > > I have a fresh install (started with a wiped drive) of Snow Leopard > with the developer tools installed during the Snow Leopard > installation. I then installed Python 2.6.2, replacing the Snow > Leopard default python 2.6.1. I've tried to install PIL by (1) > easy_install (2) pip and (3) downloading source and running "python > setup.py build" manually. All yield the same error (link to pip log: > http://drop.io/gi2bgw6). I've seen others have had success installing > PIL using the Snow Leopard default python 2.6.1, so I'm not sure why > I'm having so much trouble getting it to work with 2.6.2. Any help > would be greatly appreciated! > > Cheers, > > Mike > > -- > Mike Lawrence > Graduate Student > Department of Psychology > Dalhousie University > > Looking to arrange a meeting? Check my public calendar: > http://tr.im/mikes_public_calendar > > ~ Certainty is folly... I think. ~ > -- Mike Lawrence Graduate Student Department of Psychology Dalhousie University Looking to arrange a meeting? Check my public calendar: http://tr.im/mikes_public_calendar ~ Certainty is folly... I think. ~ From efotinis at yahoo.com Sat Sep 19 08:36:34 2009 From: efotinis at yahoo.com (Elias Fotinis) Date: Sat, 19 Sep 2009 09:36:34 +0300 Subject: [Image-SIG] 64bit windows OS In-Reply-To: <64b65e1d0909181056w287dc62bq1d212b7ee7dcdf5d@mail.gmail.com> References: <64b65e1d0909132048k19df9a2ap2deb291e627e3a96@mail.gmail.com> <7BF7F0F270894C5DA32B2CF839885F4F@efcore> <64b65e1d0909181056w287dc62bq1d212b7ee7dcdf5d@mail.gmail.com> Message-ID: <8B229856F92E4859950F0634F3BE08FC@efcore> From: Bill Mummert > I missed your previous response. I am using the 64 bit version of Python. > The Python 64 bit install appeared to complete fully. I am able to > execute source code, and I am able to install py2exe. I have also tried > using the PIL source kit which is labeled for all OS, but I get hit with > an error in this attempt when I try to compile the library following the > instructions in the readme file. > > As a side note, I successfully installed 32 bit Python, PIL, and other > libraries on this same system with complete success. So I do have a > working option. Thank you for your responses. In my previous post (in case you still can't see it) I provided a 64-bit PIL version compiled from source: http://www.mediafire.com/?20h3zeimnke I don't blame you for opting to go with Python 32-bit. It still too early for full transition to 64-bit, at least in Windows-land, where compiling stuff is not an OS feature. :o) As for building PIL x64, if you want full feature support, you have to build some dependencies as well (zlib, libpng, jpeglib, and freetype). It's a bit convoluted; if you or anyone else want instructions, I'll post them here. From irek.szczesniak at gmail.com Thu Sep 24 18:27:09 2009 From: irek.szczesniak at gmail.com (Ireneusz Szczesniak) Date: Thu, 24 Sep 2009 18:27:09 +0200 Subject: [Image-SIG] PIL: problem reading an MSP image Message-ID: <4ABB9DDD.7030406@gmail.com> Hi, I want to convert an MSP image to a PNG image, but I get errors when reading the MSP image. I'm attaching the gzipped input image image.msp that I had to rename to image._msp, because of my mail server. This is the script: > #!/usr/bin/python > > import Image > import sys > > im = Image.open("image.msp") > im.save("image.png", "PNG") This is the error that I get: > Traceback (most recent call last): > File "./test.py", line 7, in > im.save("image.png", "PNG") > File "/usr/lib/python2.5/site-packages/PIL/Image.py", line 1373, > in save > self.load() > File "/usr/lib/python2.5/site-packages/PIL/ImageFile.py", line > 192, in load > raise IOError("image file is truncated (%d bytes not processed)" > % len(b)) > IOError: image file is truncated (0 bytes not processed) When I call the verify method right after the open method, I get this: > Traceback (most recent call last): > File "./test.py", line 8, in > im.save("image.png", "PNG") > File "/usr/lib/python2.5/site-packages/PIL/Image.py", line 1373, > in save > self.load() > File "/usr/lib/python2.5/site-packages/PIL/ImageFile.py", line > 161, in load > read = self.fp.read > AttributeError: 'NoneType' object has no attribute 'read' I'm using Python 2.5.2 on Ubuntu 8.04. Thanks & best, Irek -- Ireneusz (Irek) Szczesniak http://www.irkos.org -------------- next part -------------- A non-text attachment was scrubbed... Name: image._msp.gz Type: application/x-gzip Size: 4221 bytes Desc: not available URL: From janssen at parc.com Thu Sep 24 18:33:12 2009 From: janssen at parc.com (Bill Janssen) Date: Thu, 24 Sep 2009 09:33:12 PDT Subject: [Image-SIG] Python bindings for JasPer JPEG2000 library? In-Reply-To: <8B229856F92E4859950F0634F3BE08FC@efcore> References: <64b65e1d0909132048k19df9a2ap2deb291e627e3a96@mail.gmail.com> <7BF7F0F270894C5DA32B2CF839885F4F@efcore> <64b65e1d0909181056w287dc62bq1d212b7ee7dcdf5d@mail.gmail.com> <8B229856F92E4859950F0634F3BE08FC@efcore> Message-ID: <3274.1253809992@parc.com> Anyone have Python bindings for the JasPer or OpenJPEG JPEG2000 libraries? Bill From cgohlke at uci.edu Mon Sep 14 21:17:19 2009 From: cgohlke at uci.edu (Christoph Gohlke) Date: Mon, 14 Sep 2009 12:17:19 -0700 Subject: [Image-SIG] 64bit windows OS Message-ID: <4AAE96BF.6030208@uci.edu> Chances are that you trying to install the 32-bit version of PIL 1.1.6 on a 64-bit Python version. That will not work. I have a 64-bit build of PIL 1.1.7 available on my homepage . Christoph From cannon.el at gmail.com Tue Sep 15 17:59:21 2009 From: cannon.el at gmail.com (Laura & Edward Cannon) Date: Tue, 15 Sep 2009 08:59:21 -0700 Subject: [Image-SIG] Problem when resizing large JPEG to thumbnail In-Reply-To: References: Message-ID: On Mon, Aug 31, 2009 at 7:44 PM, Etienne Desautels wrote: > > Hi, > > I'm using sorl-thumbnail in Django to automatically resize my images. > sorl-thumbnail use PIL to do is image manipulations. > > Unfortunately the result thumbnails are far from pretty. You can see some > tests here: > http://www.teknozen.net/resize_pil.html > > Here's the code I (and sorl) use to create the thumbnails: > > im = Image.open('source.jpg') > > if im.mode not in ("L", "RGB", "RGBA"): > __im = im.convert("RGB") > > im = im.crop((568, 783, 3164, 3379)) > > im = im.resize((70, 70), resample=Image.ANTIALIAS) > > im.save('pil.jpg', "JPEG", quality=95) > > Pretty straightforward. I did some tests with ImageMagick to compare the > result. The difference is huge. The ImageMagick thumbnail looks great. In > contrast he PIL thumbnail look blocky and blurry at the same time and the > colors are all fade out. I don't think the jpeg compression is the problem, > I set it to 95. > > I did a test with resample=Image.BICUBIC and the result is really bad. But I > don't think that BICUBIC was really applied because I got the exactly same > result when I use resample=Image.NEAREST. > > Also, at the beginning, my source file was a TIFF in CMYK. The color of the > generated thumbnail was completely off. That's why I convert it to RGB JPEG > in Photoshop. > > > So after experimenting, I see 3 problems: > 1. Resize with ANTIALIAS from a large JPEG to a small thumbnail give poor > image quality. > 2. BICUBIC, when set, is not applied. Instead NEAREST is use. > 3. Converting from TIFF CMYK to RGB shift the colors dramatically. > > Is all theses points are normal behavior ? > > Etienne > _______________________________________________ > Image-SIG maillist ?- ?Image-SIG at python.org > http://mail.python.org/mailman/listinfo/image-sig > I am not familiar with sorl-thumbnail, so I can't say as to the exact workings, but from your example it looks like you are just using PIL. The thumbnail looks ok to me, the only thing that perhaps might be different between the ImageMagic and the PIL is a color profile. PIL does not automatically retain extra information attached with an image (too hard to tell if it is still valid in the general case) so perhaps if your monitor is calibrated nicely you would notice a difference. As to the CMYK issue, this has been discussed before, and is still and open issue, I believe, although there might be a workaround--search the mailing lists. Edward From cannon.el at gmail.com Tue Sep 15 19:47:22 2009 From: cannon.el at gmail.com (Laura & Edward Cannon) Date: Tue, 15 Sep 2009 10:47:22 -0700 Subject: [Image-SIG] JPEG low quality In-Reply-To: References: Message-ID: On Wed, Sep 2, 2009 at 1:04 PM, Vinicius Mendes wrote: > Hi, > > I've created a script using PIL that opens a JPEG image and saves it with > another name. What happens is that the saved image's quality is gets very > low, even if I set quality=100. Somebody already experienced such a problem? > Knows how to achieve a better quality? Saving the image as PNG the quality > is perfect, but the filesize gets huge. > > The code I used was: > > from PIL import Image > imagem = Image.open("original_file.jpg") > imagem.save("file_saved_by_pil.jpg", "JPEG", quality=100, progressive=True) > > The original image file is: http://twitpic.com/g86ug > And this is the one generated by PIL: http://twitpic.com/g8735 > > Pay attention that the original file has the text "conhe?a" legible and with > a good filesize. The one generated by PIL has almost the same filesize but > the text is illegible. > > My script will do more sutff then just open and save the image with another > name: it will open two images, put one above the other and write some text > on it. This was already achieved. The problem is just the quality. > > Thanks for the patience. > --- > Vin?cius Mendes > Computer Engineer > http://meiocodigo.com/ > > _______________________________________________ > Image-SIG maillist ?- ?Image-SIG at python.org > http://mail.python.org/mailman/listinfo/image-sig > > don't try and save with quality=100, values above 95 are not recommended. You might also try not using the progressive option and see if that works better for you. Also re-saving JPEG's always leads to a loss in quality. Edward From andreas.briese at animcare-sci.de Fri Sep 18 13:29:05 2009 From: andreas.briese at animcare-sci.de (Andreas Briese) Date: Fri, 18 Sep 2009 13:29:05 +0200 Subject: [Image-SIG] imaging c module is not installed Message-ID: Dear Developers, 2x2.8 GHz Quad-Core Intel Xeon (MacPro) MacOSX 10.5.8 XCode 3.14 I dont find a way to install PIL 1.1.5 or 1.1.6 with python 2.5.4 or 2.6.2. However allways the '*** The _imaging C module is not installed' message pops up at end. PYTHONPATH and PATH is checked. The module _imaging.so , _imagingft.so, _imagingmath.so, _imagingtk.so are availlable at ../site-packages/PIL frameworks in /Library/frameworks and /System/Library/frameworks are linked symbolically The pity is, everything worked fine with PIL 1.1.5 and python 2.5.4 before i tried installing python 2.6.2 But i cannot evebn bring back the prior situation, it seems. I'am really desperate now. Any idea how to solve this? Andreas running build_ext --- using frameworks at /Library/Frameworks building '_imaging' extension creating build creating build/temp.macosx-10.3-i386-2.5 creating build/temp.macosx-10.3-i386-2.5/libImaging gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c _imaging.c -o build/temp.macosx-10.3-i386-2.5/_imaging.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from _imaging.c:76: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? _imaging.c:2907: warning: initialization from incompatible pointer type _imaging.c:2967: warning: initialization from incompatible pointer type _imaging.c:2907: warning: initialization from incompatible pointer type _imaging.c:2967: warning: initialization from incompatible pointer type gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c decode.c -o build/temp.macosx-10.3-i386-2.5/decode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from decode.c:33: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c encode.c -o build/temp.macosx-10.3-i386-2.5/encode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from encode.c:26: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c map.c -o build/temp.macosx-10.3-i386-2.5/map.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from map.c:22: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c display.c -o build/temp.macosx-10.3-i386-2.5/display.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from display.c:26: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c outline.c -o build/temp.macosx-10.3-i386-2.5/outline.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from outline.c:21: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c path.c -o build/temp.macosx-10.3-i386-2.5/path.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from path.c:30: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? path.c:559: warning: initialization from incompatible pointer type path.c:559: warning: initialization from incompatible pointer type gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Access.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Access.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Access.c:18: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Antialias.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Antialias.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Antialias.c:16: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Bands.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Bands.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Bands.c:19: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/BitDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/BitDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/BitDecode.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Blend.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Blend.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Blend.c:19: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Chops.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Chops.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Chops.c:20: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Convert.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Convert.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Convert.c:36: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/ConvertYCbCr.c -o build/temp.macosx-10.3-i386-2.5/libImaging/ConvertYCbCr.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/ConvertYCbCr.c:15: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Copy.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Copy.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Copy.c:19: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Crc32.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Crc32.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Crc32.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Crop.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Crop.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Crop.c:19: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Dib.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Dib.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Dib.c:23: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Draw.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Draw.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Draw.c:35: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Effects.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Effects.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Effects.c:19: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/EpsEncode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/EpsEncode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/EpsEncode.c:21: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/File.c -o build/temp.macosx-10.3-i386-2.5/libImaging/File.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/File.c:19: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Fill.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Fill.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Fill.c:19: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Filter.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Filter.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Filter.c:27: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/FliDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/FliDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/FliDecode.c:18: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Geometry.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Geometry.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Geometry.c:28: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/GetBBox.c -o build/temp.macosx-10.3-i386-2.5/libImaging/GetBBox.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/GetBBox.c:20: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/GifDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/GifDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/GifDecode.c:25: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/GifEncode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/GifEncode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/GifEncode.c:20: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/HexDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/HexDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/HexDecode.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Histo.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Histo.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Histo.c:20: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/JpegDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/JpegDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/JpegDecode.c:25: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/JpegEncode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/JpegEncode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/JpegEncode.c:23: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/LzwDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/LzwDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/LzwDecode.c:31: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Matrix.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Matrix.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Matrix.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/ModeFilter.c -o build/temp.macosx-10.3-i386-2.5/libImaging/ModeFilter.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/ModeFilter.c:16: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/MspDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/MspDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/MspDecode.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Negative.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Negative.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Negative.c:20: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Offset.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Offset.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Offset.c:18: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Pack.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Pack.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Pack.c:29: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/PackDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/PackDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/PackDecode.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Palette.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Palette.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Palette.c:20: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Paste.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Paste.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Paste.c:24: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Quant.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Quant.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Quant.c:21: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/QuantHash.c -o build/temp.macosx-10.3-i386-2.5/libImaging/QuantHash.o In file included from /usr/include/math.h:26, from libImaging/QuantHash.c:22: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/QuantHeap.c -o build/temp.macosx-10.3-i386-2.5/libImaging/QuantHeap.o In file included from /usr/include/math.h:26, from libImaging/QuantHeap.c:22: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/PcdDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/PcdDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/PcdDecode.c:23: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/PcxDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/PcxDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/PcxDecode.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/PcxEncode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/PcxEncode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/PcxEncode.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Point.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Point.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Point.c:23: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/RankFilter.c -o build/temp.macosx-10.3-i386-2.5/libImaging/RankFilter.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/RankFilter.c:15: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/RawDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/RawDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/RawDecode.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/RawEncode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/RawEncode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/RawEncode.c:21: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Storage.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Storage.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Storage.c:38: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/SunRleDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/SunRleDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/SunRleDecode.c:19: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/TgaRleDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/TgaRleDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/TgaRleDecode.c:18: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/Unpack.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Unpack.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/Unpack.c:33: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/UnpackYCC.c -o build/temp.macosx-10.3-i386-2.5/libImaging/UnpackYCC.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/UnpackYCC.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/XbmDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/XbmDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/XbmDecode.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/XbmEncode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/XbmEncode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/XbmEncode.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/ZipDecode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/ZipDecode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/ZipDecode.c:19: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c libImaging/ZipEncode.c -o build/temp.macosx-10.3-i386-2.5/libImaging/ZipEncode.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from libImaging/ZipEncode.c:18: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? creating build/lib.macosx-10.3-i386-2.5 gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup build/temp.macosx-10.3-i386-2.5/_imaging.o build/temp.macosx-10.3-i386-2.5/decode.o build/temp.macosx-10.3-i386-2.5/encode.o build/temp.macosx-10.3-i386-2.5/map.o build/temp.macosx-10.3-i386-2.5/display.o build/temp.macosx-10.3-i386-2.5/outline.o build/temp.macosx-10.3-i386-2.5/path.o build/temp.macosx-10.3-i386-2.5/libImaging/Access.o build/temp.macosx-10.3-i386-2.5/libImaging/Antialias.o build/temp.macosx-10.3-i386-2.5/libImaging/Bands.o build/temp.macosx-10.3-i386-2.5/libImaging/BitDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/Blend.o build/temp.macosx-10.3-i386-2.5/libImaging/Chops.o build/temp.macosx-10.3-i386-2.5/libImaging/Convert.o build/temp.macosx-10.3-i386-2.5/libImaging/ConvertYCbCr.o build/temp.macosx-10.3-i386-2.5/libImaging/Copy.o build/temp.macosx-10.3-i386-2.5/libImaging/Crc32.o build/temp.macosx-10.3-i386-2.5/libImaging/Crop.o build/temp.macosx-10.3-i386-2.5/libImaging/Dib.o build/temp.macosx-10.3-i386-2.5/libImaging/Draw.o build/temp.macosx-10.3-i386-2.5/libImaging/Effects.o build/temp.macosx-10.3-i386-2.5/libImaging/EpsEncode.o build/temp.macosx-10.3-i386-2.5/libImaging/File.o build/temp.macosx-10.3-i386-2.5/libImaging/Fill.o build/temp.macosx-10.3-i386-2.5/libImaging/Filter.o build/temp.macosx-10.3-i386-2.5/libImaging/FliDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/Geometry.o build/temp.macosx-10.3-i386-2.5/libImaging/GetBBox.o build/temp.macosx-10.3-i386-2.5/libImaging/GifDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/GifEncode.o build/temp.macosx-10.3-i386-2.5/libImaging/HexDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/Histo.o build/temp.macosx-10.3-i386-2.5/libImaging/JpegDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/JpegEncode.o build/temp.macosx-10.3-i386-2.5/libImaging/LzwDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/Matrix.o build/temp.macosx-10.3-i386-2.5/libImaging/ModeFilter.o build/temp.macosx-10.3-i386-2.5/libImaging/MspDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/Negative.o build/temp.macosx-10.3-i386-2.5/libImaging/Offset.o build/temp.macosx-10.3-i386-2.5/libImaging/Pack.o build/temp.macosx-10.3-i386-2.5/libImaging/PackDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/Palette.o build/temp.macosx-10.3-i386-2.5/libImaging/Paste.o build/temp.macosx-10.3-i386-2.5/libImaging/Quant.o build/temp.macosx-10.3-i386-2.5/libImaging/QuantHash.o build/temp.macosx-10.3-i386-2.5/libImaging/QuantHeap.o build/temp.macosx-10.3-i386-2.5/libImaging/PcdDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/PcxDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/PcxEncode.o build/temp.macosx-10.3-i386-2.5/libImaging/Point.o build/temp.macosx-10.3-i386-2.5/libImaging/RankFilter.o build/temp.macosx-10.3-i386-2.5/libImaging/RawDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/RawEncode.o build/temp.macosx-10.3-i386-2.5/libImaging/Storage.o build/temp.macosx-10.3-i386-2.5/libImaging/SunRleDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/TgaRleDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/Unpack.o build/temp.macosx-10.3-i386-2.5/libImaging/UnpackYCC.o build/temp.macosx-10.3-i386-2.5/libImaging/XbmDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/XbmEncode.o build/temp.macosx-10.3-i386-2.5/libImaging/ZipDecode.o build/temp.macosx-10.3-i386-2.5/libImaging/ZipEncode.o -L/usr/local/lib L/Library/Frameworks/Python.framework/Versions/2.5/lib -L/usr/lib -ljpeg -lz -o build/lib.macosx-10.3-i386-2.5/_imaging.so ld warning: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libjpeg.a, file is not of required architecture building '_imagingft' extension gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c _imagingft.c -o build/temp.macosx-10.3-i386-2.5/_imagingft.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from _imagingft.c:20: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup build/temp.macosx-10.3-i386-2.5/_imagingft.o -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/2.5/lib -L/usr/lib -lfreetype -o build/lib.macosx-10.3-i386-2.5/_imagingft.so building '_imagingtk' extension creating build/temp.macosx-10.3-i386-2.5/Tk gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c _imagingtk.c -o build/temp.macosx-10.3-i386-2.5/_imagingtk.o -framework Tcl -framework Tk In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from _imagingtk.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? i686-apple-darwin9-gcc-4.0.1: -framework: linker input file unused because linking not done i686-apple-darwin9-gcc-4.0.1: Tcl: linker input file unused because linking not done i686-apple-darwin9-gcc-4.0.1: powerpc-apple-darwin9-gcc-4.0.1: -framework: linker input file unused because linking not done i686-apple-darwin9-gcc-4.0.1: -framework: linker input file unused because linking not doneTk: linker input file unused because linking not done powerpc-apple-darwin9-gcc-4.0.1: Tcl: linker input file unused because linking not done powerpc-apple-darwin9-gcc-4.0.1: -framework: linker input file unused because linking not done powerpc-apple-darwin9-gcc-4.0.1: Tk: linker input file unused because linking not done gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c Tk/tkImaging.c -o build/temp.macosx-10.3-i386-2.5/Tk/tkImaging.o -framework Tcl -framework Tk In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from libImaging/ImPlatform.h:10, from libImaging/Imaging.h:14, from Tk/tkImaging.c:53: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? i686-apple-darwin9-gcc-4.0.1: powerpc-apple-darwin9-gcc-4.0.1: -framework: linker input file unused because linking not done powerpc-apple-darwin9-gcc-4.0.1: Tcl: linker input file unused because linking not done powerpc-apple-darwin9-gcc-4.0.1: -framework: linker input file unused because linking not done-framework: linker input file unused because linking not done i686-apple-darwin9-gcc-4.0.1: powerpc-apple-darwin9-gcc-4.0.1: Tk: linker input file unused because linking not doneTcl: linker input file unused because linking not done i686-apple-darwin9-gcc-4.0.1: -framework: linker input file unused because linking not done i686-apple-darwin9-gcc-4.0.1: Tk: linker input file unused because linking not done gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup build/temp.macosx-10.3-i386-2.5/_imagingtk.o build/temp.macosx-10.3-i386-2.5/Tk/tkImaging.o -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/2.5/lib -L/usr/lib -o build/lib.macosx-10.3-i386-2.5/_imagingtk.so -framework Tcl -framework Tk building '_imagingmath' extension gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tk.framework/Headers -I/usr/local/include/freetype2 -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.5/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c _imagingmath.c -o build/temp.macosx-10.3-i386-2.5/_imagingmath.o In file included from /usr/include/math.h:26, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, from _imagingmath.c:17: /usr/include/architecture/ppc/math.h:675: warning: conflicting types for built-in function ?scalb? gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup build/temp.macosx-10.3-i386-2.5/_imagingmath.o -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/2.5/lib -L/usr/lib -o build/lib.macosx-10.3-i386-2.5/_imagingmath.so -------------------------------------------------------------------- PIL 1.1.6 BUILD SUMMARY -------------------------------------------------------------------- version 1.1.6 platform darwin 2.5.4 (r254:67917, Dec 23 2008, 14:57:27) [GCC 4.0.1 (Apple Computer, Inc. build 5363)] -------------------------------------------------------------------- --- TKINTER support ok --- JPEG support ok --- ZLIB (PNG/ZIP) support ok --- FREETYPE2 support ok -------------------------------------------------------------------- To check the build, run the selftest.py script. itt04:Imaging-1.1.6 andreasbriese$ python selftest.py *** The _imaging C module is not installed itt04:Imaging-1.1.6 andreasbriese$ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Dr. med. vet. Andreas Briese Landesbeauftragter f?r den Tierschutz des Landes Niedersachsen a. D. FTA Tierschutzkunde, FTA Tierhygiene Stiftung Tier?rztliche Hochschule Hannover Institut f?r Tierhygiene, Tierschutz und Nutztierethologie B?nteweg 17p 30559 Hannover Tel.: (+49) 511 953-8837 Fax.: (+49) 511 953-8588 E-Mail: andreas.briese at tiho-hannover.de E-Mail: andreas_briese at animcare-sci.de (large attachments) +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ This message is intended exclusively for the addressee. It may contain information that is confidential. Any use or publication of this e-mail message without permission of the sender is not allowed. If you are not the intended recipient, please notify us and delete this message. From jeffm at fifengr.com Mon Sep 21 04:43:54 2009 From: jeffm at fifengr.com (Jeff Mathews) Date: Sun, 20 Sep 2009 20:43:54 -0600 Subject: [Image-SIG] Image.open fails when called more than 254 times Message-ID: <1dc48b360909201943i50e5307qebd130e2366f8d32@mail.gmail.com> Using PIL 1.1.6 and the code... image = Image.open(filename) This works well, until the 255th time. All subsequent calls fail with IOError. Is this a bug in PIL? I am trying to load several hundred images and best fit rectangle pack them so it's best to open them all at once. -------------- next part -------------- An HTML attachment was scrubbed... URL: From cpepera at mines.edu Mon Sep 21 23:28:04 2009 From: cpepera at mines.edu (Chuck Pepe-Ranney) Date: Mon, 21 Sep 2009 15:28:04 -0600 Subject: [Image-SIG] manipulating image for counting microbial cells Message-ID: Hello, I am wondering if I can use PIL to manipulate some fluorescent microscopy images. Specifically, I will have two images of the same field but each will be taken under different emission filters. What I need to do is loop through the pixels in the first image multiply each pixel's intensity by a factor then divide it by the intensity of the spatially corresponding pixel in the second image. There are more steps to follow but they are seemingly routine image manipulation tasks. The images will be in tiff format. Would PIL be a suitable solution to this problem? Thanks for the help in advance, - Chuck -------------- next part -------------- An HTML attachment was scrubbed... URL: From halbert at halwitz.org Fri Sep 25 00:06:55 2009 From: halbert at halwitz.org (Dan Halbert) Date: Thu, 24 Sep 2009 18:06:55 -0400 Subject: [Image-SIG] manipulating image for counting microbial cells In-Reply-To: References: Message-ID: <4ABBED7F.5010001@halwitz.org> Chuck Pepe-Ranney wrote: > Hello, > I am wondering if I can use PIL to manipulate some fluorescent > microscopy images. Specifically, I will have two images of the same > field but each will be taken under different emission filters. What I > need to do is loop through the pixels in the first image multiply each > pixel's intensity by a factor then divide it by the intensity of the > spatially corresponding pixel in the second image. There are more > steps to follow but they are seemingly routine image manipulation > tasks. The images will be in tiff format. Would PIL be a suitable > solution to this problem? I don't claim to be an expert, but here are some suggestions. You can do simple manipulation in PIL. See for instance the ImageChops, ImageMath, etc. modules. Also take note of the "pixel access object", new in PIL 1.1.6, described under "load" in http://www.pythonware.com/library/pil/handbook/image.htm. Another alternative is to do the image manipulation in numpy/scipy. Also new in PIL 1.1.6 are operations to convert PIL images to and from numpy arrays. See asarray() and fromarray() here: http://effbot.org/zone/pil-changes-116.htm. Yet another alternative for sophisticated image manipulation is OpenCV, a C/C++ library with several python interfaces. OpenCV 1.0 is well-documented in an O'Reilly book. OpenCV 2.0 just came out in beta (the beta is called 1.2, for some reason), and has an improved python interface which I have not looked at yet. Dan From fredrik at pythonware.com Fri Sep 25 10:07:13 2009 From: fredrik at pythonware.com (Fredrik Lundh) Date: Fri, 25 Sep 2009 10:07:13 +0200 Subject: [Image-SIG] Image.open fails when called more than 254 times In-Reply-To: <1dc48b360909201943i50e5307qebd130e2366f8d32@mail.gmail.com> References: <1dc48b360909201943i50e5307qebd130e2366f8d32@mail.gmail.com> Message-ID: <368a5cd50909250107uab966bekf931493167c41c7b@mail.gmail.com> On Mon, Sep 21, 2009 at 4:43 AM, Jeff Mathews wrote: > Using PIL 1.1.6 and the code... > image = Image.open(filename) > This works well, until the 255th time.? All subsequent calls fail with > IOError.? Is this a bug in PIL? I am trying to load several hundred images > and best fit rectangle pack them so it's best to open them all at once. Please quote the entire error message so we don't have to guess what's happening on your machine. In this case, I assume you're running out of file handles. PIL uses lazy loading, so this is expected if you open many files without doing anything with them (even if the limit is usually higher than 254 handles). To work around this, make sure to explicitly load the image into memory before you open the next one. E.g. instead of doing for filename in long list: images.append(Image.open(filename)) in a big loop, do for filename in long list: im = Image.open(filename) im.load() images.append(im) Alternatively, if you just need one or more attributes, copy the attributes from the image object and leave the rest to the garbage collector: for filename in long list: im = Image.open(filename) sizes.append(im.size) # the gc will release im on the next round through the for loop From d_berthelot at yahoo.com Thu Sep 24 21:47:13 2009 From: d_berthelot at yahoo.com (David Berthelot) Date: Thu, 24 Sep 2009 12:47:13 -0700 (PDT) Subject: [Image-SIG] manipulating image for counting microbial cells In-Reply-To: References: Message-ID: <947291.40080.qm@web57601.mail.re1.yahoo.com> I do some pretty fancy image manipulation and I use numpy + PIL to do my processing. What you are describing can easily be achieved by using those packages together. ________________________________ From: Chuck Pepe-Ranney To: image-sig at python.org Sent: Monday, September 21, 2009 2:28:04 PM Subject: [Image-SIG] manipulating image for counting microbial cells Hello, I am wondering if I can use PIL to manipulate some fluorescent microscopy images. Specifically, I will have two images of the same field but each will be taken under different emission filters. What I need to do is loop through the pixels in the first image multiply each pixel's intensity by a factor then divide it by the intensity of the spatially corresponding pixel in the second image. There are more steps to follow but they are seemingly routine image manipulation tasks. The images will be in tiff format. Would PIL be a suitable solution to this problem? Thanks for the help in advance, - Chuck -------------- next part -------------- An HTML attachment was scrubbed... URL: From sierra_mtnview at sbcglobal.net Fri Sep 25 12:49:02 2009 From: sierra_mtnview at sbcglobal.net (Wayne Watson) Date: Fri, 25 Sep 2009 03:49:02 -0700 Subject: [Image-SIG] [OT]Anyone with Experience Using WinTV Capture Cards? Message-ID: <4ABCA01E.4040907@sbcglobal.net> A friend is looking for some help with how to use Python to access a WinTV (Go Plus) capture card, and how to display an image from it. Is there some facility that might help him, or does anyone have experience with such use that might suggest sources? Win XP OS. Any general methods for dealing with such commercially built capture cards? -- Wayne Watson (Watson Adventures, Prop., Nevada City, CA) (121.015 Deg. W, 39.262 Deg. N) GMT-8 hr std. time) Obz Site: 39? 15' 7" N, 121? 2' 32" W, 2700 feet "I feel that if a person has problems communicating the very least he can do is to shut up." -- Tom Lehrer Web Page: From bram-mertens at linux.be Sat Sep 26 17:05:25 2009 From: bram-mertens at linux.be (Bram Mertens) Date: Sat, 26 Sep 2009 17:05:25 +0200 Subject: [Image-SIG] conflict between various library to process EXIF data Message-ID: <4ABE2DB5.20809@linux.be> Hi, How to read and write EXIF data from images has been discussed several times before but I could not find a discussion on the problem I've run into when using multiple of these. In short: after adding a comment to the EXIF header using the setComment(...) and writeMetadata(...) methods of pyeviv2 (http://tilloy.net/dev/pyexiv2/doc/release-0.1.2/pyexiv2.htm) the EXIF header is altered in such a way that it is no longer possible to read the EXIF header with EXIF.py. Furthermore imghdr does not even recognize it as a JPEG anymore. >>> import imghdr >>> type = imghdr.what('DSC02299.JPG') >>> print type jpeg >>> type = imghdr.what('20070623-171634-DSC-H5.jpg') >>> print type None Also the file command in Linux no longer recognizes the EXIF header: before: $ file DSC02299.JPG DSC02299.JPG: JPEG image data, EXIF standard 2.21 after: $ file 20070623-171634-DSC-H5.jpg 20070623-171634-DSC-H5.jpg: JPEG image data (Note: part of the processing done is to rename the image based on the date in the EXIF header) I switched from EXIF.py to pyexiv2 because the first does not provide a method to add a comment to the header. Considering the fact that EXIF.py appears to be no longer under active development I simply replaced all my calls to EXIF.py with calls to the relevant pyexeiv2 methods. However imghdr is part of the standard library so the fact it will not recognize the image anymore makes me wonder if maybe pyexiv2 is doing something "wrong" that might cause other problems later on. Can anybody provide insight into this? Thanks in advance Bram From fredrik at pythonware.com Mon Sep 28 13:22:29 2009 From: fredrik at pythonware.com (Fredrik Lundh) Date: Mon, 28 Sep 2009 13:22:29 +0200 Subject: [Image-SIG] Problem when resizing large JPEG to thumbnail In-Reply-To: References: Message-ID: <368a5cd50909280422j79bf483elb2886aaba3a1a3a9@mail.gmail.com> On Tue, Sep 1, 2009 at 4:44 AM, Etienne Desautels wrote: > So after experimenting, I see 3 problems: > 1. Resize with ANTIALIAS from a large JPEG to a small thumbnail give poor > image quality. This should work fine in 1.1.6; no time to look at your tests right now, but I'll do that asap. > 2. BICUBIC, when set, is not applied. Instead NEAREST is use. The problem you're seeing is that PIL's BICUBIC filter has a fixed size, and thus doesn't work well for large downsamplings (there's a discussion about this in the documentation, iirc). The ANTIALIAS filter does not have that shortcoming. > 3. Converting from TIFF CMYK to RGB shift the colors dramatically. This is a bug in 1.1.6 and earlier (well, strictly speaking, it's a old bug in Photoshop, but I guess we're not really in a position to make them change their implementation ;-). It's fixed in 1.1.7. There's also a drop-in replacement JPEG plugin by Kevin Cazabon that fixes this for earlier versions (in a somewhat roundabout way, due to a bug in the core library that has also been fixed in 1.1.7); see: http://mail.python.org/pipermail/image-sig/2006-April/003871.html From qiaohl at ucweb.com Mon Sep 28 09:08:20 2009 From: qiaohl at ucweb.com (qiaohl) Date: Mon, 28 Sep 2009 15:08:20 +0800 Subject: [Image-SIG] How to get quality of picture Message-ID: <200909281508202036150@ucweb.com> Hi,all Is there any function in PIL to get the value of JPEG quality(1-100)? I know there are functions to set this value, But I found no function to get this value of an existing JPEG file. Thanks! 2009-09-28 qiaohl -------------- next part -------------- An HTML attachment was scrubbed... URL: From fredrik at pythonware.com Mon Sep 28 13:41:40 2009 From: fredrik at pythonware.com (Fredrik Lundh) Date: Mon, 28 Sep 2009 13:41:40 +0200 Subject: [Image-SIG] imaging c module is not installed In-Reply-To: References: Message-ID: <368a5cd50909280441u4d95f2e4i618ccb32767616bc@mail.gmail.com> Did you solve this? The problem can be that the resulting module is squirreled away somewhere where the test cannot find it. What happens if you just fire up a Python interpreter and type: import _imaging _imaging.__file__ If the former gives an ImportError, run Python with -v or -vv (two v:s) to make it log where it's actually looking for things, and then do the import again. On Fri, Sep 18, 2009 at 1:29 PM, Andreas Briese wrote: > Dear Developers, > > 2x2.8 GHz Quad-Core Intel Xeon (MacPro) > MacOSX 10.5.8 > XCode 3.14 > > I dont find a way to install PIL 1.1.5 or 1.1.6 with python 2.5.4 or > 2.6.2. > However allways the '*** The _imaging C module is not installed' > message pops up at end. > > PYTHONPATH and PATH is checked. The module _imaging.so , > _imagingft.so, > _imagingmath.so, _imagingtk.so are availlable at ../site-packages/PIL > frameworks in /Library/frameworks and /System/Library/frameworks are > linked symbolically > > The pity is, everything worked fine with PIL 1.1.5 and python 2.5.4 > before i tried installing python 2.6.2 > But i cannot evebn bring back the prior situation, it seems. > > I'am really desperate now. Any idea how to solve this? > > Andreas > > > running build_ext > --- using frameworks at /Library/Frameworks > building '_imaging' extension > creating build > creating build/temp.macosx-10.3-i386-2.5 > creating build/temp.macosx-10.3-i386-2.5/libImaging > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c _imaging.c -o build/temp.macosx-10.3-i386-2.5/_imaging.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from _imaging.c:76: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > _imaging.c:2907: warning: initialization from incompatible pointer type > _imaging.c:2967: warning: initialization from incompatible pointer type > _imaging.c:2907: warning: initialization from incompatible pointer type > _imaging.c:2967: warning: initialization from incompatible pointer type > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c decode.c -o build/temp.macosx-10.3-i386-2.5/decode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from decode.c:33: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c encode.c -o build/temp.macosx-10.3-i386-2.5/encode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from encode.c:26: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c map.c -o build/temp.macosx-10.3-i386-2.5/map.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from map.c:22: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c display.c -o build/temp.macosx-10.3-i386-2.5/display.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from display.c:26: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c outline.c -o build/temp.macosx-10.3-i386-2.5/outline.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from outline.c:21: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c path.c -o build/temp.macosx-10.3-i386-2.5/path.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from path.c:30: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > path.c:559: warning: initialization from incompatible pointer type > path.c:559: warning: initialization from incompatible pointer type > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Access.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Access.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Access.c:18: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Antialias.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Antialias.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Antialias.c:16: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Bands.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Bands.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Bands.c:19: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/BitDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/BitDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/BitDecode.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Blend.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Blend.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Blend.c:19: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Chops.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Chops.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Chops.c:20: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Convert.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Convert.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Convert.c:36: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/ConvertYCbCr.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/ConvertYCbCr.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/ConvertYCbCr.c:15: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Copy.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Copy.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Copy.c:19: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Crc32.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Crc32.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Crc32.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Crop.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Crop.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Crop.c:19: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Dib.c -o build/temp.macosx-10.3-i386-2.5/libImaging/Dib.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Dib.c:23: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Draw.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Draw.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Draw.c:35: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Effects.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Effects.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Effects.c:19: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/EpsEncode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/EpsEncode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/EpsEncode.c:21: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/File.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/File.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/File.c:19: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Fill.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Fill.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Fill.c:19: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Filter.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Filter.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Filter.c:27: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/FliDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/FliDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/FliDecode.c:18: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Geometry.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Geometry.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Geometry.c:28: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/GetBBox.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/GetBBox.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/GetBBox.c:20: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/GifDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/GifDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/GifDecode.c:25: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/GifEncode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/GifEncode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/GifEncode.c:20: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/HexDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/HexDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/HexDecode.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Histo.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Histo.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Histo.c:20: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/JpegDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/JpegDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/JpegDecode.c:25: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/JpegEncode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/JpegEncode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/JpegEncode.c:23: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/LzwDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/LzwDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/LzwDecode.c:31: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Matrix.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Matrix.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Matrix.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/ModeFilter.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/ModeFilter.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/ModeFilter.c:16: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/MspDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/MspDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/MspDecode.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Negative.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Negative.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Negative.c:20: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Offset.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Offset.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Offset.c:18: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Pack.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Pack.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Pack.c:29: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/PackDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/PackDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/PackDecode.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Palette.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Palette.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Palette.c:20: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Paste.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Paste.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Paste.c:24: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Quant.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Quant.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Quant.c:21: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/QuantHash.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/QuantHash.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from libImaging/QuantHash.c:22: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/QuantHeap.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/QuantHeap.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from libImaging/QuantHeap.c:22: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/PcdDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/PcdDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/PcdDecode.c:23: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/PcxDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/PcxDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/PcxDecode.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/PcxEncode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/PcxEncode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/PcxEncode.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Point.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Point.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Point.c:23: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/RankFilter.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/RankFilter.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/RankFilter.c:15: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/RawDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/RawDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/RawDecode.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/RawEncode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/RawEncode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/RawEncode.c:21: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Storage.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Storage.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Storage.c:38: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/SunRleDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/SunRleDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/SunRleDecode.c:19: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/TgaRleDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/TgaRleDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/TgaRleDecode.c:18: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/Unpack.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/Unpack.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/Unpack.c:33: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/UnpackYCC.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/UnpackYCC.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/UnpackYCC.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/XbmDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/XbmDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/XbmDecode.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/XbmEncode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/XbmEncode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/XbmEncode.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/ZipDecode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/ZipDecode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/ZipDecode.c:19: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c libImaging/ZipEncode.c -o > build/temp.macosx-10.3-i386-2.5/libImaging/ZipEncode.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from libImaging/ZipEncode.c:18: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > creating build/lib.macosx-10.3-i386-2.5 > gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g > -bundle -undefined dynamic_lookup > build/temp.macosx-10.3-i386-2.5/_imaging.o > build/temp.macosx-10.3-i386-2.5/decode.o > build/temp.macosx-10.3-i386-2.5/encode.o > build/temp.macosx-10.3-i386-2.5/map.o > build/temp.macosx-10.3-i386-2.5/display.o > build/temp.macosx-10.3-i386-2.5/outline.o > build/temp.macosx-10.3-i386-2.5/path.o > build/temp.macosx-10.3-i386-2.5/libImaging/Access.o > build/temp.macosx-10.3-i386-2.5/libImaging/Antialias.o > build/temp.macosx-10.3-i386-2.5/libImaging/Bands.o > build/temp.macosx-10.3-i386-2.5/libImaging/BitDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/Blend.o > build/temp.macosx-10.3-i386-2.5/libImaging/Chops.o > build/temp.macosx-10.3-i386-2.5/libImaging/Convert.o > build/temp.macosx-10.3-i386-2.5/libImaging/ConvertYCbCr.o > build/temp.macosx-10.3-i386-2.5/libImaging/Copy.o > build/temp.macosx-10.3-i386-2.5/libImaging/Crc32.o > build/temp.macosx-10.3-i386-2.5/libImaging/Crop.o > build/temp.macosx-10.3-i386-2.5/libImaging/Dib.o > build/temp.macosx-10.3-i386-2.5/libImaging/Draw.o > build/temp.macosx-10.3-i386-2.5/libImaging/Effects.o > build/temp.macosx-10.3-i386-2.5/libImaging/EpsEncode.o > build/temp.macosx-10.3-i386-2.5/libImaging/File.o > build/temp.macosx-10.3-i386-2.5/libImaging/Fill.o > build/temp.macosx-10.3-i386-2.5/libImaging/Filter.o > build/temp.macosx-10.3-i386-2.5/libImaging/FliDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/Geometry.o > build/temp.macosx-10.3-i386-2.5/libImaging/GetBBox.o > build/temp.macosx-10.3-i386-2.5/libImaging/GifDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/GifEncode.o > build/temp.macosx-10.3-i386-2.5/libImaging/HexDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/Histo.o > build/temp.macosx-10.3-i386-2.5/libImaging/JpegDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/JpegEncode.o > build/temp.macosx-10.3-i386-2.5/libImaging/LzwDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/Matrix.o > build/temp.macosx-10.3-i386-2.5/libImaging/ModeFilter.o > build/temp.macosx-10.3-i386-2.5/libImaging/MspDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/Negative.o > build/temp.macosx-10.3-i386-2.5/libImaging/Offset.o > build/temp.macosx-10.3-i386-2.5/libImaging/Pack.o > build/temp.macosx-10.3-i386-2.5/libImaging/PackDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/Palette.o > build/temp.macosx-10.3-i386-2.5/libImaging/Paste.o > build/temp.macosx-10.3-i386-2.5/libImaging/Quant.o > build/temp.macosx-10.3-i386-2.5/libImaging/QuantHash.o > build/temp.macosx-10.3-i386-2.5/libImaging/QuantHeap.o > build/temp.macosx-10.3-i386-2.5/libImaging/PcdDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/PcxDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/PcxEncode.o > build/temp.macosx-10.3-i386-2.5/libImaging/Point.o > build/temp.macosx-10.3-i386-2.5/libImaging/RankFilter.o > build/temp.macosx-10.3-i386-2.5/libImaging/RawDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/RawEncode.o > build/temp.macosx-10.3-i386-2.5/libImaging/Storage.o > build/temp.macosx-10.3-i386-2.5/libImaging/SunRleDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/TgaRleDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/Unpack.o > build/temp.macosx-10.3-i386-2.5/libImaging/UnpackYCC.o > build/temp.macosx-10.3-i386-2.5/libImaging/XbmDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/XbmEncode.o > build/temp.macosx-10.3-i386-2.5/libImaging/ZipDecode.o > build/temp.macosx-10.3-i386-2.5/libImaging/ZipEncode.o > -L/usr/local/lib > L/Library/Frameworks/Python.framework/Versions/2.5/lib -L/usr/lib > -ljpeg -lz -o build/lib.macosx-10.3-i386-2.5/_imaging.so > ld warning: in > /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libjpeg.a, file is not > of required architecture > building '_imagingft' extension > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c _imagingft.c -o build/temp.macosx-10.3-i386-2.5/_imagingft.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from _imagingft.c:20: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g > -bundle -undefined dynamic_lookup > build/temp.macosx-10.3-i386-2.5/_imagingft.o -L/usr/local/lib > -L/Library/Frameworks/Python.framework/Versions/2.5/lib -L/usr/lib > -lfreetype -o build/lib.macosx-10.3-i386-2.5/_imagingft.so > building '_imagingtk' extension > creating build/temp.macosx-10.3-i386-2.5/Tk > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c _imagingtk.c -o build/temp.macosx-10.3-i386-2.5/_imagingtk.o > -framework Tcl -framework Tk > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from _imagingtk.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > i686-apple-darwin9-gcc-4.0.1: -framework: linker input file unused > because linking not done > i686-apple-darwin9-gcc-4.0.1: Tcl: linker input file unused because > linking not done > i686-apple-darwin9-gcc-4.0.1: powerpc-apple-darwin9-gcc-4.0.1: > -framework: linker input file unused because linking not done > i686-apple-darwin9-gcc-4.0.1: -framework: linker input file unused > because linking not doneTk: linker input file unused because linking > not done > > powerpc-apple-darwin9-gcc-4.0.1: Tcl: linker input file unused because > linking not done > powerpc-apple-darwin9-gcc-4.0.1: -framework: linker input file unused > because linking not done > powerpc-apple-darwin9-gcc-4.0.1: Tk: linker input file unused because > linking not done > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c Tk/tkImaging.c -o build/temp.macosx-10.3-i386-2.5/Tk/tkImaging.o > -framework Tcl -framework Tk > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from libImaging/ImPlatform.h:10, > ? ? ? ? ? ? ? ? from libImaging/Imaging.h:14, > ? ? ? ? ? ? ? ? from Tk/tkImaging.c:53: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > i686-apple-darwin9-gcc-4.0.1: powerpc-apple-darwin9-gcc-4.0.1: > -framework: linker input file unused because linking not done > powerpc-apple-darwin9-gcc-4.0.1: Tcl: linker input file unused because > linking not done > powerpc-apple-darwin9-gcc-4.0.1: -framework: linker input file unused > because linking not done-framework: linker input file unused because > linking not done > i686-apple-darwin9-gcc-4.0.1: > powerpc-apple-darwin9-gcc-4.0.1: Tk: linker input file unused because > linking not doneTcl: linker input file unused because linking not done > > i686-apple-darwin9-gcc-4.0.1: -framework: linker input file unused > because linking not done > i686-apple-darwin9-gcc-4.0.1: Tk: linker input file unused because > linking not done > gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g > -bundle -undefined dynamic_lookup > build/temp.macosx-10.3-i386-2.5/_imagingtk.o > build/temp.macosx-10.3-i386-2.5/Tk/tkImaging.o -L/usr/local/lib > -L/Library/Frameworks/Python.framework/Versions/2.5/lib -L/usr/lib -o > build/lib.macosx-10.3-i386-2.5/_imagingtk.so -framework Tcl -framework > Tk > building '_imagingmath' extension > gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk > -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd > -fno-common -dynamic -DNDEBUG -g -O3 > -I/Library/Frameworks/Tcl.framework/Headers > -I/Library/Frameworks/Tk.framework/Headers > -I/usr/local/include/freetype2 -IlibImaging > -I/Library/Frameworks/Python.framework/Versions/2.5/include > -I/usr/local/include -I/usr/include > -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 > -c _imagingmath.c -o build/temp.macosx-10.3-i386-2.5/_imagingmath.o > In file included from /usr/include/math.h:26, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyport.h:231, > ? ? ? ? ? ? ? ? from > /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:57, > ? ? ? ? ? ? ? ? from _imagingmath.c:17: > /usr/include/architecture/ppc/math.h:675: warning: conflicting types > for built-in function ?scalb? > gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g > -bundle -undefined dynamic_lookup > build/temp.macosx-10.3-i386-2.5/_imagingmath.o -L/usr/local/lib > -L/Library/Frameworks/Python.framework/Versions/2.5/lib -L/usr/lib -o > build/lib.macosx-10.3-i386-2.5/_imagingmath.so > -------------------------------------------------------------------- > PIL 1.1.6 BUILD SUMMARY > -------------------------------------------------------------------- > version ? ? ? 1.1.6 > platform ? ? ?darwin 2.5.4 (r254:67917, Dec 23 2008, 14:57:27) > ? ? ? ? ? ? ?[GCC 4.0.1 (Apple Computer, Inc. build 5363)] > -------------------------------------------------------------------- > --- TKINTER support ok > --- JPEG support ok > --- ZLIB (PNG/ZIP) support ok > --- FREETYPE2 support ok > -------------------------------------------------------------------- > To check the build, run the selftest.py script. > itt04:Imaging-1.1.6 andreasbriese$ python selftest.py > *** The _imaging C module is not installed > itt04:Imaging-1.1.6 andreasbriese$ > > > +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > Dr. med. vet. Andreas Briese > Landesbeauftragter f?r den Tierschutz des Landes Niedersachsen a. D. > FTA Tierschutzkunde, FTA Tierhygiene > Stiftung Tier?rztliche Hochschule Hannover > Institut f?r Tierhygiene, Tierschutz und Nutztierethologie > B?nteweg 17p > 30559 Hannover > Tel.: (+49) 511 953-8837 > Fax.: (+49) 511 953-8588 > E-Mail: andreas.briese at tiho-hannover.de > E-Mail: andreas_briese at animcare-sci.de (large attachments) > +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > This message is intended exclusively for the addressee. It may contain > information that is confidential. Any use or publication of this > e-mail message without permission of the sender is not allowed. If you > are not the intended recipient, please notify us and delete this > message. > > > _______________________________________________ > Image-SIG maillist ?- ?Image-SIG at python.org > http://mail.python.org/mailman/listinfo/image-sig > From efotinis at yahoo.com Mon Sep 28 14:35:54 2009 From: efotinis at yahoo.com (Elias Fotinis) Date: Mon, 28 Sep 2009 15:35:54 +0300 Subject: [Image-SIG] How to get quality of picture In-Reply-To: <200909281508202036150@ucweb.com> References: <200909281508202036150@ucweb.com> Message-ID: From: qiaohl > Is there any function in PIL to get the value of JPEG quality(1-100)? I > know there are functions to set this value, But I found no function to get > this value of an existing JPEG file. You can't get the quality value, because it's not stored anywhere in the file. I found a Microsoft article at http://support.microsoft.com/kb/324790, titled "Determine the JPEG quality factor by using Visual C# .NET", which states that one could compare the quantization tables against those from the reference code. However, you can't be sure it'll work for all JPEGs. From fredrik at pythonware.com Mon Sep 28 14:43:00 2009 From: fredrik at pythonware.com (Fredrik Lundh) Date: Mon, 28 Sep 2009 14:43:00 +0200 Subject: [Image-SIG] How to get quality of picture In-Reply-To: <200909281508202036150@ucweb.com> References: <200909281508202036150@ucweb.com> Message-ID: <368a5cd50909280543w3b79d173j35e73a9cc3c48055@mail.gmail.com> The quality setting is used to create a quantization table which is then used by the compression algorithm. There's no pre-defined mapping between quality and the contents of the quantization table for JPEG (different implementations do different things), but some applications attempt to guess by comparing the quantization tables in the file with known mapping algorithms. I'm not aware of any such code for Python. If you want to tinker with this, you can access the quantization table of an opened JPEG file via the "quantization" attribute. On Mon, Sep 28, 2009 at 9:08 AM, qiaohl wrote: > Hi,all > ?? Is there any function in PIL to get the value of JPEG quality(1-100)? I > know there are functions?to set this value, But I found no function to get > this value of an existing JPEG file. > > Thanks! > > > 2009-09-28 > ________________________________ > qiaohl > _______________________________________________ > Image-SIG maillist ?- ?Image-SIG at python.org > http://mail.python.org/mailman/listinfo/image-sig > > From fredrik at pythonware.com Mon Sep 28 15:25:19 2009 From: fredrik at pythonware.com (Fredrik Lundh) Date: Mon, 28 Sep 2009 15:25:19 +0200 Subject: [Image-SIG] Windows CRT issues with Python 2.6 In-Reply-To: <978d1eac0909101100m832c000g8d766d8a6b4550e8@mail.gmail.com> References: <978d1eac0909101100m832c000g8d766d8a6b4550e8@mail.gmail.com> Message-ID: <368a5cd50909280625o471fb496ra96b5b151a058d80@mail.gmail.com> Make sense, but I'm not sure I can figure out what they actually ended up doing about it from that thread. Anyone who can summarize and/or provide a patch? On Thu, Sep 10, 2009 at 8:00 PM, Farshid Lashkari wrote: > Hello, > I've encountered an issue with distributing a Python 2.6 and PIL based > application on Windows computers that do not have the VC 9.0 CRT installed. > The problem is that the _imaging.pyd module fails to load. I believe the > reason is that the file has an embedded manifest specifying the CRT version > to load, which causes it to ignore the CRT files in the Python exe folder. > The pyd files that ship with Python (_socket.pyd, etc..) do not have this > problem because they are built without an embedded manifest, which causes > them to inherit the CRT that is already loaded through the Python process. > You can find information about this at the following bug report > (http://bugs.python.org/issue4120). > Would it be possible to modify the PIL build process to not embed a manifest > for Windows pyd files? > Cheers, > Farshid > _______________________________________________ > Image-SIG maillist ?- ?Image-SIG at python.org > http://mail.python.org/mailman/listinfo/image-sig > > From fredrik at pythonware.com Mon Sep 28 15:45:33 2009 From: fredrik at pythonware.com (Fredrik Lundh) Date: Mon, 28 Sep 2009 15:45:33 +0200 Subject: [Image-SIG] can't open an image in ASP application In-Reply-To: <000001ca1ae1$aab123e0$00136ba0$@rr.com> References: <000001ca1ae1$aab123e0$00136ba0$@rr.com> Message-ID: <368a5cd50909280645w10aa48e9rc8c373399930387a@mail.gmail.com> Might be that Python's picking up some other module named "Image". Make sure that Image.__file__ (the location of the source for the image) is what you expect it to be in your different environments. On Wed, Aug 12, 2009 at 2:13 AM, Herb Verbesey wrote: > The following codes works fine when run directly in python: > > > > import Image > > if __name__ == '__main__': > > ??? im = Image.open("e:\\wwwroot\\class59.jpg") > > ??? print im.format, im.size, im.mode > > > > However, when I try inserting the following code in an ASP page I get an > error that says, ?im=Image.open("e:\\wwwroot\\class59.jpg") AttributeError: > 'module' object has no attribute 'open'? > > > > > > > > When I do dir(Image) from the console I get > > ['ADAPTIVE', 'AFFINE', 'ANTIALIAS', 'BICUBIC', 'BILINEAR', 'CONTAINER', > 'CUBIC', 'DEBUG', 'EXTENSION', 'EXTENT', 'FLIP_LEFT_RIGHT', > 'FLIP_TOP_BOTTOM', 'FLOYDSTEINBERG', 'ID', 'Image', 'ImageMode', > 'ImagePalette', 'IntType', 'LINEAR', 'MESH', 'MIME', 'MODES', 'NEAREST', > 'NONE', 'NORMAL', 'OPEN', 'ORDERED', 'PERSPECTIVE', 'QUAD', 'RASTERIZE', > 'ROTATE_180', 'ROTATE_270', 'ROTATE_90', 'SAVE', 'SEQUENCE', 'StringType', > 'TupleType', 'UnicodeStringType', 'VERSION', 'WEB', '_E', '_ENDIAN', > '_ImageCrop', '_MAPMODES', '_MODEINFO', '_MODE_CONV', '__builtins__', > '__doc__', '__file__', '__name__', '_conv_type_shape', '_getdecoder', > '_getencoder', '_getscaleoffset', '_imaging_not_installed', '_initialized', > '_showxv', '_wedge', 'blend', 'composite', 'core', 'eval', 'fromarray', > 'frombuffer', 'fromstring', 'getmodebandnames', 'getmodebands', > 'getmodebase', 'getmodetype', 'init', 'isDirectory', 'isImageType', > 'isNumberType', 'isSequenceType', 'isStringType', 'isTupleType', 'merge', > 'new', 'open', 'os', 'preinit', 'register_extension', 'register_mime', > 'register_open', 'register_save', 'string', 'sys', 'warnings'] > > > > But when I put Response.write(str(dir(Image))) inside my server script I > get: > > ['Image', '__builtins__', '__doc__', '__file__', '__name__'] in reply > > Any clue as to what I need to do to open the image in my server script? > > Herb Verbesey > > > > > > _______________________________________________ > Image-SIG maillist ?- ?Image-SIG at python.org > http://mail.python.org/mailman/listinfo/image-sig > > From fredrik at pythonware.com Mon Sep 28 15:48:34 2009 From: fredrik at pythonware.com (Fredrik Lundh) Date: Mon, 28 Sep 2009 15:48:34 +0200 Subject: [Image-SIG] python install problem 1 test failed selftest.testimage In-Reply-To: <1901179594.1906121251925383966.JavaMail.root@zm08.stanford.edu> References: <1901179594.1906121251925383966.JavaMail.root@zm08.stanford.edu> Message-ID: <368a5cd50909280648v102cdf7i35a6486b6534787f@mail.gmail.com> It tries to tell you that PIL's _imaging.so module was built without JPEG support, which means that the setup.py script couldn't find or set up the libjpeg library. If setup claims that it did find libjpeg, make sure you don't have multiple _imaging.so modules around (the selftest in 1.1.6 can sometimes accidentally pick up older versions; the upcoming 1.1.7 version is a bit more careful, but it too could probably provide a bit more details when this happens). On Wed, Sep 2, 2009 at 11:03 PM, Brian J. Gibbons wrote: > This is the error generated when running selftest.py : > > > python/Imaging-1.1.6> python selftest.py > ***************************************************************** > Failure in example: _info(Image.open("Images/lena.jpg")) > from line #24 of selftest.testimage > Exception raised: > Traceback (most recent call last): > ?File "./doctest.py", line 499, in _run_examples_inner > ? ?exec compile(source, "", "single") in globs > ?File "", line 1, in > ?File "./selftest.py", line 22, in _info > ? ?im.load() > ?File "PIL/ImageFile.py", line 180, in load > ? ?d = Image._getdecoder(self.mode, d, a, self.decoderconfig) > ?File "PIL/Image.py", line 375, in _getdecoder > ? ?raise IOError("decoder %s not available" % decoder_name) > IOError: decoder jpeg not available > 1 items had failures: > ? 1 of ?57 in selftest.testimage > ***Test Failed*** 1 failures. > *** 1 tests of 57 failed. > > > Any suggestions? > > > Sincerely, > > Brian Gibbons > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > Brian Gibbons, Ph.D. > Roger Kornberg Lab > Stanford School of Medicine > Department of Structural Biology > 299 Campus Drive West > Fairchild Building Rm. D125 > Stanford, CA 94305 > (650)723-6986 > _______________________________________________ > Image-SIG maillist ?- ?Image-SIG at python.org > http://mail.python.org/mailman/listinfo/image-sig > From andreas.briese at animcare-sci.de Mon Sep 28 14:26:32 2009 From: andreas.briese at animcare-sci.de (Andreas Briese) Date: Mon, 28 Sep 2009 14:26:32 +0200 Subject: [Image-SIG] imaging c module is not installed In-Reply-To: <368a5cd50909280441u4d95f2e4i618ccb32767616bc@mail.gmail.com> References: <368a5cd50909280441u4d95f2e4i618ccb32767616bc@mail.gmail.com> Message-ID: Fredrik Lundh writes: >Did you solve this? The problem can be that the resulting module is >squirreled away somewhere where the test cannot find it. What happens >if you just fire up a Python interpreter and type: > > import _imaging > _imaging.__file__ > >If the former gives an ImportError, run Python with -v or -vv (two >v:s) to make it log where it's actually looking for things, and then >do the import again. > > Dear Frederik, thanks for your message. I did not really solve the problem but brought my Mac back to work by replacing the 2.6.2 python distribution with a binary version 2.6.1 that was compiled half ayear ago on a laptop using MacOsx 10.5.7. PIL 1.1.6 was within this replacement and i did another replacement with the Tcl/Tk framework and binaries. After that python 2.6.1. and PIL 1.1.6 worked again. I've tried out to update on 2.6.2. with the current source distribution again then. And again it won't work (same problem with the imaging C module popped up, when i tried to install PIL 1.1.6 with it) and python 2.6.2 seemed be broken again. i relaced it with the 2.6.1 python again, it worked and i decided not to touch it until 3.0 becomes stable and inevitable on MacOs ;- ( Agian thank you very much for your efforts. Andreas +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Dr. med. vet. Andreas Briese Landesbeauftragter f?r den Tierschutz des Landes Niedersachsen a. D. FTA Tierschutzkunde, FTA Tierhygiene Stiftung Tier?rztliche Hochschule Hannover Institut f?r Tierhygiene, Tierschutz und Nutztierethologie B?nteweg 17p 30559 Hannover Tel.: (+49) 511 953-8837 Fax.: (+49) 511 953-8588 E-Mail: andreas.briese at tiho-hannover.de E-Mail: andreas_briese at animcare-sci.de (large attachments) +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ This message is intended exclusively for the addressee. It may contain information that is confidential. Any use or publication of this e-mail message without permission of the sender is not allowed. If you are not the intended recipient, please notify us and delete this message. From koenvandesande at gmail.com Mon Sep 28 15:46:40 2009 From: koenvandesande at gmail.com (Koen van de Sande) Date: Mon, 28 Sep 2009 16:46:40 +0300 Subject: [Image-SIG] Windows CRT issues with Python 2.6 In-Reply-To: <368a5cd50909280625o471fb496ra96b5b151a058d80@mail.gmail.com> References: <368a5cd50909280625o471fb496ra96b5b151a058d80@mail.gmail.com> Message-ID: <4AC0BE40.5010801@gmail.com> The fix was applied to the main Python distribution (2.6.2 has it for sure, 2.6.0/2.6.1 does not). Any extension built with 2.6.2 or higher should be fine, as it will not get an embedded manifest. So just rebuild with Python Windows version 2.6.2. I see in the PIL source tree that it uses a setup.py build_ext call, so no changes to PIL should be needed. Koen From fredrik at pythonware.com Mon Sep 28 15:01:00 2009 From: fredrik at pythonware.com (Fredrik Lundh) Date: Mon, 28 Sep 2009 15:01:00 +0200 Subject: [Image-SIG] Some issue with easy_install and PIL/Imaging In-Reply-To: <4AAA557E.70508@simplistix.co.uk> References: <4AAA557E.70508@simplistix.co.uk> Message-ID: <368a5cd50909280601i39c065fbob8fa33166162072f@mail.gmail.com> On Fri, Sep 11, 2009 at 3:49 PM, Chris Withers wrote: > Klein St?phane wrote: >> >> Resume : >> 1. first question : why PIL package in "pypi" don't work ? > > Because Fred Lundh have his package distributions unfortunate names that > setuptools doesn't like... It used to support this, but no longer does. To me, that says more about the state of setuptools than it does about the state of PIL, which has been using the same naming convention for 15 years. From fredrik at pythonware.com Mon Sep 28 16:07:38 2009 From: fredrik at pythonware.com (Fredrik Lundh) Date: Mon, 28 Sep 2009 16:07:38 +0200 Subject: [Image-SIG] Windows CRT issues with Python 2.6 In-Reply-To: <4AC0BE40.5010801@gmail.com> References: <368a5cd50909280625o471fb496ra96b5b151a058d80@mail.gmail.com> <4AC0BE40.5010801@gmail.com> Message-ID: <368a5cd50909280707n3bf75b9ma779907b7fe15fbb@mail.gmail.com> Ah, sneaky. I'm pretty sure the current binary distribution was built when 2.6 was new, and I didn't really expect them to tweak build-related issues in an incremental release :) I'll push out a new build asap; will ping the list when it's available. Thanks! On Mon, Sep 28, 2009 at 3:46 PM, Koen van de Sande wrote: > The fix was applied to the main Python distribution (2.6.2 has it for sure, > 2.6.0/2.6.1 does not). Any extension built with 2.6.2 or higher should be > fine, as it will not get an embedded manifest. > So just rebuild with Python Windows version 2.6.2. I see in the PIL source > tree that it uses a setup.py build_ext call, so no changes to PIL should be > needed. > > Koen > _______________________________________________ > Image-SIG maillist ?- ?Image-SIG at python.org > http://mail.python.org/mailman/listinfo/image-sig > From tiit at sympatico.ca Mon Sep 28 17:01:32 2009 From: tiit at sympatico.ca (Etienne Desautels) Date: Mon, 28 Sep 2009 11:01:32 -0400 Subject: [Image-SIG] Problem when resizing large JPEG to thumbnail In-Reply-To: <368a5cd50909280422j79bf483elb2886aaba3a1a3a9@mail.gmail.com> References: <368a5cd50909280422j79bf483elb2886aaba3a1a3a9@mail.gmail.com> Message-ID: On 09-09-28, at 07:22, Fredrik Lundh wrote: > On Tue, Sep 1, 2009 at 4:44 AM, Etienne Desautels > wrote: > >> So after experimenting, I see 3 problems: >> 1. Resize with ANTIALIAS from a large JPEG to a small thumbnail >> give poor >> image quality. > > This should work fine in 1.1.6; no time to look at your tests right > now, but I'll do that asap. Since I wrote this, I resize (downsample) a lot more images with PIL and in general the result is excellent. The problem appear only with the kind of images I choose to do my initial tests, image of concentric circles or alike. Now I'm pretty sure that the poor result I saw is a special edge case of the antialias algorithm used in PIL. I can't see any other explanation. >> 2. BICUBIC, when set, is not applied. Instead NEAREST is use. > > The problem you're seeing is that PIL's BICUBIC filter has a fixed > size, and thus doesn't work well for large downsamplings (there's a > discussion about this in the documentation, iirc). The ANTIALIAS > filter does not have that shortcoming. Ho, yes I see. >> 3. Converting from TIFF CMYK to RGB shift the colors dramatically. > > This is a bug in 1.1.6 and earlier (well, strictly speaking, it's a > old bug in Photoshop, but I guess we're not really in a position to > make them change their implementation ;-). It's fixed in 1.1.7. > There's also a drop-in replacement JPEG plugin by Kevin Cazabon that > fixes this for earlier versions (in a somewhat roundabout way, due to > a bug in the core library that has also been fixed in 1.1.7); see: > > http://mail.python.org/pipermail/image-sig/2006-April/003871.html I saw some threads about this bug but I was with the impression that applied only to the JPEG plugin, not to the CMYK support in general ? Etienne > > From fredrik at pythonware.com Mon Sep 28 17:07:48 2009 From: fredrik at pythonware.com (Fredrik Lundh) Date: Mon, 28 Sep 2009 17:07:48 +0200 Subject: [Image-SIG] Problem when resizing large JPEG to thumbnail In-Reply-To: References: <368a5cd50909280422j79bf483elb2886aaba3a1a3a9@mail.gmail.com> Message-ID: <368a5cd50909280807o135e2e87qdd7b26102a411bb9@mail.gmail.com> On Mon, Sep 28, 2009 at 5:01 PM, Etienne Desautels wrote: >>> 3. Converting from TIFF CMYK to RGB shift the colors dramatically. >> >> This is a bug in 1.1.6 and earlier (well, strictly speaking, it's a >> old bug in Photoshop, but I guess we're not really in a position to >> make them change their implementation ;-). ?It's fixed in 1.1.7. >> There's also a drop-in replacement JPEG plugin by Kevin Cazabon that >> fixes this for earlier versions (in a somewhat roundabout way, due to >> a bug in the core library that has also been fixed in 1.1.7); see: >> >> ? http://mail.python.org/pipermail/image-sig/2006-April/003871.html > > I saw some threads about this bug but I was with the impression that applied > only to the JPEG plugin, not to the CMYK support in general ? Oh, sorry - misread your question. Yes, bad colour shifts are quite common if you use the default approximation (which doesn't take the colour profile into account). For better results, you want PIL 1.1.7 with littlecms and the ImagingCMS module (see the list archives for pointers to the development repo). From tiit at sympatico.ca Mon Sep 28 17:11:02 2009 From: tiit at sympatico.ca (Etienne Desautels) Date: Mon, 28 Sep 2009 11:11:02 -0400 Subject: [Image-SIG] Problem when resizing large JPEG to thumbnail In-Reply-To: <368a5cd50909280422j79bf483elb2886aaba3a1a3a9@mail.gmail.com> References: <368a5cd50909280422j79bf483elb2886aaba3a1a3a9@mail.gmail.com> Message-ID: Sorry for posting in to parts. On 09-09-28, at 07:22, Fredrik Lundh wrote: > On Tue, Sep 1, 2009 at 4:44 AM, Etienne Desautels > wrote: > >> 3. Converting from TIFF CMYK to RGB shift the colors dramatically. > > This is a bug in 1.1.6 and earlier (well, strictly speaking, it's a > old bug in Photoshop, but I guess we're not really in a position to > make them change their implementation ;-). It's fixed in 1.1.7. > There's also a drop-in replacement JPEG plugin by Kevin Cazabon that > fixes this for earlier versions (in a somewhat roundabout way, due to > a bug in the core library that has also been fixed in 1.1.7); see: I saw that there's a lot of things fixed and added in 1.1.7. For me the inclusion of pyCMS is great (always looking for ways to improve image quality). If I have some time I will test 1.1.7 from tip. Do you know when you will release the final version ? It looks like your not really far from releasing. Etienne From fredrik at pythonware.com Mon Sep 28 17:21:40 2009 From: fredrik at pythonware.com (Fredrik Lundh) Date: Mon, 28 Sep 2009 17:21:40 +0200 Subject: [Image-SIG] Problem when resizing large JPEG to thumbnail In-Reply-To: References: <368a5cd50909280422j79bf483elb2886aaba3a1a3a9@mail.gmail.com> Message-ID: <368a5cd50909280821h6d8e9f3cxc61680b578271c70@mail.gmail.com> On Mon, Sep 28, 2009 at 5:11 PM, Etienne Desautels wrote: > Do you know when you will release the final version ? It looks like your not > really far from releasing. The release should have been cut ages ago, but last-second bug reports pushed it into my vacation. And when you don't make a proper release in time, people come up with more things that really should have been in the release, so you'll add a few more issues to the to-do-before-release list, and ... but it shouldn't be very far away now. From stephane at harobed.org Mon Sep 28 21:20:00 2009 From: stephane at harobed.org (=?ISO-8859-1?Q?Klein_St=E9phane?=) Date: Mon, 28 Sep 2009 21:20:00 +0200 Subject: [Image-SIG] Some issue with easy_install and PIL/Imaging In-Reply-To: <368a5cd50909280601i39c065fbob8fa33166162072f@mail.gmail.com> References: <4AAA557E.70508@simplistix.co.uk> <368a5cd50909280601i39c065fbob8fa33166162072f@mail.gmail.com> Message-ID: <4AC10C60.2020801@harobed.org> Fredrik Lundh a ?crit : > On Fri, Sep 11, 2009 at 3:49 PM, Chris Withers wrote: >> Klein St?phane wrote: >>> Resume : >>> 1. first question : why PIL package in "pypi" don't work ? >> Because Fred Lundh have his package distributions unfortunate names that >> setuptools doesn't like... > > It used to support this, but no longer does. To me, that says more > about the state of setuptools than it does about the state of PIL, > which has been using the same naming convention for 15 years. Ok, and what can we do ? Is a setuptools issue ? Can distribute (http://bitbucket.org/tarek/distribute/wiki/Home setuptools fork) fix this issue easily ? Regards, Stephane From stephane at harobed.org Mon Sep 28 21:20:00 2009 From: stephane at harobed.org (=?ISO-8859-1?Q?Klein_St=E9phane?=) Date: Mon, 28 Sep 2009 21:20:00 +0200 Subject: [Image-SIG] Some issue with easy_install and PIL/Imaging In-Reply-To: <368a5cd50909280601i39c065fbob8fa33166162072f@mail.gmail.com> References: <4AAA557E.70508@simplistix.co.uk> <368a5cd50909280601i39c065fbob8fa33166162072f@mail.gmail.com> Message-ID: <4AC10C60.2020801@harobed.org> Fredrik Lundh a ?crit : > On Fri, Sep 11, 2009 at 3:49 PM, Chris Withers wrote: >> Klein St?phane wrote: >>> Resume : >>> 1. first question : why PIL package in "pypi" don't work ? >> Because Fred Lundh have his package distributions unfortunate names that >> setuptools doesn't like... > > It used to support this, but no longer does. To me, that says more > about the state of setuptools than it does about the state of PIL, > which has been using the same naming convention for 15 years. Ok, and what can we do ? Is a setuptools issue ? Can distribute (http://bitbucket.org/tarek/distribute/wiki/Home setuptools fork) fix this issue easily ? Regards, Stephane From jwolter0 at gmail.com Tue Sep 29 02:22:38 2009 From: jwolter0 at gmail.com (John Wolter) Date: Mon, 28 Sep 2009 20:22:38 -0400 Subject: [Image-SIG] "Cloning" drawing interface objects Message-ID: <1d929dca0909281722p618104b2j1cbf300845321f58@mail.gmail.com> Forgive me if this is a real newbie question, but hey, as far as PIL goes, I'm a newbie. I'm trying to write a script that draws on an image, then splits the image into two copies and draws more on them independently. I can't seem to figure out how to do that second part. I've written up a sample script to demonstrate the issue. If working correctly, the output file snippet11a.png should contain a triangle, snippet11b.jpg should contain the triangle with a rectangle superimposed, and snippet11c.jpg should contain the triangle with a circle superimposed (but not the rectangle). Can anyone suggest a path? If it helps, I'm running python 2.6.1 on Windows Vista (not my preferred environment). import Image, aggdraw size = 400, 300 cwhite = 255, 255, 255 # 23-Aug-2009 # This little program is an experiment in what it takes to make separate # images, which can be drawn on separately from each other. I have been # having a problem that drawing on any copy of an image ends up drawing on # the original image. The only way I found that creates a truly independent # image is to start from a separate Image.new() call. Im2 = Image.new("RGBA", size, cwhite) Im3 = Image.new("RGBA", size, cwhite) draw2 = aggdraw.Draw(Im2) color1 = (0,0,127) opacity1 = 127 brush1 = aggdraw.Brush(color1, opacity=opacity1) draw2.polygon((100, 100, 300, 100, 200, 200), aggdraw.Pen("black"), brush1) draw2.flush() Im2.save("C:\Temp\snippet11a.png") # Im3 = Im2.copy # This command causes a "AttributeError: 'function' object # has no attribute 'mode'" error at the next draw on Im3 draw2a = draw2 # Drawing on a copy of the draw object will draw on the same image draw2a.rectangle((50, 50, 250, 250), aggdraw.Pen("black"), brush1) draw2a.flush() Im2.save("C:\Temp\snippet11b.png") draw3 = aggdraw.Draw(Im3) draw3.ellipse((150, 50, 350, 250), aggdraw.Pen("black"), brush1) draw3.flush() Im3.save("C:\Temp\snippet11c.png") -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_berthelot at yahoo.com Tue Sep 29 04:36:32 2009 From: d_berthelot at yahoo.com (David Berthelot) Date: Mon, 28 Sep 2009 19:36:32 -0700 (PDT) Subject: [Image-SIG] How to get quality of picture In-Reply-To: <368a5cd50909280543w3b79d173j35e73a9cc3c48055@mail.gmail.com> References: <200909281508202036150@ucweb.com> <368a5cd50909280543w3b79d173j35e73a9cc3c48055@mail.gmail.com> Message-ID: <300427.14251.qm@web57603.mail.re1.yahoo.com> Here's some code that does the trick. It returns a tuple: (coefficient, (luminance_coefficient,luminance_error), (chrominance_coefficient,chrominance_error)) Note: - The 2nd and 3rd returned items are only useful if you're interested in the error (sometimes the error is 0 if the program used a JPEG table that is the same as the one used by PIL). - Fredrik: You can freely use the code and embed it in PIL if you're satisfied with its quality Code: def get_jpeg_quantization_tables(f): """Returns the JPEG quantization tables of a filename or file descriptor""" from functools import partial import Image import numpy as N fd = Image.open(f) if fd.format == 'BMP': return N.ones((8,8)),N.ones((8,8)) q = fd.quantization ql,qc = map(partial(N.array,dtype='uint8'),(q.get(0,N.zeros(64)),q.get(1,N.zeros(64)))) # Now reorder the JPEG quantification coefficients as 8x8 matrices jpeg_natural_order = N.array([ 0, 1, 8, 16, 9, 2, 3, 10, 17, 24, 32, 25, 18, 11, 4, 5, 12, 19, 26, 33, 40, 48, 41, 34, 27, 20, 13, 6, 7, 14, 21, 28, 35, 42, 49, 56, 57, 50, 43, 36, 29, 22, 15, 23, 30, 37, 44, 51, 58, 59, 52, 45, 38, 31, 39, 46, 53, 60, 61, 54, 47, 55, 62, 63]) rql = N.zeros(64,'f') rqc = N.zeros(64,'f') for x,y in N.ndenumerate(jpeg_natural_order): rql[y] = ql[x] rqc[y] = qc[x] return rql.reshape(8,8),rqc.reshape(8,8) # Luminance/Chrominance def guess_jpeg_quality(f,ctables=[]): from StringIO import StringIO import numpy as N import Image # Compute the tables for quality = 1..100 by saving fakes files in memory if not ctables: tables = N.zeros((100,2,8,8),'f') for x in xrange(100): fd = StringIO() Image.new('RGB',(64,64)).save(fd,"jpeg",quality=1+x) fd.seek(0) ql,qc = get_jpeg_quantization_tables(fd) tables[x][0] = ql tables[x][1] = qc ctables.append(tables) else: tables = ctables[0] # Use a weighting matrix w to put more emphasis on the comparison of lower DCT harmonics w = 1./N.outer(1+N.arange(8)/7.,1+N.arange(8)/7.) ql,qc = get_jpeg_quantization_tables(f) # Compute errors on Luminance and Chrominance tables errsl,errsc = [],[] for x in xrange(100): errsl.append((N.square((ql-tables[x][0])*w).mean(),x)) errsc.append((N.square((qc-tables[x][1])*w).mean(),x)) # Select minimal error coefficients lmin = min(errsl) cmin = min(errsc) # Weight coefficients average (more emphasis put on luminance since it affects most visual perception) q = int(round(lmin[1]*.8 + cmin[1]*.2)) return q,lmin,cmin ________________________________ From: Fredrik Lundh To: qiaohl Cc: image-sig Sent: Monday, September 28, 2009 5:43:00 AM Subject: Re: [Image-SIG] How to get quality of picture The quality setting is used to create a quantization table which is then used by the compression algorithm. There's no pre-defined mapping between quality and the contents of the quantization table for JPEG (different implementations do different things), but some applications attempt to guess by comparing the quantization tables in the file with known mapping algorithms. I'm not aware of any such code for Python. If you want to tinker with this, you can access the quantization table of an opened JPEG file via the "quantization" attribute. On Mon, Sep 28, 2009 at 9:08 AM, qiaohl wrote: > Hi,all > Is there any function in PIL to get the value of JPEG quality(1-100)? I > know there are functions to set this value, But I found no function to get > this value of an existing JPEG file. > > Thanks! > > > 2009-09-28 > ________________________________ > qiaohl > _______________________________________________ > Image-SIG maillist - Image-SIG at python.org > http://mail.python.org/mailman/listinfo/image-sig > > _______________________________________________ Image-SIG maillist - Image-SIG at python.org http://mail.python.org/mailman/listinfo/image-sig -------------- next part -------------- An HTML attachment was scrubbed... URL: From fredrik at pythonware.com Tue Sep 29 10:53:01 2009 From: fredrik at pythonware.com (Fredrik Lundh) Date: Tue, 29 Sep 2009 10:53:01 +0200 Subject: [Image-SIG] "Cloning" drawing interface objects In-Reply-To: <1d929dca0909281722p618104b2j1cbf300845321f58@mail.gmail.com> References: <1d929dca0909281722p618104b2j1cbf300845321f58@mail.gmail.com> Message-ID: <368a5cd50909290153i34ac1d44h88034c29d0e50042@mail.gmail.com> On Tue, Sep 29, 2009 at 2:22 AM, John Wolter wrote: > Forgive me if this is a real newbie question, but hey, as far as PIL goes, > I'm a newbie.? I'm trying to write a script that draws on an image, then > splits the image into two copies and draws more on them independently.? I > can't seem to figure out how to do that second part. > # Im3 = Im2.copy # This command causes a "AttributeError: 'function' object > #??? has no attribute 'mode'" error at the next draw on Im3 In Python, writing Im2.copy just gives you a reference to the method. To actually call the method, you need to add parens: Im3 = Im2.copy() From bentson at holmsjoen.com Wed Sep 30 16:56:32 2009 From: bentson at holmsjoen.com (Randolph Bentson) Date: Wed, 30 Sep 2009 07:56:32 -0700 Subject: [Image-SIG] fix for wide line directional dependence Message-ID: <20090930145631.GA2641@holmsjoen.com> I've found that wide lines drawn with PIL 1.1.6 have a directional dependence, e.g., lines from (0,0) to (-100,0) are thinner than those from (0,0) to (0,-100). The following patch seems to help, although the lines still have a modest variation when rotating through the compass. --- Draw.c_2745 2009-09-30 07:40:23.000000000 -0700 +++ Draw.c 2009-09-30 07:36:56.000000000 -0700 @@ -686,8 +686,8 @@ d = width / sqrt(dx*dx + dy*dy) / 2.0; - dx = (int) (d * (y1-y0) + 0.5); - dy = (int) (d * (x1-x0) + 0.5); + dx = (int) (d * abs(y1-y0) + 0.5); + dy = (int) (d * abs(x1-x0) + 0.5); add_edge(e+0, x0 - dx, y0 + dy, x1 - dx, y1 + dy); add_edge(e+1, x1 - dx, y1 + dy, x1 + dx, y1 - dy); -- Randolph Bentson bentson at holmsjoen.com From chris at simplistix.co.uk Wed Sep 30 18:24:44 2009 From: chris at simplistix.co.uk (Chris Withers) Date: Wed, 30 Sep 2009 17:24:44 +0100 Subject: [Image-SIG] Some issue with easy_install and PIL/Imaging In-Reply-To: <368a5cd50909280601i39c065fbob8fa33166162072f@mail.gmail.com> References: <4AAA557E.70508@simplistix.co.uk> <368a5cd50909280601i39c065fbob8fa33166162072f@mail.gmail.com> Message-ID: <4AC3864C.3070704@simplistix.co.uk> Fredrik Lundh wrote: > On Fri, Sep 11, 2009 at 3:49 PM, Chris Withers wrote: >> Klein St?phane wrote: >>> Resume : >>> 1. first question : why PIL package in "pypi" don't work ? >> Because Fred Lundh have his package distributions unfortunate names that >> setuptools doesn't like... > > It used to support this, but no longer does. To me, that says more > about the state of setuptools than it does about the state of PIL, > which has been using the same naming convention for 15 years. Yep, but it is now in the minority, and consistency in package naming is always good. Would there be any problems for you in naming the distribution in a setuptools-friendly way from the next point release? cheers, Chris -- Simplistix - Content Management, Batch Processing & Python Consulting - http://www.simplistix.co.uk