Build error: ``` make[6]: Entering directory `/home/sandu/work/openwrt/build_dir/target-mips_34kc_musl-1.1.11/ibrcommon-1.0.1/ibrcommon/data' CXX BLOB.lo CXX ConfigFile.lo CXX File.lo File.cpp: In member function 'std::__cxx11::string ibrcommon::File::getBasename() const': File.cpp:229:44: error: 'basename' was not declared in this scope return std::string(basename(_path.c_str())); ^ make[6]: *** [File.lo] Error 1 ``` Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2015 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ibrcommon
|
|
PKG_VERSION:=1.0.1
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases
|
|
PKG_MD5SUM:=0104763ede969c470f32244d76c234b8
|
|
PKG_MAINTAINER:=Johannes Morgenroth <jm@m-network.de>
|
|
PKG_LICENSE:=Apache-2.0
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_FIXUP:=libtool
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ibrcommon
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
DEPENDS:=+libstdcpp +libpthread +librt +libnl +libopenssl
|
|
TITLE:=IBR Common C++ Library
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--with-openssl
|
|
|
|
define Package/ibrcommon/description
|
|
A library with common functions for C++.
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
|
endef
|
|
|
|
define Package/ibrcommon/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ibrcommon))
|