summaryrefslogtreecommitdiff
path: root/third_party/libtiff/README.pdfium
diff options
context:
space:
mode:
authorNicolas Pena <npm@chromium.org>2017-08-03 16:13:40 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-08-03 20:44:41 +0000
commit6a5b7872c838ba9e24ea6e1f9a306bb95a80ae6c (patch)
treed127b6d41849685d85d4f437e050299f65fdd550 /third_party/libtiff/README.pdfium
parent28fb7ba083dba5e09493fd37a11994de51527dfc (diff)
downloadpdfium-6a5b7872c838ba9e24ea6e1f9a306bb95a80ae6c.tar.xz
LibTIFF: fix defines in tiffconf
This CL hardcodes the defines used in tiffconf so that the values can be used inside of '#if'. The CL that changed them was: https://pdfium-review.googlesource.com/c/9410 SIZEOF_VOIDP was a new variable in that CL. This CL uses __LP64__ to detect whether this value should be set to 8 or to 4. Bug: chromium:718494 Change-Id: I628d64cb7e2e94c47b8bcc1856abf5949d6578d4 Reviewed-on: https://pdfium-review.googlesource.com/10090 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: Nicolás Peña <npm@chromium.org>
Diffstat (limited to 'third_party/libtiff/README.pdfium')
-rw-r--r--third_party/libtiff/README.pdfium1
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/libtiff/README.pdfium b/third_party/libtiff/README.pdfium
index 80cc6371f4..39a8b5f025 100644
--- a/third_party/libtiff/README.pdfium
+++ b/third_party/libtiff/README.pdfium
@@ -16,3 +16,4 @@ Local Modifications:
0017-safe_skews_in_gtTileContig.patch: return error if to/from skews overflow from int32.
0025-upstream-OOM-gtTileContig: allocates the decoded buffer only after a first successful TIFFFillStrip.
0026-upstream-null-dereference: properly evit when stoponerr is set and avoid null dereferences.
+0027-build-config.patch: #define variables so their value can be used by #if.