Skip to content

Commit

Permalink
Prepare for libgeotiff 1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed May 24, 2024
1 parent d85672f commit d2c72db
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
8 changes: 4 additions & 4 deletions libgeotiff/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ SET(CMAKE_COLOR_MAKEFILE ON)
# Version information
set(PROJECT_VERSION_MAJOR 1)
set(PROJECT_VERSION_MINOR 7)
set(PROJECT_VERSION_PATCH 2)
set(PROJECT_VERSION_PATCH 3)
set(PROJECT_VERSION
"${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
set(GeoTIFF_VERSION ${PROJECT_VERSION})

# Set library version to match that of autoconf:
# libgeotiff.so -> libgeotiff.so.5
# libgeotiff.so.5 -> libgeotiff.so.5.2.2
# libgeotiff.so.5.2.2
# libgeotiff.so.5 -> libgeotiff.so.5.3.2
# libgeotiff.so.5.3.2
set(LINK_SOVERSION "5")
set(LINK_VERSION "5.2.2")
set(LINK_VERSION "5.3.2")

string (TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWER)
string (TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPER)
Expand Down
2 changes: 1 addition & 1 deletion libgeotiff/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ libgeotiff_la_SOURCES = cpl_serv.c \
geo_strtod.c \
geotiff_proj4.c

libgeotiff_la_LDFLAGS = -version-info 7:2:2 ${NOUNDEFINED}
libgeotiff_la_LDFLAGS = -version-info 7:3:2 ${NOUNDEFINED}

libgeotiff_la_LIBADD = libxtiff/libxtiff.la

Expand Down
6 changes: 6 additions & 0 deletions libgeotiff/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
libgeotiff 1.7.3
----------------

* CMake: fix typo in CMAKE_INSTALL_BINDIR install target that affects
location of geotiff.dll (#117)

libgeotiff 1.7.2
----------------

Expand Down
2 changes: 1 addition & 1 deletion libgeotiff/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

m4_define([VERSION_MAJOR], [1])
m4_define([VERSION_MINOR], [7])
m4_define([VERSION_POINT], [2])
m4_define([VERSION_POINT], [3])
m4_define([GEOTIFF_VERSION],
[VERSION_MAJOR.VERSION_MINOR.VERSION_POINT])

Expand Down
2 changes: 1 addition & 1 deletion libgeotiff/geotiff.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#define GEOTIFF_SPEC_1_1_MINOR_REVISION 1

/* Library version */
#define LIBGEOTIFF_VERSION 1720
#define LIBGEOTIFF_VERSION 1730

#include "geo_config.h"
#include "geokeys.h"
Expand Down

0 comments on commit d2c72db

Please sign in to comment.