2018-12-06 14:54:35 +01:00
|
|
|
From: Jan Engelhardt <jengelh@inai.de>
|
|
|
|
Date: 2018-12-06 12:28:42.992186963 +0100
|
|
|
|
|
2019-08-23 20:54:48 +02:00
|
|
|
I get it is still in development. But unversioned libraries suck nevertheless.
|
2018-12-06 14:54:35 +01:00
|
|
|
---
|
2021-07-23 15:46:25 +02:00
|
|
|
src/libcamera/base/meson.build | 3 ++-
|
|
|
|
src/libcamera/meson.build | 3 ++-
|
|
|
|
2 files changed, 4 insertions(+), 2 deletions(-)
|
2018-12-06 14:54:35 +01:00
|
|
|
|
2021-07-23 15:46:25 +02:00
|
|
|
Index: libcamera-0~2809.e0704e97/src/libcamera/base/meson.build
|
2018-12-06 14:54:35 +01:00
|
|
|
===================================================================
|
2021-07-23 15:46:25 +02:00
|
|
|
--- libcamera-0~2809.e0704e97.orig/src/libcamera/base/meson.build
|
|
|
|
+++ libcamera-0~2809.e0704e97/src/libcamera/base/meson.build
|
|
|
|
@@ -25,9 +25,10 @@ libcamera_base_deps = [
|
|
|
|
# the use of headers which must not be exposed to the libcamera public api.
|
|
|
|
libcamera_base_args = [ '-DLIBCAMERA_BASE_PRIVATE' ]
|
|
|
|
|
|
|
|
-libcamera_base_lib = shared_library('libcamera-base',
|
|
|
|
+libcamera_base_lib = shared_library('libcamera-base-suse',
|
|
|
|
[libcamera_base_sources, libcamera_base_headers],
|
|
|
|
name_prefix : '',
|
2021-09-09 11:30:19 +02:00
|
|
|
+ soversion : '6',
|
2021-07-23 15:46:25 +02:00
|
|
|
install : true,
|
|
|
|
cpp_args : libcamera_base_args,
|
|
|
|
include_directories : libcamera_includes,
|
|
|
|
Index: libcamera-0~2809.e0704e97/src/libcamera/meson.build
|
|
|
|
===================================================================
|
|
|
|
--- libcamera-0~2809.e0704e97.orig/src/libcamera/meson.build
|
|
|
|
+++ libcamera-0~2809.e0704e97/src/libcamera/meson.build
|
|
|
|
@@ -124,8 +124,9 @@ libcamera_deps = [
|
2020-03-09 17:44:37 +01:00
|
|
|
# runtime if the library is running from an installed location by checking
|
|
|
|
# for the presence or abscence of the dynamic tag.
|
2018-12-11 18:05:23 +01:00
|
|
|
|
2021-07-23 15:46:25 +02:00
|
|
|
-libcamera = shared_library('libcamera',
|
|
|
|
+libcamera = shared_library('libcamera-suse',
|
2019-08-23 20:54:48 +02:00
|
|
|
libcamera_sources,
|
2021-09-09 11:30:19 +02:00
|
|
|
+ soversion : '6',
|
2021-07-23 15:46:25 +02:00
|
|
|
name_prefix : '',
|
2018-12-06 14:54:35 +01:00
|
|
|
install : true,
|
2021-07-23 15:46:25 +02:00
|
|
|
include_directories : includes,
|