9172282710
Fixes: http://autobuild.buildroot.net/results/f321700d2b060d11e3f98ff37be24c647a77a405/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
22 lines
651 B
Makefile
22 lines
651 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 = host-bison host-flex 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))
|