mirror of
https://github.com/clearml/dropbear
synced 2025-04-19 13:45:04 +00:00
Fix up separate-directory building for libtomcrypt
Use $CC rather than $LD for linking --HG-- extra : convert_revision : 31dcd7a22983ef19d6c63248e415e71d292dd0ec
This commit is contained in:
parent
33a182674a
commit
35bcc463e5
11
Makefile.in
11
Makefile.in
@ -64,13 +64,12 @@ bindir=${exec_prefix}/bin
|
|||||||
sbindir=${exec_prefix}/sbin
|
sbindir=${exec_prefix}/sbin
|
||||||
|
|
||||||
CC=@CC@
|
CC=@CC@
|
||||||
LD=@LD@
|
|
||||||
AR=@AR@
|
AR=@AR@
|
||||||
RANLIB=@RANLIB@
|
RANLIB=@RANLIB@
|
||||||
STRIP=@STRIP@
|
STRIP=@STRIP@
|
||||||
INSTALL=@INSTALL@
|
INSTALL=@INSTALL@
|
||||||
CPPFLAGS=@CPPFLAGS@
|
CPPFLAGS=@CPPFLAGS@
|
||||||
CFLAGS=-I. -I$(srcdir)/libtomcrypt/src/headers/ $(CPPFLAGS) @CFLAGS@
|
CFLAGS=-I. -I$(srcdir) -I$(srcdir)/libtomcrypt/src/headers/ $(CPPFLAGS) @CFLAGS@
|
||||||
LIBS=$(LTC) $(LTM) @LIBS@
|
LIBS=$(LTC) $(LTM) @LIBS@
|
||||||
LDFLAGS=@LDFLAGS@
|
LDFLAGS=@LDFLAGS@
|
||||||
|
|
||||||
@ -156,11 +155,11 @@ dropbearconvert: $(dropbearconvertobjs)
|
|||||||
|
|
||||||
dropbear dbclient dropbearkey dropbearconvert: $(HEADERS) $(LTC) $(LTM) \
|
dropbear dbclient dropbearkey dropbearconvert: $(HEADERS) $(LTC) $(LTM) \
|
||||||
Makefile
|
Makefile
|
||||||
$(LD) $(LDFLAGS) -o $@$(EXEEXT) $($@objs) $(LIBS)
|
$(CC) $(LDFLAGS) -o $@$(EXEEXT) $($@objs) $(LIBS)
|
||||||
|
|
||||||
# scp doesn't use the libs so is special.
|
# scp doesn't use the libs so is special.
|
||||||
scp: $(SCPOBJS) $(HEADERS) Makefile
|
scp: $(SCPOBJS) $(HEADERS) Makefile
|
||||||
$(LD) $(LDFLAGS) -o $@$(EXEEXT) $(SCPOBJS)
|
$(CC) $(LDFLAGS) -o $@$(EXEEXT) $(SCPOBJS)
|
||||||
|
|
||||||
|
|
||||||
# multi-binary compilation.
|
# multi-binary compilation.
|
||||||
@ -173,7 +172,7 @@ endif
|
|||||||
dropbearmulti: multilink
|
dropbearmulti: multilink
|
||||||
|
|
||||||
multibinary: $(HEADERS) $(MULTIOBJS) $(LTC) $(LTM) Makefile
|
multibinary: $(HEADERS) $(MULTIOBJS) $(LTC) $(LTM) Makefile
|
||||||
$(LD) $(LDFLAGS) -o dropbearmulti$(EXEEXT) $(MULTIOBJS) $(LIBS)
|
$(CC) $(LDFLAGS) -o dropbearmulti$(EXEEXT) $(MULTIOBJS) $(LIBS)
|
||||||
|
|
||||||
multilink: multibinary $(addprefix link, $(PROGRAMS))
|
multilink: multibinary $(addprefix link, $(PROGRAMS))
|
||||||
|
|
||||||
@ -187,6 +186,8 @@ $(LTC): options.h
|
|||||||
$(LTM): options.h
|
$(LTM): options.h
|
||||||
cd libtommath && $(MAKE)
|
cd libtommath && $(MAKE)
|
||||||
|
|
||||||
|
.PHONY : clean sizes thisclean distclean tidy ltc-clean ltm-clean
|
||||||
|
|
||||||
ltc-clean:
|
ltc-clean:
|
||||||
cd libtomcrypt && $(MAKE) clean
|
cd libtomcrypt && $(MAKE) clean
|
||||||
|
|
||||||
|
43
configure.in
43
configure.in
@ -617,6 +617,49 @@ if test -z "$no_ptc_check" ; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
AC_EXEEXT
|
AC_EXEEXT
|
||||||
|
|
||||||
|
# XXX there must be a nicer way to do this
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/ciphers/aes)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/ciphers/safer)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/ciphers/twofish)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/encauth/ccm)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/encauth/eax)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/encauth/gcm)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/encauth/ocb)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/hashes)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/hashes/chc)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/hashes/helper)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/hashes/sha2)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/hashes/whirl)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/mac/hmac)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/mac/omac)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/mac/pelican)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/mac/pmac)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/misc/base64)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/misc/crypt)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/misc/mpi)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/misc/pkcs5)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/modes/cbc)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/modes/cfb)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/modes/ctr)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/modes/ecb)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/modes/ofb)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/bit)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/choice)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/ia5)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/integer)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/object_identifier)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/octet)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/printable_string)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/sequence)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/short_integer)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/utctime)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/dh)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/dsa)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/ecc)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/pkcs1)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/pk/rsa)
|
||||||
|
AS_MKDIR_P(libtomcrypt/src/prng)
|
||||||
AC_CONFIG_HEADER(config.h)
|
AC_CONFIG_HEADER(config.h)
|
||||||
AC_OUTPUT(Makefile)
|
AC_OUTPUT(Makefile)
|
||||||
AC_OUTPUT(libtomcrypt/Makefile)
|
AC_OUTPUT(libtomcrypt/Makefile)
|
||||||
|
@ -158,7 +158,7 @@ default:library
|
|||||||
|
|
||||||
#ciphers come in two flavours... enc+dec and enc
|
#ciphers come in two flavours... enc+dec and enc
|
||||||
src/ciphers/aes/aes_enc.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c
|
src/ciphers/aes/aes_enc.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c
|
||||||
$(CC) $(CFLAGS) -DENCRYPT_ONLY -c src/ciphers/aes/aes.c -o src/ciphers/aes/aes_enc.o
|
$(CC) $(CFLAGS) -DENCRYPT_ONLY -c $< -o src/ciphers/aes/aes_enc.o
|
||||||
|
|
||||||
#These are the rules to make certain object files.
|
#These are the rules to make certain object files.
|
||||||
src/ciphers/aes/aes.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c
|
src/ciphers/aes/aes.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c
|
||||||
|
@ -127,8 +127,8 @@ etc) slower (perhaps by 50%). Recommended for most small systems. */
|
|||||||
* but there's an interface via a PAM module - don't bother using it otherwise.
|
* but there's an interface via a PAM module - don't bother using it otherwise.
|
||||||
* You can't enable both PASSWORD and PAM. */
|
* You can't enable both PASSWORD and PAM. */
|
||||||
|
|
||||||
/*#define ENABLE_SVR_PASSWORD_AUTH*/
|
#define ENABLE_SVR_PASSWORD_AUTH
|
||||||
#define ENABLE_SVR_PAM_AUTH
|
/*#define ENABLE_SVR_PAM_AUTH */
|
||||||
#define ENABLE_SVR_PUBKEY_AUTH
|
#define ENABLE_SVR_PUBKEY_AUTH
|
||||||
|
|
||||||
#define ENABLE_CLI_PASSWORD_AUTH
|
#define ENABLE_CLI_PASSWORD_AUTH
|
||||||
|
Loading…
Reference in New Issue
Block a user