diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-05-09 20:50:49 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-05-09 20:50:49 +0000 |
commit | 2430e9a4f5f809d9164edf64dd3eb87f9a14a5fc (patch) | |
tree | a9db7664e1d0b5d68f7cff21195352c321e940c9 /package | |
parent | dc00dbd0857a5bb5202eb8ae2dad97dd59f4bba8 (diff) | |
download | upstream-2430e9a4f5f809d9164edf64dd3eb87f9a14a5fc.tar.gz upstream-2430e9a4f5f809d9164edf64dd3eb87f9a14a5fc.tar.bz2 upstream-2430e9a4f5f809d9164edf64dd3eb87f9a14a5fc.zip |
toolchain: eliminate the INSTALL_LIBSTDCPP config symbol and make c++ support mandatory - fixes recursive config symbol dependency issues
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 36594
Diffstat (limited to 'package')
-rw-r--r-- | package/libs/ncurses/Makefile | 5 | ||||
-rw-r--r-- | package/libs/uclibc++/Makefile | 1 | ||||
-rw-r--r-- | package/toolchain/Makefile | 1 |
3 files changed, 0 insertions, 7 deletions
diff --git a/package/libs/ncurses/Makefile b/package/libs/ncurses/Makefile index b360526572..62ffdfb0a0 100644 --- a/package/libs/ncurses/Makefile +++ b/package/libs/ncurses/Makefile @@ -67,11 +67,6 @@ CONFIGURE_ARGS += \ --with-terminfo-dirs=/usr/share/terminfo \ --with-default-terminfo-dir=/usr/share/terminfo -ifneq ($(CONFIG_INSTALL_LIBSTDCPP),y) -CONFIGURE_ARGS += \ - --without-cxx-binding -endif - ifeq ($(HOST_OS),FreeBSD) CONFIGURE_ARGS += --with-terminfo=/usr/share/terminfo.db diff --git a/package/libs/uclibc++/Makefile b/package/libs/uclibc++/Makefile index 2dd8f6507e..15c2bce54b 100644 --- a/package/libs/uclibc++/Makefile +++ b/package/libs/uclibc++/Makefile @@ -26,7 +26,6 @@ define Package/uclibcxx NAME:=uclibc++ SECTION:=libs CATEGORY:=Libraries - DEPENDS:=@INSTALL_LIBSTDCPP TITLE:=C++ library for embedded systems URL:=http://cxx.uclibc.org/src/ endef diff --git a/package/toolchain/Makefile b/package/toolchain/Makefile index 7eadaba0d4..202e9d095d 100644 --- a/package/toolchain/Makefile +++ b/package/toolchain/Makefile @@ -84,7 +84,6 @@ define Package/libstdcpp $(call Package/gcc/Default) NAME:=libstdc++ TITLE:=GNU Standard C++ Library v3 - DEPENDS+=@INSTALL_LIBSTDCPP endef define Package/libstdcpp/config |