poke-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] poke: Install pk-hserver.pk even if hserver is disabled


From: Sergio Durigan Junior
Subject: [PATCH] poke: Install pk-hserver.pk even if hserver is disabled
Date: Sun, 30 Jan 2022 16:35:33 -0500

When poke is compiled with --disable-hserver, it still attempts to
load pk-hserver.pk during its initialization routine.  For this
reason, we always need to install this module in the system.

2022-01-30  Sergio Durigan Junior  <sergiodj@sergiodj.net>

        * poke/Makefile.am (dist_pkgdata_DATA): Always install
        pk-hserver.pk.
---
 ChangeLog        | 5 +++++
 poke/Makefile.am | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 324ac3b4..62145311 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2022-01-30  Sergio Durigan Junior  <sergiodj@sergiodj.net>
+
+       * poke/Makefile.am (dist_pkgdata_DATA): Always install
+       pk-hserver.pk.
+
 2022-01-30  Jose E. Marchesi  <jemarch@gnu.org>
 
        * poke/pk-term.c (erase_line_str): New variable.
diff --git a/poke/Makefile.am b/poke/Makefile.am
index 334769f3..db192dd1 100644
--- a/poke/Makefile.am
+++ b/poke/Makefile.am
@@ -157,8 +157,9 @@ endif
 if HSERVER
   poke_SOURCES += pk-hserver.h pk-hserver.c
   poke_LDADD += -lpthread
-  dist_pkgdata_DATA += pk-hserver.pk
 endif
+# We install pk-hserver.pk even if HSERVER is not enabled.
+dist_pkgdata_DATA += pk-hserver.pk
 
 # nodelist is now treated by doc/Makefile.am.
 MOSTLYCLEANFILES += nodelist
-- 
2.34.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]