Commit 0ea70e5daed08e7a7c23ca5bf1a0320478d0e552

Authored by Jay Berkenbilt
1 parent 8843e499

Update shared library major version to 10

The upcoming 3.1 release contains non-compatible API changes, though
they only affect parts of the interface that are extremely unlikely to
have been used outside of qpdf itself.  The methods and data types
affected were used for communication between QPDFWriter and QPDF and
would have had no real use in end user code.
libqpdf.map
1   -LIBQPDF_8 {
  1 +LIBQPDF_10 {
2 2 global:
3 3 *;
4 4 };
... ...
libqpdf/build.mk
... ... @@ -91,4 +91,4 @@ $(COBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.c
91 91 # * Otherwise, increment REVISION
92 92  
93 93 $(TARGETS_libqpdf): $(OBJS_libqpdf)
94   - $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),9,0,1)
  94 + $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),10,0,0)
... ...