mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 13:40:34 -04:00
When installing package of databases/redis62, following pkg-message is displayed. To setup "redis62" you need to edit the configuration file: /usr/local/etc/redis62.conf To run redis from startup, add redis62_enable="YES" in your /etc/rc.conf. But path of configuration file is /usr/local/etc/redis.conf and what should really be added to /etc/rc.conf is redis_enable="YES". Same problem also happens when installing databases/redis6 The source of the problem is that the value of ${PORTNAME} is used to create pkg-message from file/pkg-message.in. So fix it by changing the value of ${PORTNAME} to "redis" and set PKGNAMESUFFIX in Makefile of each port. While I'm here, * Pet portlint and portclippy * Tidy up Makefile with portfmt. PR: 265623 Reported by: FiLiS MFH: 2022Q3
11 lines
425 B
C
11 lines
425 B
C
--- deps/lua/src/lua_cjson.c.orig 2019-12-08 12:56:31 UTC
|
|
+++ deps/lua/src/lua_cjson.c
|
|
@@ -1299,7 +1299,7 @@
|
|
*
|
|
* luaL_setfuncs() is used to create a module table where the functions have
|
|
* json_config_t as their first upvalue. Code borrowed from Lua 5.2 source. */
|
|
-static void luaL_setfuncs (lua_State *l, const luaL_Reg *reg, int nup)
|
|
+void luaL_setfuncs (lua_State *l, const luaL_Reg *reg, int nup)
|
|
{
|
|
int i;
|
|
|