SHA256
8
0
forked from pool/qpdf

166 Commits

Author SHA256 Message Date
Ismail Dönmez
b9ea746e98 - Update to version 8.0.1
* Handle zlib streams with data checksum errors
  * In the command line tool, allow specification of page numbers
    counting from the end in page ranges.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=65
2018-03-05 10:49:57 +00:00
7c6157e5b5 Accepting request 580506 from devel:libraries:c_c++
- Update to version 8.0.0
  * QPDFObjectHandle::getUTF8Val now properly treats non-Unicode
    strings as encoded with PDF Doc Encoding.
  * Add the option --coalesce-contents can be used to combine
    content streams of a page whose contents are an array of
    streams into a single stream.
  * Add function qpdf_check_pdf to the C API. This function does
    basic checking that is a subset of what qpdf --check performs.
  * Major enhancements to the lexical layer of qpdf. For a complete
    list of enhancements, please refer to the ChangeLog file.
  * New API for working with PDF content streams at a lexical level.
    The new class QPDFObjectHandle::TokenFilter allows the developer
    to provide token handlers.

OBS-URL: https://build.opensuse.org/request/show/580506
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=34
2018-03-01 11:06:36 +00:00
Ismail Dönmez
03abd4b0d4 -
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=63
2018-02-27 08:48:05 +00:00
Ismail Dönmez
b9e3332798 - Update to version 8.0.0
* QPDFObjectHandle::getUTF8Val now properly treats non-Unicode
    strings as encoded with PDF Doc Encoding.
  * Add the option --coalesce-contents can be used to combine
    content streams of a page whose contents are an array of
    streams into a single stream.
  * Add function qpdf_check_pdf to the C API. This function does
    basic checking that is a subset of what qpdf --check performs.
  * Major enhancements to the lexical layer of qpdf. For a complete
    list of enhancements, please refer to the ChangeLog file.
  * New API for working with PDF content streams at a lexical level.
    The new class QPDFObjectHandle::TokenFilter allows the developer
    to provide token handlers.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=62
2018-02-27 08:47:16 +00:00
cadb6a03de Accepting request 572535 from devel:libraries:c_c++
- Update to version 7.1.1
  * Fix one linearization bug affecting files whose first /ID
    component is not 16 bytes long
  * Fix some build issues
- Add signature and keyring

OBS-URL: https://build.opensuse.org/request/show/572535
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=33
2018-02-06 15:46:28 +00:00
Ismail Dönmez
3d719c54c0 - Update to version 7.1.1
* Fix one linearization bug affecting files whose first /ID
    component is not 16 bytes long
  * Fix some build issues
- Add signature and keyring

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=60
2018-02-05 09:58:55 +00:00
6441c6e081 Accepting request 568821 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/568821
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=32
2018-01-26 12:56:13 +00:00
6b76a726d6 Accepting request 568802 from home:avindra
- Update to version 7.1.0
  * Allow raw encryption key to be specified in libary and command
    line with the QPDF::setPasswordIsHexKey method and
    --password-is-hex-key option. Allow encryption key to be displayed
    with --show-encryption-key option. See 
    https://blog.didierstevens.com/2017/12/28/cracking-encrypted-pdfs-part-3/
    for a discussion of using this for cracking encrypted PDFs. I hope
    that a future release of qpdf will include some additional
    recovery options that may also make use of this capability.
  * Fix lexical error: the PDF specification allows floating point
    numbers to end with "."
  * Fix link order in the build to avoid conflicts when building
    from source while an older version of qpdf is installed
  * Add support for TIFF predictor for LZW and Flate streams. Now
  * Clarify documentation around options that control parsing but
    not output creation. Two options: --suppress-recovery and
    --ignore-xref-streams, were documented in the "Advanced
    Transformation Options" section of the manual and --help output
    even though they are not related to output. These are now
    described in a separate section called "Advanced Parsing Options."
  * Implement remaining PNG filters for decode. Prior versions could
    decode only the "up" filter. Now all PNG filters (sub, up,
    average, Paeth, optimal) are supported for decoding.
    The implementation of the remaining PNG filters changed the
    interface to the private Pl_PNGFilter class, but this class's
    header file is not in the installation, and there is no public
    interface to the class. Within the library, the class is never
    allocated on the stack; it is only ever dynamically allocated. As
    such, this does not actually break binary compatibility of the
    library.  all predictor functions are supported
- cleanup with spec-cleaner

OBS-URL: https://build.opensuse.org/request/show/568802
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=58
2018-01-24 07:39:59 +00:00
d194471844 Accepting request 527520 from devel:libraries:c_c++
- Update to version 7.0.0
  * License is now Apache-2.0
  * Add new libjpeg8-devel dependency
  * Improve the error message that is issued when QPDFWriter
	encounters a stream that can't be decoded. In particular, mention
	that the stream will be copied without filtering to avoid data
	loss.
  * Add new methods to the C API to correspond to new additions to
	QPDFWriter:
	- qpdf_set_compress_streams
	- qpdf_set_decode_level
	- qpdf_set_preserve_unreferenced_objects
	- qpdf_set_newline_before_endstream
  * Add support for writing PCLm files
  * QPDF now supports reading and writing streams encoded with
    JPEG or RunLength encoding. Library API enhancements and
    command-line options have been added to control this
    behavior. See command-line options --compress-streams
    and --decode-level and methods QPDFWriter::setCompressStreams
    and QPDFWriter::setDecodeLevel.
  * Page rotation is now supported and accessible from both the
    library and the command line.
  * Fixes CVE-2017-12595 bsc#1055960, CVE-2017-9208 bsc#1040311
    CVE-2017-9209 bsc#1040312, CVE-2017-9210 bsc#1040313,
    CVE-2017-11627 bsc#1050577, CVE-2017-11626 bsc#1050578,
    CVE-2017-11625 bsc#1050579, CVE-2017-11624 bsc#1050581

OBS-URL: https://build.opensuse.org/request/show/527520
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=31
2017-09-25 11:53:11 +00:00
Ismail Dönmez
9626e4c933 -
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=56
2017-09-20 11:58:50 +00:00
Ismail Dönmez
b629b9d566 - Update to version 7.0.0
* Improve the error message that is issued when QPDFWriter
	encounters a stream that can't be decoded. In particular, mention
	that the stream will be copied without filtering to avoid data
	loss.
  * Add new methods to the C API to correspond to new additions to
	QPDFWriter:
	- qpdf_set_compress_streams
	- qpdf_set_decode_level
	- qpdf_set_preserve_unreferenced_objects
	- qpdf_set_newline_before_endstream
  * Add support for writing PCLm files
  * QPDF now supports reading and writing streams encoded with
    JPEG or RunLength encoding. Library API enhancements and
    command-line options have been added to control this
    behavior. See command-line options --compress-streams
    and --decode-level and methods QPDFWriter::setCompressStreams
    and QPDFWriter::setDecodeLevel.
  * Page rotation is now supported and accessible from both the
    library and the command line.
  * Fixes CVE-2017-12595 bsc#1055960, CVE-2017-9208 bsc#1040311
    CVE-2017-9209 bsc#1040312, CVE-2017-9210 bsc#1040313,
    CVE-2017-11627 bsc#1050577, CVE-2017-11626 bsc#1050578,
    CVE-2017-11625 bsc#1050579, CVE-2017-11624 bsc#1050581

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=55
2017-09-20 11:58:26 +00:00
Stephan Kulow
2a57df0a95 Accepting request 343515 from devel:libraries:c_c++
- Update to version 6.0.0
  * Bump shared library version since 5.2.0 broke ABI.

- Update to version 5.2.0
  * Support for deterministic /IDs for non-encrypted files. This is
    off by default.
  * Handle more invalid xref tables

OBS-URL: https://build.opensuse.org/request/show/343515
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=30
2015-11-22 09:58:31 +00:00
Ismail Dönmez
3a4d7ad503 - Update to version 6.0.0
* Bump shared library version since 5.2.0 broke ABI.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=53
2015-11-10 19:24:56 +00:00
Ismail Dönmez
dda98465a6 - Update to version 5.2.0
* Support for deterministic /IDs for non-encrypted files. This is
    off by default.
  * Handle more invalid xref tables

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=52
2015-11-08 11:14:15 +00:00
90b2d5659b Accepting request 308619 from devel:libraries:c_c++
- Update to version 5.1.3
  * Handle object streams with more than 255 objects
  * Security fixes courtesy of Google Security Team
  * Properly handle pages that have no content
  * Robustness fixes for invalid PDF files

OBS-URL: https://build.opensuse.org/request/show/308619
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=29
2015-05-27 10:38:49 +00:00
Ismail Dönmez
bef8e57628 - Update to version 5.1.3
* Handle object streams with more than 255 objects
  * Security fixes courtesy of Google Security Team
  * Properly handle pages that have no content
  * Robustness fixes for invalid PDF files

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=50
2015-05-25 09:08:18 +00:00
Stephan Kulow
56594d0754 Accepting request 236946 from devel:libraries:c_c++
- Update to version 5.1.2
  * Please see the included ChangeLog file

OBS-URL: https://build.opensuse.org/request/show/236946
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=27
2014-06-16 19:43:04 +00:00
Ismail Dönmez
6b4e373d62 - Update to version 5.1.2
* Please see the included ChangeLog file

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=48
2014-06-12 07:57:21 +00:00
Stephan Kulow
511a3ab83c Accepting request 215559 from devel:libraries:c_c++
Provide the license source file Artistic-2.0 in the binary RPM (forwarded request 215486 from jsmeix)

OBS-URL: https://build.opensuse.org/request/show/215559
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=26
2014-01-29 21:22:20 +00:00
Ismail Dönmez
4048f6cac1 Accepting request 215486 from home:jsmeix:branches:devel:libraries:c_c++
Provide the license source file Artistic-2.0 in the binary RPM

OBS-URL: https://build.opensuse.org/request/show/215486
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=46
2014-01-29 17:01:56 +00:00
Stephan Kulow
6272044a68 Accepting request 214178 from devel:libraries:c_c++
- Update to version 5.1.1
  * Fixes https://github.com/qpdf/qpdf/issues/28

OBS-URL: https://build.opensuse.org/request/show/214178
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=25
2014-01-20 19:44:00 +00:00
Ismail Dönmez
02fe609c83 - Update to version 5.1.1
* Fixes https://github.com/qpdf/qpdf/issues/28

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=44
2014-01-17 12:18:21 +00:00
Stephan Kulow
64b35a7e28 Accepting request 211438 from devel:libraries:c_c++
- Update to version 5.1.0
  * Add ability to provide your own source of random numbers
    at runtime
  * More handling of damaged PDF files

OBS-URL: https://build.opensuse.org/request/show/211438
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=24
2013-12-19 11:31:49 +00:00
Ismail Dönmez
57e98b615e - Update to version 5.1.0
* Add ability to provide your own source of random numbers
    at runtime
  * More handling of damaged PDF files

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=42
2013-12-18 18:11:56 +00:00
Tomáš Chvátal
7ef86f2394 Accepting request 204265 from devel:libraries:c_c++
- Update to version 5.0.1
  * Some security fixes, courtesy of Redhat

OBS-URL: https://build.opensuse.org/request/show/204265
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=23
2013-10-23 08:11:09 +00:00
Ismail Dönmez
9430c48aee - Update to version 5.0.1
* Some security fixes, courtesy of Redhat

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=40
2013-10-22 09:36:29 +00:00
Stephan Kulow
c698c55ab0 Accepting request 182762 from devel:libraries:c_c++
- Update to 5.0.0
  * Same as 4.2.0 but shared lib version bumped due to ABI changes
- Apply shared library packaging policy

OBS-URL: https://build.opensuse.org/request/show/182762
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=21
2013-07-12 18:57:08 +00:00
Ismail Dönmez
6b2b1d8ff2 - Update to 5.0.0
* Same as 4.2.0 but shared lib version bumped due to ABI changes
- Apply shared library packaging policy

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=38
2013-07-10 18:21:07 +00:00
Stephan Kulow
df449b7bdc Accepting request 182475 from devel:libraries:c_c++
- Update to version 4.2.0
  * Fixes bug that would result in the loss of compressible objects
    whose generation numbers were greater than 0 when generating
    object streams.
  * Added better API calls for handling object ID and generation
    together as a QPDFObjGen.
  * Added --show-npages option to the qpdf command-line tool.
  * Several small enhancements to make qpdf able to handle a wider
    range of broken input files.

OBS-URL: https://build.opensuse.org/request/show/182475
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=20
2013-07-08 19:45:49 +00:00
Ismail Dönmez
f4bfb51003 - Update to version 4.2.0
* Fixes bug that would result in the loss of compressible objects
    whose generation numbers were greater than 0 when generating
    object streams.
  * Added better API calls for handling object ID and generation
    together as a QPDFObjGen.
  * Added --show-npages option to the qpdf command-line tool.
  * Several small enhancements to make qpdf able to handle a wider
    range of broken input files.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=36
2013-07-08 10:17:36 +00:00
Stephan Kulow
b016d94944 Accepting request 164008 from devel:libraries:c_c++
- Update to version 4.1.0
  * New API calls for parsing PDF content streams
  * qpdf --check now parses all pages' content streams in addition
    to doing other checks.
  * Overridden compressed objects are properly handled.
- Drop qpdf-ppc64.patch: merged upstream

OBS-URL: https://build.opensuse.org/request/show/164008
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=19
2013-04-15 09:17:27 +00:00
Ismail Dönmez
f2615d7313 - Update to version 4.1.0
* New API calls for parsing PDF content streams
  * qpdf --check now parses all pages' content streams in addition
    to doing other checks.
  * Overridden compressed objects are properly handled.
- Drop qpdf-ppc64.patch: merged upstream

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=34
2013-04-14 21:20:31 +00:00
Ismail Dönmez
af75a4a114 Accepting request 146937 from devel:libraries:c_c++
- Detect binary attachments better (qpdf-ppc64.patch)
  This fix eliminates a false test failure on some platforms and makes
  the binary test work properly whether characters with the high bit
  set, when treated as integers, are negative or not.
- pass --enable-show-failed-test-output to configure, to see 
  detailed failure reason in build log. (forwarded request 146935 from k0da)

OBS-URL: https://build.opensuse.org/request/show/146937
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=17
2013-01-04 10:38:14 +00:00
Ismail Dönmez
5769b797c5 Accepting request 146935 from home:k0da:ppc
- Detect binary attachments better (qpdf-ppc64.patch)
  This fix eliminates a false test failure on some platforms and makes
  the binary test work properly whether characters with the high bit
  set, when treated as integers, are negative or not.
- pass --enable-show-failed-test-output to configure, to see 
  detailed failure reason in build log.

OBS-URL: https://build.opensuse.org/request/show/146935
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=32
2013-01-03 22:04:25 +00:00
Ismail Dönmez
6112c848e9 Accepting request 146752 from devel:libraries:c_c++
- Update to version 4.0.0
  * Support for Acrobat X & XI encryption
  * Support for extension levels in PDF version information.
  * New methods for supporting read and write from/to arbitrary sources.
  * Support for unencrypted files with encrypted attachments.
  * Support for files with junk preceding the PDF header.

OBS-URL: https://build.opensuse.org/request/show/146752
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=16
2013-01-02 12:01:09 +00:00
Ismail Dönmez
5374bfae8c - Update to version 4.0.0
* Support for Acrobat X & XI encryption
  * Support for extension levels in PDF version information.
  * New methods for supporting read and write from/to arbitrary sources.
  * Support for unencrypted files with encrypted attachments.
  * Support for files with junk preceding the PDF header.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=30
2012-12-31 20:10:23 +00:00
Stephan Kulow
7d3077eaf2 Accepting request 133223 from devel:libraries:c_c++
- Update to version 3.0.2
  * Calling QPDFWriter::setOutputMemory would result in a
  segmentation fault from write() if setStaticID() was not used.
  * New method call QPDFWriter::setExtraHeaderText to add text
  * Make it so that you can write the same QPDF object through two
  different QPDFWriter objects that both have linearization enabled.

OBS-URL: https://build.opensuse.org/request/show/133223
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=15
2012-09-11 07:18:53 +00:00
Ismail Dönmez
b9b13e321d - Update to version 3.0.2
* Calling QPDFWriter::setOutputMemory would result in a
  segmentation fault from write() if setStaticID() was not used.
  * New method call QPDFWriter::setExtraHeaderText to add text
  * Make it so that you can write the same QPDF object through two
  different QPDFWriter objects that both have linearization enabled.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=28
2012-09-07 12:05:19 +00:00
Ismail Dönmez
5b67f74d01 Accepting request 130658 from devel:libraries:c_c++
- Update to version 3.0.1
  *  qpdf may falsely report premature EOF when reading files that 
     have object streams that end with scalars not followed by 
     whitespace.

OBS-URL: https://build.opensuse.org/request/show/130658
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=14
2012-08-12 13:27:59 +00:00
Ismail Dönmez
c267c879ec - Update to version 3.0.1
*  qpdf may falsely report premature EOF when reading files that 
     have object streams that end with scalars not followed by 
     whitespace.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=26
2012-08-11 19:27:36 +00:00
Stephan Kulow
9fb178b1f2 Accepting request 129653 from devel:libraries:c_c++
- Update to version 3.0.0
  * Page-based splitting and merging
  * Support for large files
  * The ability to set the encryption parameters of one file by copying
    them from another file. 
  * Support for creating PDF files from scratch
- Drop applied patches

OBS-URL: https://build.opensuse.org/request/show/129653
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=13
2012-08-04 07:31:33 +00:00
Ismail Dönmez
ccab451983 - Update to version 3.0.0
* Page-based splitting and merging
  * Support for large files
  * The ability to set the encryption parameters of one file by copying
    them from another file. 
  * Support for creating PDF files from scratch
- Drop applied patches

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=24
2012-08-02 11:54:47 +00:00
Stephan Kulow
cee5e65200 Accepting request 114947 from devel:libraries:c_c++
Fix build with gcc 4.7 - Please work with upstream to resolve it in upstream code base. There is also a chance that a newer version of the package might have this fixed already. (forwarded request 114934 from dimstar)

OBS-URL: https://build.opensuse.org/request/show/114947
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=11
2012-04-23 14:12:46 +00:00
Ismail Dönmez
9c4acc270c Accepting request 114934 from home:dimstar:gcc47
Fix build with gcc 4.7 - Please work with upstream to resolve it in upstream code base. There is also a chance that a newer version of the package might have this fixed already.

OBS-URL: https://build.opensuse.org/request/show/114934
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=22
2012-04-22 13:30:43 +00:00
Stephan Kulow
f6363d7072 Accepting request 107116 from devel:libraries:c_c++
- fix build with pcre 8.30

OBS-URL: https://build.opensuse.org/request/show/107116
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=10
2012-02-27 17:36:19 +00:00
4fe93fa077 - fix build with pcre 8.30
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=20
2012-02-27 08:51:07 +00:00
Stephan Kulow
029bab6fb8 Accepting request 103129 from devel:libraries:c_c++
Forward

OBS-URL: https://build.opensuse.org/request/show/103129
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=9
2012-02-08 14:42:08 +00:00
Stephan Kulow
cd7c1c103e Accepting request 101210 from devel:libraries:c_c++
- Fix devel package requires
- Build with -fvisibility-inlines-hidden, test suite
  confirms it works and saves a few dozens of entries in the 
  exported symbol table. (forwarded request 101208 from elvigia)

OBS-URL: https://build.opensuse.org/request/show/101210
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qpdf?expand=0&rev=8
2012-01-25 09:40:53 +00:00
f2b1be4d59 Remove redundant sections
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=16
2012-01-24 12:07:42 +00:00
Cristian Rodríguez
0e69130ab7 Accepting request 101208 from home:elvigia:branches:devel:libraries:c_c++
- Fix devel package requires
- Build with -fvisibility-inlines-hidden, test suite
  confirms it works and saves a few dozens of entries in the 
  exported symbol table.

OBS-URL: https://build.opensuse.org/request/show/101208
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/qpdf?expand=0&rev=15
2012-01-23 19:36:48 +00:00