Browse Source

Merge pull request #7788 from neheb/patch-6

pyodbc: Added ability to compile with uclibc++
lilik-openwrt-22.03
Daniel Golle 6 years ago
committed by GitHub
parent
commit
155503a99e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      lang/python/pyodbc/Makefile

+ 3
- 2
lang/python/pyodbc/Makefile View File

@ -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


Loading…
Cancel
Save