mirror of
https://github.com/weechat/weechat.git
synced 2026-06-24 20:06:38 +02:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e3c76cd7e6 | |||
| 4f45828fd6 | |||
| 25809ff592 | |||
| 1d620ce7c7 |
@@ -1,5 +1,11 @@
|
|||||||
# WeeChat ChangeLog
|
# WeeChat ChangeLog
|
||||||
|
|
||||||
|
## Version 4.4.1 (2024-08-19)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- lua: fix compilation on Fedora with Lua < 5.2.0 ([#2173](https://github.com/weechat/weechat/issues/2173), [#2174](https://github.com/weechat/weechat/issues/2174))
|
||||||
|
|
||||||
## Version 4.4.0 (2024-08-17)
|
## Version 4.4.0 (2024-08-17)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
+1
-1
@@ -35,5 +35,5 @@ endif()
|
|||||||
|
|
||||||
find_package(PkgConfig)
|
find_package(PkgConfig)
|
||||||
if(PKG_CONFIG_FOUND)
|
if(PKG_CONFIG_FOUND)
|
||||||
pkg_search_module(LUA lua5.4 lua-5.4 lua54 lua5.3 lua-5.3 lua53 lua5.2 lua-5.2 lua52 lua5.1 lua-5.1 lua51 lua-5.0 lua5.0 lua50 lua)
|
pkg_search_module(LUA lua lua5.4 lua-5.4 lua54 lua5.3 lua-5.3 lua53 lua5.2 lua-5.2 lua52 lua5.1 lua-5.1 lua51 lua-5.0 lua5.0 lua50)
|
||||||
endif()
|
endif()
|
||||||
|
|||||||
@@ -1272,7 +1272,7 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
|
|||||||
#if defined(LUA_VERSION_MAJOR) && defined(LUA_VERSION_MINOR)
|
#if defined(LUA_VERSION_MAJOR) && defined(LUA_VERSION_MINOR)
|
||||||
weechat_hashtable_set (plugin->variables, "interpreter_version",
|
weechat_hashtable_set (plugin->variables, "interpreter_version",
|
||||||
LUA_VERSION_MAJOR "." LUA_VERSION_MINOR);
|
LUA_VERSION_MAJOR "." LUA_VERSION_MINOR);
|
||||||
#elif LUA_VERSION
|
#elif defined(LUA_VERSION)
|
||||||
weechat_hashtable_set (plugin->variables, "interpreter_version",
|
weechat_hashtable_set (plugin->variables, "interpreter_version",
|
||||||
LUA_VERSION);
|
LUA_VERSION);
|
||||||
#else
|
#else
|
||||||
|
|||||||
+2
-2
@@ -39,8 +39,8 @@
|
|||||||
# devel-number the devel version as hex number ("0x04010000" for "4.1.0-dev")
|
# devel-number the devel version as hex number ("0x04010000" for "4.1.0-dev")
|
||||||
#
|
#
|
||||||
|
|
||||||
weechat_stable="4.4.0"
|
weechat_stable="4.4.1"
|
||||||
weechat_devel="4.4.0"
|
weechat_devel="4.4.1"
|
||||||
|
|
||||||
stable_major=$(echo "${weechat_stable}" | cut -d"." -f1)
|
stable_major=$(echo "${weechat_stable}" | cut -d"." -f1)
|
||||||
stable_minor=$(echo "${weechat_stable}" | cut -d"." -f2)
|
stable_minor=$(echo "${weechat_stable}" | cut -d"." -f2)
|
||||||
|
|||||||
Reference in New Issue
Block a user