Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/poppler/files: poppler-0.12.4-config.patch
Date: Thu, 18 Feb 2010 01:41:29
Message-Id: E1NhvOQ-0000DO-4f@stork.gentoo.org
1 yngwin 10/02/18 01:41:26
2
3 Added: poppler-0.12.4-config.patch
4 Log:
5 Version bump
6 (Portage version: 2.2_rc62/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 app-text/poppler/files/poppler-0.12.4-config.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/poppler/files/poppler-0.12.4-config.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/poppler/files/poppler-0.12.4-config.patch?rev=1.1&content-type=text/plain
13
14 Index: poppler-0.12.4-config.patch
15 ===================================================================
16 diff -urN poppler-0.12.3.sav/poppler/poppler-config.h poppler-0.12.3/poppler/poppler-config.h
17 --- poppler-0.12.3.sav/poppler/poppler-config.h 2009-12-24 11:51:39.000000000 +0100
18 +++ poppler-0.12.3/poppler/poppler-config.h 1970-01-01 01:00:00.000000000 +0100
19 @@ -1,91 +0,0 @@
20 -/* poppler/poppler-config.h. Generated from poppler-config.h.in by configure. */
21 -//================================================= -*- mode: c++ -*- ====
22 -//
23 -// poppler-config.h
24 -//
25 -// Copyright 1996-2004 Glyph & Cog, LLC
26 -//
27 -//========================================================================
28 -
29 -#ifndef POPPLER_CONFIG_H
30 -#define POPPLER_CONFIG_H
31 -
32 -// We duplicate some of the config.h #define's here since they are
33 -// used in some of the header files we install. The #ifndef/#endif
34 -// around #undef look odd, but it's to silence warnings about
35 -// redefining those symbols.
36 -
37 -/* Enable multithreading support. */
38 -#ifndef MULTITHREADED
39 -#define MULTITHREADED 1
40 -#endif
41 -
42 -/* Enable exceptions. */
43 -#ifndef USE_EXCEPTIONS
44 -/* #undef USE_EXCEPTIONS */
45 -#endif
46 -
47 -/* Use fixedpoint. */
48 -#ifndef USE_FIXEDPOINT
49 -/* #undef USE_FIXEDPOINT */
50 -#endif
51 -
52 -/* Include support for OPI comments. */
53 -#ifndef OPI_SUPPORT
54 -#define OPI_SUPPORT 1
55 -#endif
56 -
57 -/* Enable word list support. */
58 -#ifndef TEXTOUT_WORD_LIST
59 -#define TEXTOUT_WORD_LIST 1
60 -#endif
61 -
62 -// Also, there's a couple of preprocessor symbols in the header files
63 -// that are used but never defined: DISABLE_OUTLINE, DEBUG_MEM and
64 -
65 -//------------------------------------------------------------------------
66 -// version
67 -//------------------------------------------------------------------------
68 -
69 -// copyright notice
70 -#define popplerCopyright "Copyright 2005-2009 The Poppler Developers - http://poppler.freedesktop.org"
71 -#define xpdfCopyright "Copyright 1996-2004 Glyph & Cog, LLC"
72 -
73 -//------------------------------------------------------------------------
74 -// popen
75 -//------------------------------------------------------------------------
76 -
77 -#if defined(_MSC_VER) || defined(__BORLANDC__)
78 -#define popen _popen
79 -#define pclose _pclose
80 -#endif
81 -
82 -#if defined(VMS) || defined(VMCMS) || defined(DOS) || defined(OS2) || defined(__EMX__) || defined(_WIN32) || defined(__DJGPP__) || defined(MACOS)
83 -#define POPEN_READ_MODE "rb"
84 -#else
85 -#define POPEN_READ_MODE "r"
86 -#endif
87 -
88 -//------------------------------------------------------------------------
89 -// Win32 stuff
90 -//------------------------------------------------------------------------
91 -
92 -#if defined(_WIN32) && !defined(_MSC_VER)
93 -#include <windef.h>
94 -#else
95 -#define CDECL
96 -#endif
97 -
98 -//------------------------------------------------------------------------
99 -// Compiler
100 -//------------------------------------------------------------------------
101 -
102 -#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4)
103 -#define GCC_PRINTF_FORMAT(fmt_index, va_index) \
104 - __attribute__((__format__(__printf__, fmt_index, va_index)))
105 -#else
106 -#define GCC_PRINTF_FORMAT(fmt_index, va_index)
107 -#endif
108 -
109 -
110 -#endif /* POPPLER_CONFIG_H */