af65a20a8c
[Peter: drop unneeded wchar dependency] Signed-off-by: Alexander Dahl <post@lespocky.de> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
23 lines
582 B
Makefile
23 lines
582 B
Makefile
################################################################################
|
|
#
|
|
# putty
|
|
#
|
|
################################################################################
|
|
|
|
PUTTY_VERSION = 0.67
|
|
PUTTY_SOURCE = putty-$(PUTTY_VERSION).tar.gz
|
|
PUTTY_SITE = http://the.earth.li/~sgtatham/putty/$(PUTTY_VERSION)
|
|
PUTTY_SUBDIR = unix
|
|
PUTTY_LICENSE = MIT
|
|
PUTTY_LICENSE_FILES = LICENCE
|
|
PUTTY_CONF_OPTS = --disable-gtktest
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGTK2),y)
|
|
PUTTY_CONF_OPTS += --with-gtk=2
|
|
PUTTY_DEPENDENCIES += libgtk2
|
|
else
|
|
PUTTY_CONF_OPTS += --without-gtk
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|