summaryrefslogtreecommitdiff
path: root/plugins/AdvaImg/src/LibJPEG/install.txt
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-08-26 14:14:54 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-08-26 14:14:54 +0000
commit4906fb47f340bea7d2ba551364d1a5d8d0473861 (patch)
tree1ca2cbed515675150be45f06f0cbb779683ca626 /plugins/AdvaImg/src/LibJPEG/install.txt
parentaf85ed40e26a345cc15ba7f310c92a62116865d1 (diff)
libjpeg update
git-svn-id: http://svn.miranda-ng.org/main/trunk@5843 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AdvaImg/src/LibJPEG/install.txt')
-rw-r--r--plugins/AdvaImg/src/LibJPEG/install.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/AdvaImg/src/LibJPEG/install.txt b/plugins/AdvaImg/src/LibJPEG/install.txt
index d8f24952fb..d73a05761f 100644
--- a/plugins/AdvaImg/src/LibJPEG/install.txt
+++ b/plugins/AdvaImg/src/LibJPEG/install.txt
@@ -1,6 +1,6 @@
INSTALLATION INSTRUCTIONS for the Independent JPEG Group's JPEG software
-Copyright (C) 1991-2011, Thomas G. Lane, Guido Vollbeding.
+Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding.
This file is part of the Independent JPEG Group's software.
For conditions of distribution and use, see the accompanying README file.
@@ -848,14 +848,14 @@ with /Oo-.
Microsoft Windows (all versions), generic comments:
Some Windows system include files define typedef boolean as "unsigned char".
-The IJG code also defines typedef boolean, but we make it "int" by default.
+The IJG code also defines typedef boolean, but we make it an "enum" by default.
This doesn't affect the IJG programs because we don't import those Windows
include files. But if you use the JPEG library in your own program, and some
of your program's files import one definition of boolean while some import the
other, you can get all sorts of mysterious problems. A good preventive step
is to make the IJG library use "unsigned char" for boolean. To do that,
add something like this to your jconfig.h file:
- /* Define "boolean" as unsigned char, not int, per Windows custom */
+ /* Define "boolean" as unsigned char, not enum, per Windows custom */
#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
typedef unsigned char boolean;
#endif