mirror of
https://github.com/weechat/weechat.git
synced 2026-07-01 23:36:37 +02:00
Renamed plugins names (removed "lib" prefix in name)
This commit is contained in:
@@ -19,8 +19,8 @@ INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(ASPELL_CFLAGS)
|
||||
|
||||
libdir = ${weechat_libdir}/plugins
|
||||
|
||||
lib_LTLIBRARIES = libaspell.la
|
||||
lib_LTLIBRARIES = aspell.la
|
||||
|
||||
libaspell_la_SOURCES = weechat-aspell.h weechat-aspell.c
|
||||
libaspell_la_LDFLAGS = -module
|
||||
libaspell_la_LIBADD = $(ASPELL_LFLAGS)
|
||||
aspell_la_SOURCES = weechat-aspell.h weechat-aspell.c
|
||||
aspell_la_LDFLAGS = -module
|
||||
aspell_la_LIBADD = $(ASPELL_LFLAGS)
|
||||
|
||||
@@ -703,10 +703,7 @@ plugin_search_full_name (char *filename)
|
||||
name_with_ext = (char *)malloc (length);
|
||||
if (!name_with_ext)
|
||||
return strdup (filename);
|
||||
name_with_ext[0] = '\0';
|
||||
if (ascii_strncasecmp (filename, "lib", 3) != 0)
|
||||
strcat (name_with_ext, "lib");
|
||||
strcat (name_with_ext, filename);
|
||||
strcpy (name_with_ext, filename);
|
||||
if (!strchr (filename, '.')
|
||||
&& cfg_plugins_extension && cfg_plugins_extension[0])
|
||||
strcat (name_with_ext, cfg_plugins_extension);
|
||||
|
||||
@@ -19,8 +19,8 @@ INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(LUA_CFLAGS)
|
||||
|
||||
libdir = ${weechat_libdir}/plugins
|
||||
|
||||
lib_LTLIBRARIES = liblua.la
|
||||
lib_LTLIBRARIES = lua.la
|
||||
|
||||
liblua_la_SOURCES = weechat-lua.c
|
||||
liblua_la_LDFLAGS = -module
|
||||
liblua_la_LIBADD = ../lib_weechat_plugins_scripts.la $(LUA_LFLAGS)
|
||||
lua_la_SOURCES = weechat-lua.c
|
||||
lua_la_LDFLAGS = -module
|
||||
lua_la_LIBADD = ../lib_weechat_plugins_scripts.la $(LUA_LFLAGS)
|
||||
|
||||
@@ -19,8 +19,8 @@ INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(PERL_CFLAGS)
|
||||
|
||||
libdir = ${weechat_libdir}/plugins
|
||||
|
||||
lib_LTLIBRARIES = libperl.la
|
||||
lib_LTLIBRARIES = perl.la
|
||||
|
||||
libperl_la_SOURCES = weechat-perl.c
|
||||
libperl_la_LDFLAGS = -module
|
||||
libperl_la_LIBADD = ../lib_weechat_plugins_scripts.la $(PERL_LFLAGS)
|
||||
perl_la_SOURCES = weechat-perl.c
|
||||
perl_la_LDFLAGS = -module
|
||||
perl_la_LIBADD = ../lib_weechat_plugins_scripts.la $(PERL_LFLAGS)
|
||||
|
||||
@@ -19,8 +19,8 @@ INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(PYTHON_CFLAGS)
|
||||
|
||||
libdir = ${weechat_libdir}/plugins
|
||||
|
||||
lib_LTLIBRARIES = libpython.la
|
||||
lib_LTLIBRARIES = python.la
|
||||
|
||||
libpython_la_SOURCES = weechat-python.c
|
||||
libpython_la_LDFLAGS = -module
|
||||
libpython_la_LIBADD = ../lib_weechat_plugins_scripts.la $(PYTHON_LFLAGS)
|
||||
python_la_SOURCES = weechat-python.c
|
||||
python_la_LDFLAGS = -module
|
||||
python_la_LIBADD = ../lib_weechat_plugins_scripts.la $(PYTHON_LFLAGS)
|
||||
|
||||
@@ -19,8 +19,8 @@ INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\" $(RUBY_CFLAGS)
|
||||
|
||||
libdir = ${weechat_libdir}/plugins
|
||||
|
||||
lib_LTLIBRARIES = libruby.la
|
||||
lib_LTLIBRARIES = ruby.la
|
||||
|
||||
libruby_la_SOURCES = weechat-ruby.c
|
||||
libruby_la_LDFLAGS = -module
|
||||
libruby_la_LIBADD = ../lib_weechat_plugins_scripts.la $(RUBY_LFLAGS)
|
||||
ruby_la_SOURCES = weechat-ruby.c
|
||||
ruby_la_LDFLAGS = -module
|
||||
ruby_la_LIBADD = ../lib_weechat_plugins_scripts.la $(RUBY_LFLAGS)
|
||||
|
||||
Reference in New Issue
Block a user