Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* |
michael@0 | 2 | * jversion.h |
michael@0 | 3 | * |
michael@0 | 4 | * This file was part of the Independent JPEG Group's software: |
michael@0 | 5 | * Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding. |
michael@0 | 6 | * Modifications: |
michael@0 | 7 | * Copyright (C) 2010, 2012-2014, D. R. Commander. |
michael@0 | 8 | * For conditions of distribution and use, see the accompanying README file. |
michael@0 | 9 | * |
michael@0 | 10 | * This file contains software version identification. |
michael@0 | 11 | */ |
michael@0 | 12 | |
michael@0 | 13 | |
michael@0 | 14 | #if JPEG_LIB_VERSION >= 80 |
michael@0 | 15 | |
michael@0 | 16 | #define JVERSION "8d 15-Jan-2012" |
michael@0 | 17 | |
michael@0 | 18 | #elif JPEG_LIB_VERSION >= 70 |
michael@0 | 19 | |
michael@0 | 20 | #define JVERSION "7 27-Jun-2009" |
michael@0 | 21 | |
michael@0 | 22 | #else |
michael@0 | 23 | |
michael@0 | 24 | #define JVERSION "6b 27-Mar-1998" |
michael@0 | 25 | |
michael@0 | 26 | #endif |
michael@0 | 27 | |
michael@0 | 28 | #define JCOPYRIGHT "Copyright (C) 1991-2012 Thomas G. Lane, Guido Vollbeding\n" \ |
michael@0 | 29 | "Copyright (C) 1999-2006 MIYASAKA Masaru\n" \ |
michael@0 | 30 | "Copyright (C) 2009 Pierre Ossman for Cendio AB\n" \ |
michael@0 | 31 | "Copyright (C) 2009-2014 D. R. Commander\n" \ |
michael@0 | 32 | "Copyright (C) 2009-2011 Nokia Corporation and/or its subsidiary(-ies)" |