Add the FIXME and remove debug code

This commit is contained in:
Melvyn Sopacua 2017-05-26 13:48:38 +02:00
parent 092d97f829
commit 5d7480a91b

View File

@ -465,9 +465,10 @@ class pil_build_ext(build_ext):
# Add the directory to the include path so we can include # Add the directory to the include path so we can include
# <openjpeg.h> rather than having to cope with the versioned # <openjpeg.h> rather than having to cope with the versioned
# include path # include path
print() # FIXME (melvyn-sopacua):
print("====> Adding {} to {}".format(best_path, self.compiler.include_dirs)) # At this point it's possible that best_path is already in
print() # self.compiler.include_dirs. Should investigate how that is
# possible.
_add_directory(self.compiler.include_dirs, best_path, 0) _add_directory(self.compiler.include_dirs, best_path, 0)
feature.jpeg2000 = 'openjp2' feature.jpeg2000 = 'openjp2'
feature.openjpeg_version = '.'.join(str(x) for x in best_version) feature.openjpeg_version = '.'.join(str(x) for x in best_version)