diff options
| author | Sebastian Kemper | 2018-02-18 09:14:13 +0000 |
|---|---|---|
| committer | Sebastian Kemper | 2018-02-18 09:14:16 +0000 |
| commit | 6857bc21ebb7ab6408a968797f699921f0fb6441 (patch) | |
| tree | 7dc84cf084972aa9b4af74a7869273052dc79c87 | |
| parent | 5eff04c674b0bd13bfcbf2f1e3cd4e5372a5efb3 (diff) | |
| download | telephony-6857bc21ebb7ab6408a968797f699921f0fb6441.tar.gz | |
net/pcapsipdump: Remove uclibc++.mk include
The include injects a lib depend on libuClibc++.so.0 into the package,
even on musl. Remove it and replace the depend with libstcpp instead.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| -rw-r--r-- | net/pcapsipdump/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/pcapsipdump/Makefile b/net/pcapsipdump/Makefile index 7a903aa..68ee687 100644 --- a/net/pcapsipdump/Makefile +++ b/net/pcapsipdump/Makefile @@ -18,14 +18,13 @@ PKG_HASH:=4d4dc2664963c08de40da47ca0dcd1eeae09edc42241bd6daa7ff8c59089dce9 PKG_LICENSE:=GPL-2.0+ PKG_LICENSE_FILES:=LICENSE -include $(INCLUDE_DIR)/uclibc++.mk include $(INCLUDE_DIR)/package.mk define Package/pcapsipdump SECTION:=net CATEGORY:=Network SUBMENU:=Telephony - DEPENDS:=+libpcap $(CXX_DEPENDS) + DEPENDS:=+libpcap +libstdcpp TITLE:=SIP sessions dumping tool URL:=http://sourceforge.net/projects/pcapsipdump/ endef |