diff options
author | Daniel Golle <dangowrt@users.noreply.github.com> | 2019-03-04 04:17:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-04 04:17:29 +0100 |
commit | 155503a99e19607ee301608cbb7b781c93c20fc2 (patch) | |
tree | 9aafc1796a06b50c378784ea6509bd71e5ec611e | |
parent | d92d34db5a382997e3d9230247644e55a1d84602 (diff) | |
parent | 39f763f0eef7b91c98750f209e72ae4bf6f08cb2 (diff) |
Merge pull request #7788 from neheb/patch-6
pyodbc: Added ability to compile with uclibc++
-rw-r--r-- | lang/python/pyodbc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lang/python/pyodbc/Makefile b/lang/python/pyodbc/Makefile index af2335f99..d3f1f0550 100644 --- a/lang/python/pyodbc/Makefile +++ b/lang/python/pyodbc/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pyodbc PKG_VERSION:=4.0.26 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/p/pyodbc @@ -21,6 +21,7 @@ PKG_UNPACK=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$ PKG_BUILD_DEPENDS:=unixodbc/host +include $(INCLUDE_DIR)/uclibc++.mk include $(INCLUDE_DIR)/package.mk include ../python-package.mk include ../python3-package.mk @@ -30,7 +31,7 @@ define Package/python-pyodbc/Default CATEGORY:=Languages SUBMENU:=Python URL:=https://github.com/mkleehammer/pyodbc - DEPENDS:=+unixodbc +libstdcpp + DEPENDS:=+unixodbc $(CXX_DEPENDS) endef define Package/python-pyodbc |