blob: 81b42da412aa7276987d0d184b5e1321f2f17228 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001SUMMARY = "Portable SDK for UPnP* Devices"
2DESCRIPTION = "The Portable SDK for UPnP Devices is an SDK for development of \
3UPnP device and control point applications. It consists of the core UPnP \
4protocols along with a UPnP-specific eXtensible Markup Language (XML) parser \
5supporting the Document Object Model (DOM) Level 2 API and an optional, \
6integrated mini web server for serving UPnP related documents."
7HOMEPAGE = "http://pupnp.sourceforge.net/"
Brad Bishop19323692019-04-05 15:28:33 -04008LICENSE = "BSD-3-Clause"
Brad Bishop19323692019-04-05 15:28:33 -04009LIC_FILES_CHKSUM = "file://COPYING;md5=394a0f17b97f33426275571e15920434"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050010
Andrew Geisslerf103a7f2021-05-07 16:09:40 -050011SRCREV = "cef2b23fb36baac091b0c7d41136b4c1d9549c6d"
William A. Kennington IIIb95905d2021-06-02 12:40:56 -070012SRC_URI = "git://github.com/pupnp/pupnp.git;protocol=https;branch=branch-1.14.x \
13 file://0001-ithread-Use-pthread_mutexattr_gettype-pthread_mutexa.patch \
14 "
Brad Bishopd7bf8c12018-02-25 22:55:05 -050015
16S="${WORKDIR}/git"
17
Andrew Geisslerbffdb3e2020-08-21 16:13:29 -050018inherit autotools pkgconfig
Brad Bishopd7bf8c12018-02-25 22:55:05 -050019
Brad Bishop19323692019-04-05 15:28:33 -040020EXTRA_OECONF += "--enable-reuseaddr"
21
22# Enable LFS support ( for samples )
William A. Kennington IIIb95905d2021-06-02 12:40:56 -070023CFLAGS += "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE"
24CXXFLAGS += "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE"