mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
pythonplugin: Rename plugin file to match plugin name
This is required by the new loader macro.
This commit is contained in:
parent
7352b78a39
commit
2cfded4834
2 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
plugin_LTLIBRARIES = libgstpythonplugin.la
|
plugin_LTLIBRARIES = libgstpython.la
|
||||||
|
|
||||||
INCLUDES = $(PYGOBJECT_CFLAGS) $(GST_CFLAGS)\
|
INCLUDES = $(PYGOBJECT_CFLAGS) $(GST_CFLAGS)\
|
||||||
-DPYTHON_VERSION=\"$(PYTHON_VERSION)\" \
|
-DPYTHON_VERSION=\"$(PYTHON_VERSION)\" \
|
||||||
|
@ -7,7 +7,7 @@ INCLUDES = $(PYGOBJECT_CFLAGS) $(GST_CFLAGS)\
|
||||||
-DPY_LIB_SUFFIX=$(PYTHON_LIB_SUFFIX) \
|
-DPY_LIB_SUFFIX=$(PYTHON_LIB_SUFFIX) \
|
||||||
$(PYTHON_INCLUDES)
|
$(PYTHON_INCLUDES)
|
||||||
|
|
||||||
libgstpythonplugin_la_SOURCES = gstpythonplugin.c
|
libgstpython_la_SOURCES = gstpythonplugin.c
|
||||||
libgstpythonplugin_la_LDFLAGS = -avoid-version -shrext $(PYTHON_SO)
|
libgstpython_la_LDFLAGS = -avoid-version -shrext $(PYTHON_SO)
|
||||||
libgstpythonplugin_la_LIBADD = $(PYTHON_LIBS) $(PYGOBJECT_LIBS) $(GST_LIBS)
|
libgstpython_la_LIBADD = $(PYTHON_LIBS) $(PYGOBJECT_LIBS) $(GST_LIBS)
|
||||||
libgstpythonplugin_la_CFLAGS = $(GST_CFLAGS) $(PYGOBJECT_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(PYTHON_INCLUDES)
|
libgstpython_la_CFLAGS = $(GST_CFLAGS) $(PYGOBJECT_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(PYTHON_INCLUDES)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
gst_elements_shared = shared_library('gstpythonplugin',
|
gst_elements_shared = shared_library('gstpython',
|
||||||
['gstpythonplugin.c'],
|
['gstpythonplugin.c'],
|
||||||
c_args : '-DHAVE_CONFIG_H -DPY_LIB_LOC=@0@'.format(pylib_loc),
|
c_args : '-DHAVE_CONFIG_H -DPY_LIB_LOC=@0@'.format(pylib_loc),
|
||||||
include_directories : [configinc],
|
include_directories : [configinc],
|
||||||
|
|
Loading…
Reference in a new issue