File tree Expand file tree Collapse file tree 5 files changed +28
-8
lines changed Expand file tree Collapse file tree 5 files changed +28
-8
lines changed Original file line number Diff line number Diff line change @@ -21,17 +21,17 @@ SET(CMAKE_COLOR_MAKEFILE ON)
21
21
# Version information
22
22
set (PROJECT_VERSION_MAJOR 1 )
23
23
set (PROJECT_VERSION_MINOR 7 )
24
- set (PROJECT_VERSION_PATCH 1 )
24
+ set (PROJECT_VERSION_PATCH 2 )
25
25
set (PROJECT_VERSION
26
26
"${PROJECT_VERSION_MAJOR} .${PROJECT_VERSION_MINOR} .${PROJECT_VERSION_PATCH} " )
27
27
set (GeoTIFF_VERSION ${PROJECT_VERSION} )
28
28
29
29
# Set library version to match that of autoconf:
30
- # libgeotiff.so -> libgeotiff.so.2.2.0
31
- # libgeotiff.so.2 -> libgeotiff.so.2 .2.0
32
- # libgeotiff.so.2 .2.0
30
+ # libgeotiff.so -> libgeotiff.so.5
31
+ # libgeotiff.so.5 -> libgeotiff.so.5 .2.2
32
+ # libgeotiff.so.5 .2.2
33
33
set (LINK_SOVERSION "5" )
34
- set (LINK_VERSION "5.2.0 " )
34
+ set (LINK_VERSION "5.2.2 " )
35
35
36
36
string (TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWER )
37
37
string (TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPER )
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ libgeotiff_la_SOURCES = cpl_serv.c \
53
53
geo_strtod.c \
54
54
geotiff_proj4.c
55
55
56
- libgeotiff_la_LDFLAGS = -version-info 7:1 :2 ${NOUNDEFINED}
56
+ libgeotiff_la_LDFLAGS = -version-info 7:2 :2 ${NOUNDEFINED}
57
57
58
58
libgeotiff_la_LIBADD = libxtiff/libxtiff.la
59
59
Original file line number Diff line number Diff line change
1
+ libgeotiff 1.7.2
2
+ ----------------
3
+
4
+ * GTIFGetDatumInfoEx(): handle dynamic datums
5
+ * CMake: adopt GNUInstallDirs
6
+ * CMake: export TIFF as a public dependency
7
+ * Add XTIFFClientOpenExt() with re-entrant error callbacks
8
+ * listgeo: add a -no_corners option to avoid printing corner
9
+ coordinates which might be PROJ version sensitive (refs #81)
10
+ * Fix test failures with PROJ 9.1.1 and 9.3
11
+ * Remove trailing spaces from many files.
12
+ * Localize variables and add const when possible in a number of files
13
+ * geo_normalize.c: sprintf --> snprintf
14
+ * Add missing includes
15
+ * Fix -Werror=calloc-transposed-args with gcc 14
16
+ * FindPROJ.cmake: proj_experimental;h -> proj_experimental.h
17
+ * CMake: add a BUILD_SHARED_LIBS option, and make it default to ON
18
+ * autoconf/CMake: add generation of libgeotiff.pc
19
+ * Remove INSTALL and install-sh autoconf-generated files
20
+
1
21
libgeotiff 1.7.1
2
22
----------------
3
23
Original file line number Diff line number Diff line change 2
2
3
3
m4_define ( [ VERSION_MAJOR] , [ 1] )
4
4
m4_define ( [ VERSION_MINOR] , [ 7] )
5
- m4_define ( [ VERSION_POINT] , [ 1 ] )
5
+ m4_define ( [ VERSION_POINT] , [ 2 ] )
6
6
m4_define ( [ GEOTIFF_VERSION] ,
7
7
[ VERSION_MAJOR.VERSION_MINOR.VERSION_POINT] )
8
8
Original file line number Diff line number Diff line change 47
47
#define GEOTIFF_SPEC_1_1_MINOR_REVISION 1
48
48
49
49
/* Library version */
50
- #define LIBGEOTIFF_VERSION 1710
50
+ #define LIBGEOTIFF_VERSION 1720
51
51
52
52
#include "geo_config.h"
53
53
#include "geokeys.h"
You can’t perform that action at this time.
0 commit comments