ncurses: update to e14300b

this fixes a bug which caused any GUI app which linked with ncurses
(e.g. when using caca/ffmpeg/libxine libs) to spawn a console window
even if ncurses wasn't initialized.

see github PR #636
This commit is contained in:
Avi Halachmi (:avih) 2015-03-01 16:30:56 +02:00
parent 37ecd633f6
commit da4f370305
1 changed files with 4 additions and 3 deletions

View File

@ -3,8 +3,8 @@
PKG := ncurses
$(PKG)_IGNORE :=
$(PKG)_VERSION := c6f5464
$(PKG)_CHECKSUM := 5a40e0906139f877be083976f80bf0262dc95ad2
$(PKG)_VERSION := e14300b
$(PKG)_CHECKSUM := fcc1997439560b6cb7f9bf2f73f6245310f06c64
# $(PKG)_VERSION := 5.9
# $(PKG)_SUBDIR := ncurses-$($(PKG)_VERSION)
# $(PKG)_FILE := ncurses-$($(PKG)_VERSION).tar.gz
@ -51,4 +51,5 @@ define $(PKG)_BUILD
--without-normal --without-static --with-shared)
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)' -j 1 install TIC_PATH='$(1).native/progs/tic'
endef
endef