From 2792fab58aa6d1e5a437a1c74363002d902aa39d Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 3 Nov 2008 10:00:55 +0000 Subject: [PATCH] Smartmontools compiles with ulibcxx, so use it instead of libstdcpp git-svn-id: svn://svn.openwrt.org/openwrt/packages@13102 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- utils/smartmontools/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/utils/smartmontools/Makefile b/utils/smartmontools/Makefile index 574894cd8..0e9955503 100644 --- a/utils/smartmontools/Makefile +++ b/utils/smartmontools/Makefile @@ -21,7 +21,7 @@ include $(INCLUDE_DIR)/package.mk define Package/smartmontools SECTION:=utils CATEGORY:=Utilities - DEPENDS:=+libstdcpp + DEPENDS:=+uclibcxx TITLE:=S.M.A.R.T Monitoring Tool URL:=http://smartmontools.sourceforge.net/ endef @@ -38,7 +38,11 @@ endef define Build/Configure (cd $(PKG_BUILD_DIR); ./autogen.sh ); $(call Build/Configure/Default,, \ - ac_libc_have_working_snprintf=yes \ + ac_libc_have_working_snprintf=yes \ + CXXFLAGS="$$$$CXXFLAGS -fno-builtin -fno-rtti -nostdinc++" \ + CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/uClibc++ -I$(LINUX_DIR)/include" \ + LDFLAGS="$$$$LDFLAGS" \ + LIBS="-nodefaultlibs -luClibc++ -lm -lgcc" \ ) endef