mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
c61dc077bb
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
25 lines
620 B
BlitzBasic
25 lines
620 B
BlitzBasic
require ${BPN}.inc
|
|
|
|
DEPENDS = "zlib-native jpeg-native libpng-native libxext-native libxft-native"
|
|
|
|
inherit native
|
|
|
|
EXTRA_OECMAKE += " \
|
|
-DOPTION_BUILD_SHARED_LIBS=OFF \
|
|
-DOPTION_USE_THREADS=OFF \
|
|
-DOPTION_USE_XDBE=OFF \
|
|
-DOPTION_USE_XFT=OFF \
|
|
-DFLTK_BUILD_TEST=OFF \
|
|
-DOPTION_USE_XINERAMA=OFF \
|
|
-DOPTION_USE_XFIXES=OFF \
|
|
-DOPTION_USE_XCURSOR=OFF \
|
|
"
|
|
|
|
# lib/libfltk.a(Fl_Native_File_Chooser.cxx.o): undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
|
|
LDFLAGS += "-ldl"
|
|
|
|
do_install:append() {
|
|
# make sure native fltk-config is not used accidentaly
|
|
rm -f ${D}${bindir}/fltk-config
|
|
}
|