summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2011-02-27 11:18:15 +0000
committerAlbert Astals Cid <aacid@kde.org>2011-02-27 11:18:15 +0000
commit40052024aeb9076fb9517b971846ba856eb562b3 (patch)
tree6f5f48ca5d87ab86154f201d924d6bfc6785c05b
parent9eee294da5eb7cc9e08db734f7e3cf07ef245d8d (diff)
Increase soname
PreScanOutputDev got bigger
-rw-r--r--CMakeLists.txt4
-rw-r--r--poppler/Makefile.am2
2 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3db77407..303beb49 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -16,7 +16,7 @@ test_big_endian(WORDS_BIGENDIAN)
set(POPPLER_MAJOR_VERSION "0")
set(POPPLER_MINOR_VERSION "16")
-set(POPPLER_MICRO_VERSION "2")
+set(POPPLER_MICRO_VERSION "3")
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
# command line switches
@@ -367,7 +367,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else(MSVC)
add_library(poppler SHARED ${poppler_SRCS})
endif(MSVC)
-set_target_properties(poppler PROPERTIES VERSION 12.0.0 SOVERSION 12)
+set_target_properties(poppler PROPERTIES VERSION 13.0.0 SOVERSION 13)
target_link_libraries(poppler ${poppler_LIBS})
target_link_libraries(poppler LINK_INTERFACE_LIBRARIES "")
install(TARGETS poppler RUNTIME DESTINATION bin LIBRARY DESTINATION lib${LIB_SUFFIX} ARCHIVE DESTINATION lib${LIB_SUFFIX})
diff --git a/poppler/Makefile.am b/poppler/Makefile.am
index 2e9ee680..9344ebac 100644
--- a/poppler/Makefile.am
+++ b/poppler/Makefile.am
@@ -176,7 +176,7 @@ libpoppler_la_LIBADD = \
$(PTHREAD_LIBS) \
$(win32_libs)
-libpoppler_la_LDFLAGS = -version-info 12:0:0 @create_shared_lib@ @auto_import_flags@
+libpoppler_la_LDFLAGS = -version-info 13:0:0 @create_shared_lib@ @auto_import_flags@
if ENABLE_XPDF_HEADERS