28 lines
857 B
Diff
28 lines
857 B
Diff
|
From 5ee0a7ace7588b986f41ac68f51b315fece69094 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
|
||
|
Date: Wed, 1 Apr 2020 14:28:42 +0200
|
||
|
Subject: [PATCH] Link all required libraries to libisc
|
||
|
|
||
|
It would fail to link -lisc without additional libraries, which should
|
||
|
not be required.
|
||
|
---
|
||
|
lib/isc/Makefile.in | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/lib/isc/Makefile.in b/lib/isc/Makefile.in
|
||
|
index 1b6b4466cd..e9df8d1e17 100644
|
||
|
--- a/lib/isc/Makefile.in
|
||
|
+++ b/lib/isc/Makefile.in
|
||
|
@@ -81,7 +81,7 @@ SRCS = pk11.c pk11_result.c \
|
||
|
symtab.c task.c taskpool.c timer.c \
|
||
|
tm.c version.c
|
||
|
|
||
|
-LIBS = ${OPENSSL_LIBS} @LIBS@
|
||
|
+LIBS = ${OPENSSL_LIBS} ${JSON_C_LIBS} ${LIBXML2_LIBS} ${ZLIB_LIBS} @LIBS@
|
||
|
|
||
|
# Note: the order of SUBDIRS is important.
|
||
|
# Attempt to disable parallel processing.
|
||
|
--
|
||
|
2.21.1
|
||
|
|