[totem] build: Fix "totem" trying to load shared libraries



commit 72e1d377b58e08dc6d30e3ecfce3cb4b84c2f34c
Author: Bastien Nocera <hadess hadess net>
Date:   Fri Jun 23 18:11:36 2017 +0200

    build: Fix "totem" trying to load shared libraries
    
    This used to be a static library, built into the player library, so make
    it so again:
    totem: error while loading shared libraries: libtotemtimehelpers.so: cannot open shared object file: No 
such file or directory

 src/gst/meson.build        |    6 +++---
 src/properties/meson.build |    2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/gst/meson.build b/src/gst/meson.build
index c5ec2c4..209fb6f 100644
--- a/src/gst/meson.build
+++ b/src/gst/meson.build
@@ -5,7 +5,7 @@ libtotem_gst_helpers_deps = [
   gst_tag_dep,
 ]
 
-libtotem_gst_helpers = library(
+libtotem_gst_helpers = static_library(
   'totemgsthelpers',
   sources: 'totem-gst-helpers.c',
   dependencies: libtotem_gst_helpers_deps
@@ -23,7 +23,7 @@ libtotem_gst_pixbuf_helpers_deps = [
   gst_video_dep
 ]
 
-libtotem_gst_pixbuf_helpers = library(
+libtotem_gst_pixbuf_helpers = static_library(
   'totemgstpixbufhelpers',
   sources: 'totem-gst-pixbuf-helpers.c',
   dependencies: libtotem_gst_pixbuf_helpers_deps
@@ -35,7 +35,7 @@ libtotem_gst_pixbuf_helpers_dep = declare_dependency(
   dependencies: libtotem_gst_pixbuf_helpers_deps
 )
 
-libtotem_time_helpers = library(
+libtotem_time_helpers = static_library(
   'totemtimehelpers',
   sources: 'totem-time-helpers.c',
   dependencies: glib_dep
diff --git a/src/properties/meson.build b/src/properties/meson.build
index 19fbab3..851203d 100644
--- a/src/properties/meson.build
+++ b/src/properties/meson.build
@@ -1,4 +1,4 @@
-libbacon_video_widget_properties = library(
+libbacon_video_widget_properties = static_library(
   'libbaconvideowidgetproperties',
   sources: 'bacon-video-widget-properties.c',
   include_directories: [


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]