mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 22:23:14 +00:00
libsocketcan offers two configuration options. debug: Compile for debugging. Off by default. error-log: Logging of error events to stderr. On by default. Because error-log is on by default the package config option is no-error-log to retain existing recipe behavior. Signed-off-by: Mark Jonas <toertel@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
19 lines
587 B
BlitzBasic
19 lines
587 B
BlitzBasic
SUMMARY = "Control basic functions in socketcan from userspace"
|
|
HOMEPAGE = "http://www.pengutronix.de"
|
|
SECTION = "libs/network"
|
|
|
|
LICENSE = "LGPLv2.1"
|
|
LIC_FILES_CHKSUM = "file://src/libsocketcan.c;beginline=3;endline=17;md5=97e38adced4385d8fba1ae2437cedee1"
|
|
|
|
SRCREV = "0ff01ae7e4d271a7b81241e7a7026bfcea0add3f"
|
|
|
|
SRC_URI = "git://git.pengutronix.de/git/tools/libsocketcan.git;protocol=git"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
PACKAGECONFIG ?= ""
|
|
PACKAGECONFIG[debug] = "--enable-debug,--disable-debug"
|
|
PACKAGECONFIG[no-error-log] = "--disable-error-log,--enable-error-log"
|