From dadad95190710ae2e7c2c0cc9cacf5541f99c6f7 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 12 Jul 2005 19:53:12 +0000 Subject: Thomas Lundquist writes: If I understand you correctly, you want the ncurses development headers on the target. a patch for this (named target_headers.patch and includes similar options for a few other libs in buildroot) can be found at: http://www.zelow.no/floppyfw/download/Development/Patches/buildroot/ (a few packages there aswell) it will add an option to put headers on target for ncurses, zlib and openssl. Thomas. --- package/ncurses/Config.in | 7 +++++++ package/ncurses/ncurses.mk | 3 +++ 2 files changed, 10 insertions(+) (limited to 'package/ncurses') diff --git a/package/ncurses/Config.in b/package/ncurses/Config.in index fec54c19e..9a507686b 100644 --- a/package/ncurses/Config.in +++ b/package/ncurses/Config.in @@ -6,3 +6,10 @@ config BR2_PACKAGE_NCURSES curses in System V Release 4.0, and more. http://www.gnu.org/software/ncurses/ + +config BR2_PACKAGE_NCURSES_TARGET_HEADERS + bool "ncurses headers in target" + default n + depends on BR2_PACKAGE_NCURSES + help + Ncurses headers in target diff --git a/package/ncurses/ncurses.mk b/package/ncurses/ncurses.mk index 106f773b0..8648521dc 100644 --- a/package/ncurses/ncurses.mk +++ b/package/ncurses/ncurses.mk @@ -149,3 +149,6 @@ ncurses-dirclean: ifeq ($(strip $(BR2_PACKAGE_NCURSES)),y) TARGETS+=ncurses endif +ifeq ($(strip $(BR2_PACKAGE_NCURSES_TARGET_HEADERS)),y) +TARGETS+=ncurses-headers +endif -- cgit v1.2.3