-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed the patch so that tiff 4.0.3 works with libjpeg 9. WIP #3.
- Loading branch information
root
committed
Aug 12, 2013
1 parent
89d8ba5
commit dfece76
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- tiff-4.0.3/libtiff/tiffiop.h 2012-06-06 09:35:23.000000000 -0400 | ||
+++ tiff-4.0.3/libtiff/tiffiop.h 2013-08-11 22:23:00.000000000 -0400 | ||
@@ -70,4 +70,6 @@ extern void *lfind(const void *, const v | ||
#ifndef TRUE | ||
-#define TRUE 1 | ||
-#define FALSE 0 | ||
+//#define TRUE 1 | ||
+//#define FALSE 0 | ||
+typedef enum { FALSE=0, TRUE=1} boolean; | ||
+#define HAVE_BOOLEAN | ||
#endif |