mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 07:37:14 +00:00
4953fd5a87
The domain soft-switch.org is no longer registered. So, switch to the GitHub page. It seams Clang had implemented the compile time functions, because the build of the newer commit with Clang works. So, drop the comment. Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
46 lines
1.6 KiB
BlitzBasic
46 lines
1.6 KiB
BlitzBasic
SUMMARY = "A DSP library for telephony"
|
|
DESCRIPTION = "\
|
|
SpanDSP is a low-level signal processing library that modulates and \
|
|
demodulates signals commonly used in telephony, such as the \"noise\" \
|
|
generated by a fax modem or DTMF touchpad. \
|
|
"
|
|
HOMEPAGE = "https://github.com/freeswitch/spandsp"
|
|
BUGTRACKER = "https://github.com/freeswitch/spandsp/issues"
|
|
SECTION = "libs"
|
|
LICENSE = "LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=8791c23ddf418deb5be264cffb5fa6bc"
|
|
|
|
DEPENDS = "\
|
|
libxml2 \
|
|
tiff \
|
|
tiff-native \
|
|
"
|
|
|
|
PV = "3.0.0+git"
|
|
|
|
SRC_URI = "\
|
|
git://github.com/freeswitch/spandsp.git;protocol=https;branch=master \
|
|
file://0001-configure-Replace-manual-search-for-libxml-by-AC_CHE.patch \
|
|
file://0002-configure-Use-AX_PROG_CC_FOR_BUILD-for-cross-compili.patch \
|
|
"
|
|
SRCREV = "797760168945c96e91af55bde9d4edaea2e654f9"
|
|
|
|
inherit autotools
|
|
|
|
PACKAGECONFIG ?= ""
|
|
|
|
PACKAGECONFIG[mmx] = "--enable-mmx,--disable-mmx"
|
|
PACKAGECONFIG[sse] = "--enable-sse,--disable-sse"
|
|
PACKAGECONFIG[sse2] = "--enable-sse2,--disable-sse2"
|
|
PACKAGECONFIG[sse3] = "--enable-sse3,--disable-sse3"
|
|
PACKAGECONFIG[ssse3] = "--enable-ssse3,--disable-ssse3"
|
|
PACKAGECONFIG[sse4-1] = "--enable-sse4-1,--disable-sse4-1"
|
|
PACKAGECONFIG[sse4-2] = "--enable-sse4-2,--disable-sse4-2"
|
|
PACKAGECONFIG[avx] = "--enable-avx,--disable-avx"
|
|
PACKAGECONFIG[avx2] = "--enable-avx2,--disable-avx2"
|
|
PACKAGECONFIG[neon] = "--enable-neon,--disable-neon"
|
|
PACKAGECONFIG[fixed-point] = "--enable-fixed-point,--disable-fixed-point"
|
|
PACKAGECONFIG[v32bis] = "--enable-v32bis,--disable-v32bis"
|
|
PACKAGECONFIG[v34] = "--enable-v34,--disable-v34"
|
|
PACKAGECONFIG[sslfax] = "--enable-sslfax,--disable-sslfax"
|