summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--package/fltk/Makefile2
-rw-r--r--package/xcb-proto/Makefile6
-rw-r--r--scripts/scan-tools.sh4
3 files changed, 8 insertions, 4 deletions
diff --git a/package/fltk/Makefile b/package/fltk/Makefile
index bc0607942..e829fcc57 100644
--- a/package/fltk/Makefile
+++ b/package/fltk/Makefile
@@ -30,6 +30,8 @@ ifeq ($(ADK_TOOLCHAIN_GCC_USE_SSP),y)
LIBRARIES+=-lssp
endif
+CONFIGURE_ARGS+= --disable-xinerama
+
ifeq ($(ADK_COMPILE_LIBFLTK_WITH_UCLIBCXX),y)
CONFIGURE_ENV+= CXXFLAGS="-fno-threadsafe-statics -fno-builtin -nostdinc++ \
-I${STAGING_TARGET_DIR}/usr/include/uClibc++" \
diff --git a/package/xcb-proto/Makefile b/package/xcb-proto/Makefile
index 893287ee1..93d8e8128 100644
--- a/package/xcb-proto/Makefile
+++ b/package/xcb-proto/Makefile
@@ -23,11 +23,13 @@ include $(TOPDIR)/mk/python.mk
CONFIGURE_ENV+= PYTHON=$(PYTHON)
+post-build:
+ ${INSTALL_DIR} ${STAGING_DIR}/usr/share/xcb
+ ${CP} ${WRKBUILD}/src/*.xml ${STAGING_DIR}/usr/share/xcb
+
xcb-proto-install:
${INSTALL_DIR} ${IDIR_XCB_PROTO}/usr/share
${CP} ${WRKINST}/usr/share/xcb ${IDIR_XCB_PROTO}/usr/share
- ${INSTALL_DIR} ${STAGING_DIR}/usr/share/xcb
- ${CP} ${WRKINST}/usr/share/xcb/* ${STAGING_DIR}/usr/share/xcb
${INSTALL_DIR} ${IDIR_XCB_PROTO}/usr/lib/pkgconfig
${INSTALL_DATA} ${WRKINST}/usr/lib/pkgconfig/xcb-proto.pc \
${IDIR_XCB_PROTO}/usr/lib/pkgconfig
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh
index 7d6d73e53..8834940c7 100644
--- a/scripts/scan-tools.sh
+++ b/scripts/scan-tools.sh
@@ -112,8 +112,8 @@ if ! which gzip >/dev/null 2>&1; then
out=1
fi
-if ! which lzma >/dev/null 2>&1; then
- echo You must install lzma to continue.
+if ! which lzma >/dev/null 2>&1 && ! which xz >/dev/null 2>&1; then
+ echo You must install lzma or xz-utils to continue.
echo
out=1
fi