summaryrefslogtreecommitdiffhomepage
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
commitfa116e983b4931010e1082dd5c8bf38bbc77718c (patch)
tree6e4e2d4e1fb756895cf5ea17bfa0f0493ffd49f3 /Makefile.in
parent8c6aaf8d361e95ba3d9b371b86abaae1fd0e436f (diff)
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)