summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2019-05-15 21:59:45 +0800
committerMatt Johnston <matt@ucc.asn.au>2019-05-15 21:59:45 +0800
commit663fc015dbb5b39ac6be6630a003f0530af734fb (patch)
tree475291461ecc6c1e3a6f4f8adee739b0c0d0bc69 /Makefile.in
parent2be32903e09ea1649e59a1202479d32033f282df (diff)
downloaddropbear-663fc015dbb5b39ac6be6630a003f0530af734fb.tar.gz
Rename EPKA -> Plugin
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index e363fd9..4bac2f7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -80,13 +80,13 @@ else
scpobjs=$(SCPOBJS)
endif
-ifeq (@DROPBEAR_EPKA@, 1)
+ifeq (@DROPBEAR_PLUGIN@, 1)
# rdynamic makes all the global symbols of dropbear available to all the loaded shared libraries
# this allow a plugin to reuse existing crypto/utilities like base64_decode/base64_encode without
# the need to rewrite them.
- EPKA_LIBS=-ldl -rdynamic
+ PLUGIN_LIBS=-ldl -rdynamic
else
- EPKA_LIBS=
+ PLUGIN_LIBS=
endif
VPATH=@srcdir@
@@ -198,7 +198,7 @@ dropbearkey: $(dropbearkeyobjs)
dropbearconvert: $(dropbearconvertobjs)
dropbear: $(HEADERS) $(LIBTOM_DEPS) Makefile
- $(CC) $(LDFLAGS) -o $@$(EXEEXT) $($@objs) $(LIBTOM_LIBS) $(LIBS) @CRYPTLIB@ $(EPKA_LIBS)
+ $(CC) $(LDFLAGS) -o $@$(EXEEXT) $($@objs) $(LIBTOM_LIBS) $(LIBS) @CRYPTLIB@ $(PLUGIN_LIBS)
dbclient: $(HEADERS) $(LIBTOM_DEPS) Makefile
$(CC) $(LDFLAGS) -o $@$(EXEEXT) $($@objs) $(LIBTOM_LIBS) $(LIBS)