fix compile

This commit is contained in:
Christopher Denter 2011-07-06 10:31:03 +02:00
parent 64f0911db7
commit ed2c736346
2 changed files with 4 additions and 5 deletions

View File

@ -13,8 +13,8 @@ cdef extern from "Python.h":
object PyString_FromStringAndSize(char *s, Py_ssize_t len)
#cdef extern from "CoreGraphics/CGDataProvider.h":
cdef extern from "ApplicationServices/ApplicationServices.h":
cdef extern from "CoreGraphics/CGDataProvider.h":
#cdef extern from "ApplicationServices/ApplicationServices.h":
ctypedef void *CFDataRef
# XXX
# char or int?
@ -122,8 +122,8 @@ cdef extern from "CoreGraphics/CGImage.h":
int kCGImageAlphaNone
#cdef extern from "ImageIO/CGImageSource.h":
cdef extern from "QuartzCore/QuartzCore.h":
cdef extern from "ImageIO/CGImageSource.h":
#cdef extern from "QuartzCore/QuartzCore.h":
ctypedef void *CGImageSourceRef
CGImageSourceRef CGImageSourceCreateWithURL(CFURLRef,
CFDictionaryRef)

View File

@ -229,7 +229,6 @@ if True:
libraries=ext_libraries,
extra_compile_args=ext_extra_compile_args,
include_dirs=ext_include_dirs,
extra_compile_args=ext_extra_compile_args,
extra_link_args=ext_extra_link_args))