2b36d80c63
Against all odds, vtun had a new release sometime last year. Still, the code needs patching: - the existing patch to fix installation has been refreshed - the existing patch to fix blowfish header location has been replaced (see below) - configure looks in hard-coded, host paths (eg. /usr/include) without any consideration for scross-compilation --> new patch - configure.in does not even pass an autoreconf without a bit of love first (it's written in an ancient dialect that autoreconf does no longer recognise) --> new patch Remove obsolete, unused, bit-rotting scripts and warning. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
22 lines
630 B
Makefile
22 lines
630 B
Makefile
#############################################################
|
|
#
|
|
# vtun
|
|
#
|
|
# NOTE: Uses start-stop-daemon in init script, so be sure
|
|
# to enable that within busybox
|
|
#
|
|
#############################################################
|
|
|
|
VTUN_VERSION = 3.0.3
|
|
VTUN_SOURCE = vtun-$(VTUN_VERSION).tar.gz
|
|
VTUN_SITE = http://downloads.sourceforge.net/project/vtun/vtun/$(VTUN_VERSION)
|
|
VTUN_DEPENDENCIES = zlib lzo openssl
|
|
VTUN_AUTORECONF = YES
|
|
|
|
VTUN_CONF_OPT = \
|
|
--with-ssl-headers=$(STAGING_DIR)/usr/include/openssl \
|
|
--with-lzo-headers=$(STAGING_DIR)/usr/include/lzo \
|
|
--with-lzo-lib=$(STAGING_DIR)/usr/lib
|
|
|
|
$(eval $(autotools-package))
|