diff options
author | Yasuhiro Kimura <yasu@FreeBSD.org> | 2022-08-07 13:31:13 +0900 |
---|---|---|
committer | Yasuhiro Kimura <yasu@FreeBSD.org> | 2022-08-07 14:30:30 +0900 |
commit | da202ea08068ed0be6487ea5f2bc368bbfb0d2c2 (patch) | |
tree | 83f7cf33e534285c882a115d5e328674cd53bf75 /databases/redis6/files/patch-deps-hiredis-net.c | |
parent | sysutils/bsdstats: Set timeout to wait response from server (diff) |
databases/redis{6,62}: Fix problem that pkg-message is misleading
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
Diffstat (limited to 'databases/redis6/files/patch-deps-hiredis-net.c')
-rw-r--r-- | databases/redis6/files/patch-deps-hiredis-net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/redis6/files/patch-deps-hiredis-net.c b/databases/redis6/files/patch-deps-hiredis-net.c index 3fd2b5996f97..0dfde3135238 100644 --- a/databases/redis6/files/patch-deps-hiredis-net.c +++ b/databases/redis6/files/patch-deps-hiredis-net.c @@ -1,5 +1,5 @@ ---- deps/hiredis/net.c.orig 2019-11-28 14:32:05.942453000 -0500 -+++ deps/hiredis/net.c 2019-11-28 14:39:08.326408000 -0500 +--- deps/hiredis/net.c.orig 2019-11-28 19:32:05 UTC ++++ deps/hiredis/net.c @@ -178,14 +178,34 @@ __redisSetError(c,REDIS_ERR_OTHER,strerror(errno)); return REDIS_ERR; |