summaryrefslogtreecommitdiffstats
path: root/rules/dropbear.make
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2009-03-03 17:08:24 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2009-03-03 17:08:24 +0000
commit23198087e98822a5eabac486760706b9050197fd (patch)
treee03a08e1fa44d21d6f6ee8e58004ba2c2feafad0 /rules/dropbear.make
parent18994995680c1a864e55c2a4baa918df94814a54 (diff)
downloadptxdist-23198087e98822a5eabac486760706b9050197fd.tar.gz
ptxdist-23198087e98822a5eabac486760706b9050197fd.tar.xz
[dropbear] version bump to 0.52
adopt options accordingly Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@9933 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/dropbear.make')
-rw-r--r--rules/dropbear.make33
1 files changed, 15 insertions, 18 deletions
diff --git a/rules/dropbear.make b/rules/dropbear.make
index afa14b2b4..f7c1c0c80 100644
--- a/rules/dropbear.make
+++ b/rules/dropbear.make
@@ -3,6 +3,7 @@
#
# Copyright (C) 2003 by Marc Kleine-Budde <kleine-budde@gmx.de> for
# Pengutronix e.K. <info@pengutronix.de>, Germany
+# 2009 by Marc Kleine-Budde <mkl@pengutronix.de>
#
# See CREDITS for details about who has contributed to this project.
#
@@ -18,14 +19,13 @@ PACKAGES-$(PTXCONF_DROPBEAR) += dropbear
#
# Paths and names
#
-DROPBEAR_VERSION := 0.50
+DROPBEAR_VERSION := 0.52
DROPBEAR := dropbear-$(DROPBEAR_VERSION)
DROPBEAR_SUFFIX := tar.bz2
-DROPBEAR_URL := http://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX)
+DROPBEAR_URL := http://www.ucc.asn.au/~matt/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX)
DROPBEAR_SOURCE := $(SRCDIR)/$(DROPBEAR).$(DROPBEAR_SUFFIX)
DROPBEAR_DIR := $(BUILDDIR)/$(DROPBEAR)
-
# ----------------------------------------------------------------------------
# Get
# ----------------------------------------------------------------------------
@@ -99,9 +99,6 @@ $(STATEDIR)/dropbear.prepare:
$(DROPBEAR_PATH) $(DROPBEAR_ENV) \
$(DROPBEAR_DIR)/configure $(DROPBEAR_AUTOCONF)
-# FIXME: rsc: write a proper autotoolization for these switches, it
-# really doesn't work this way!!!
-
ifdef PTXCONF_DROPBEAR_DIS_X11
@echo "ptxdist: disabling x11 forwarding"
$(call disable_c, $(DROPBEAR_DIR)/options.h,ENABLE_X11FWD)
@@ -135,50 +132,50 @@ endif
ifdef PTXCONF_DROPBEAR_AES128
@echo "ptxdist: enabling aes128"
- @$(call enable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_AES128_CBC)
+ @$(call enable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_AES128)
else
@echo "ptxdist: disabling aes128"
- @$(call disable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_AES128_CBC)
+ @$(call disable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_AES128)
endif
ifdef PTXCONF_DROPBEAR_3DES
@echo "ptxdist: enabling 3des"
- @$(call enable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_3DES_CBC)
+ @$(call enable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_3DES)
else
@echo "ptxdist: disabling 3des"
- @$(call disable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_3DES_CBC)
+ @$(call disable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_3DES)
endif
ifdef PTXCONF_DROPBEAR_AES256
@echo "ptxdist: enabling aes256"
- @$(call enable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_AES256_CBC)
+ @$(call enable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_AES256)
else
@echo "ptxdist: disabling aes256"
- @$(call disable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_AES256_CBC)
+ @$(call disable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_AES256)
endif
ifdef PTXCONF_DROPBEAR_BLOWFISH
@echo "ptxdist: enabling blowfish"
- @$(call enable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_BLOWFISH_CBC)
+ @$(call enable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_BLOWFISH)
else
@echo "ptxdist: disabling blowfish"
- @$(call disable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_BLOWFISH_CBC)
+ @$(call disable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_BLOWFISH)
endif
ifdef PTXCONF_DROPBEAR_TWOFISH256
@echo "ptxdist: enabling twofish256"
- @$(call enable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_TWOFISH256_CBC)
+ @$(call enable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_TWOFISH256)
else
@echo "ptxdist: disabling twofish256"
- @$(call disable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_TWOFISH256_CBC)
+ @$(call disable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_TWOFISH256)
endif
ifdef PTXCONF_DROPBEAR_TWOFISH128
@echo "ptxdist: enabling twofish128"
- @$(call enable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_TWOFISH128_CBC)
+ @$(call enable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_TWOFISH128)
else
@echo "ptxdist: disabling twofish128"
- @$(call disable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_TWOFISH128_CBC)
+ @$(call disable_c, $(DROPBEAR_DIR)/options.h,DROPBEAR_TWOFISH128)
endif