Skip to content

Commit

Permalink
Prepare for libgeotiff 1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed May 21, 2024
1 parent a7ade85 commit 790228d
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 8 deletions.
10 changes: 5 additions & 5 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 1)
set(PROJECT_VERSION_PATCH 2)
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.2.2.0
# libgeotiff.so.2 -> libgeotiff.so.2.2.0
# libgeotiff.so.2.2.0
# libgeotiff.so -> libgeotiff.so.5
# libgeotiff.so.5 -> libgeotiff.so.5.2.2
# libgeotiff.so.5.2.2
set(LINK_SOVERSION "5")
set(LINK_VERSION "5.2.0")
set(LINK_VERSION "5.2.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:1:2 ${NOUNDEFINED}
libgeotiff_la_LDFLAGS = -version-info 7:2:2 ${NOUNDEFINED}

libgeotiff_la_LIBADD = libxtiff/libxtiff.la

Expand Down
20 changes: 20 additions & 0 deletions libgeotiff/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
libgeotiff 1.7.2
----------------

* GTIFGetDatumInfoEx(): handle dynamic datums
* CMake: adopt GNUInstallDirs
* CMake: export TIFF as a public dependency
* Add XTIFFClientOpenExt() with re-entrant error callbacks
* listgeo: add a -no_corners option to avoid printing corner
coordinates which might be PROJ version sensitive (refs #81)
* Fix test failures with PROJ 9.1.1 and 9.3
* Remove trailing spaces from many files.
* Localize variables and add const when possible in a number of files
* geo_normalize.c: sprintf --> snprintf
* Add missing includes
* Fix -Werror=calloc-transposed-args with gcc 14
* FindPROJ.cmake: proj_experimental;h -> proj_experimental.h
* CMake: add a BUILD_SHARED_LIBS option, and make it default to ON
* autoconf/CMake: add generation of libgeotiff.pc
* Remove INSTALL and install-sh autoconf-generated files

libgeotiff 1.7.1
----------------

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], [1])
m4_define([VERSION_POINT], [2])
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 1710
#define LIBGEOTIFF_VERSION 1720

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

0 comments on commit 790228d

Please sign in to comment.