Hi,

On 27-08-14 11:55, Wookey wrote:
It is one of hundreds of packages which need autoconf updates in order
to build on new architectures such as arm64, mips64el, ppc64el and
or1k. Re-autoconfing is the recommended way to deal with the general

I don't think this will be useful to this package, because it does not use autoconf.

However, I (upstream) think I fixed the build on arm64 with the following commit: https://sourceforge.net/p/openmsx/debugger/ci/39e9e8d288138a958e79178a605602ae836f2e7b/

Dear maintainer, there are 3 options:
- port this fix back to the current snapshot
- create a new snapshot of the current git code. This has the disadvantage that the code only builds with Qt5. However, technically, no Qt5 features are used yet, so that gives: - create a new snapshot, but slightly patch it to make it Qt4 compatible again. Attached is an example patch that works here.

Whatever you prefer :)

--
Grtjs, Manuel

PS: MSX FOR EVER! (Questions? http://faq.msxnet.org/ )
PPS: Visit my homepage at http://manuel.msxnet.org/
diff --git a/build/main.mk b/build/main.mk
index 3abb555..579471b 100644
--- a/build/main.mk
+++ b/build/main.mk
@@ -234,7 +234,7 @@ QT_INSTALL_HEADERS:=$(subst \,/,$(QT_INSTALL_HEADERS))
 QT_INSTALL_LIBS:=$(subst \,/,$(QT_INSTALL_LIBS))
 QT_INSTALL_BINS:=$(subst \,/,$(QT_INSTALL_BINS))
 endif
-QT_COMPONENTS:=Core Widgets Gui Network Xml
+QT_COMPONENTS:=Core Gui Network Xml
 QT_HEADER_DIRS:=$(addprefix $(QT_INSTALL_HEADERS)/Qt,$(QT_COMPONENTS))
 QT_HEADER_DIRS+=$(QT_INSTALL_HEADERS)
 ifeq ($(OPENMSX_TARGET_OS),darwin)
@@ -266,7 +266,7 @@ ifeq ($(OPENMSX_TARGET_OS),mingw32)
 COMPILE_FLAGS+=-static-libgcc -static-libstdc++
 LINK_FLAGS:=-Wl,-rpath,$(QT_INSTALL_BINS) -L$(QT_INSTALL_BINS) $(addprefix -lQt5,$(QT_COMPONENTS)) -lws2_32 -lsecur32 -mwindows -static-libgcc -static-libstdc++
 else
-LINK_FLAGS:=-Wl,-rpath,$(QT_INSTALL_LIBS) -L$(QT_INSTALL_LIBS) $(addprefix -lQt5,$(QT_COMPONENTS))
+LINK_FLAGS:=-Wl,-rpath,$(QT_INSTALL_LIBS) -L$(QT_INSTALL_LIBS) $(addprefix -lQt,$(QT_COMPONENTS))
 endif
 endif
 DEPEND_FLAGS:=

Reply via email to