summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsj <[email protected]>2025-11-05 14:29:25 +0100
committersj <[email protected]>2025-11-05 14:29:25 +0100
commit2521fb43d84297f03a6e31125d3e9ce0d2b0b989 (patch)
tree2229bde6a93bde97efadd907b6d87a1122777b36
parent1fcc7d19a4847528b18b3d7a408136136b377043 (diff)
downloadatril-master.tar.bz2
atril-master.tar.xz
Fix meson pkg-config compatibility with configureHEADmaster
pkg-config input files set -latrilview etc. but the library outputs created were libview.so, so any project that used pkg-config was broken, not to mention that the file itself also got renamed from its previous value and pkg-config wouldn't find it anymore.
-rw-r--r--libdocument/meson.build2
-rw-r--r--libview/meson.build2
-rw-r--r--meson.build2
3 files changed, 3 insertions, 3 deletions
diff --git a/libdocument/meson.build b/libdocument/meson.build
index b19242e3..f93ccd3c 100644
--- a/libdocument/meson.build
+++ b/libdocument/meson.build
@@ -124,7 +124,7 @@ libdocument_deps = [
]
libdocument = library(
- 'document',
+ 'atrildocument',
libdocument_private_headers + libdocument_sources,
dependencies: libdocument_deps,
include_directories: include_root,
diff --git a/libview/meson.build b/libview/meson.build
index f345a608..0075c154 100644
--- a/libview/meson.build
+++ b/libview/meson.build
@@ -85,7 +85,7 @@ if get_option('epub')
endif
libview = library(
- 'view',
+ 'atrilview',
libview_sources + libview_private_headers + libdoc_enums + libview_marshal,
include_directories: include_dirs,
dependencies: libview_deps,
diff --git a/meson.build b/meson.build
index a8dc8ba7..bf3ee890 100644
--- a/meson.build
+++ b/meson.build
@@ -22,7 +22,7 @@ major_version = version_list[0]
minor_version = version_list[1]
micro_version = version_list[2]
-api_version = '1.5'
+api_version = '1.5.0'
binary_version = '3.0.0'
binary_major_version = binary_version.split('.')[0]