Summary: | x11-toolkits/qt5-gui Compile error: linux/kd.h not found | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | martin |
Component: | Individual Port(s) | Assignee: | freebsd-kde (group) <kde> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
martin
2014-03-04 17:30:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->kde Over to maintainer(s). State Changed From-To: open->feedback Please, show output of 'make configure WANT_QT_VERBOSE_CONFIGURE=1' and list of installed ports. On Mon, Mar 10, 2014 at 08:31:15AM +0000, makc@FreeBSD.org wrote: > Synopsis: x11-toolkits/qt5-gui Compile error: linux/kd.h not found > > State-Changed-From-To: open->feedback > State-Changed-By: makc > State-Changed-When: Mon Mar 10 08:31:15 UTC 2014 > State-Changed-Why: > Please, show output of 'make configure WANT_QT_VERBOSE_CONFIGURE=1' and > list of installed ports. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=187260 Thanks for your reply. I did a `portsnap fetch update', pkg_delete qt5\*, and reinstalled qt5-gui with the verbose option. It builds & installs okay now. With or without the WANT_QT_VERBOSE_CONFIGURE flag. - I have a /usr/local/include/linux/kd.h now, installed by svgalib-1.4.3_6 This seems to be incidentally installed, +REQUIRED_BY lists: ghostscript9-9.06_5 libspectre-0.2.6_1 evince-2.32.0_12 I incidentally installed evince a few days ago. Conclusion: svgalib should be listed as a dependency? - As for the missing -lxcb-xkb ... I don't know... It doesn't appear in /usr/local/libdata/pkgconfig except in the xcb-xkb package itself. I have no idea why it didn't work before, but works now... Author: rakuco Date: Mon May 12 13:51:04 2014 New Revision: 353821 URL: http://svnweb.freebsd.org/changeset/ports/353821 QAT: https://qat.redports.org/buildarchive/r353821/ Log: Explicitly disable evdev support. This is Linux-specific, and support for it may be accidentally enabled because the compiler test for it passes if multimedia/v4l_compat is installed, since it installs linux/input.h into ${LOCALBASE}/include. PR: ports/187260 MFH: 2014Q2 Modified: head/x11-toolkits/qt5-gui/Makefile Modified: head/x11-toolkits/qt5-gui/Makefile ============================================================================== --- head/x11-toolkits/qt5-gui/Makefile Mon May 12 13:50:11 2014 (r353820) +++ head/x11-toolkits/qt5-gui/Makefile Mon May 12 13:51:04 2014 (r353821) @@ -28,7 +28,8 @@ USE_QT5= core dbus qmake_build buildtool QT_DIST= base USE_XORG= x11 xi xrender HAS_CONFIGURE= yes -CONFIGURE_ARGS= -no-eglfs +CONFIGURE_ARGS= -no-eglfs \ + -no-evdev USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: feedback->closed Fixed the linux/kd.h problem in r353821. Author: rakuco Date: Wed May 14 21:37:18 2014 New Revision: 354088 URL: http://svnweb.freebsd.org/changeset/ports/354088 QAT: https://qat.redports.org/buildarchive/r354088/ Log: MFH: r353821 Explicitly disable evdev support. This is Linux-specific, and support for it may be accidentally enabled because the compiler test for it passes if multimedia/v4l_compat is installed, since it installs linux/input.h into ${LOCALBASE}/include. PR: ports/187260 Approved by: portmgr (antoine) Modified: branches/2014Q2/x11-toolkits/qt5-gui/Makefile Directory Properties: branches/2014Q2/ (props changed) Modified: branches/2014Q2/x11-toolkits/qt5-gui/Makefile ============================================================================== --- branches/2014Q2/x11-toolkits/qt5-gui/Makefile Wed May 14 20:36:00 2014 (r354087) +++ branches/2014Q2/x11-toolkits/qt5-gui/Makefile Wed May 14 21:37:18 2014 (r354088) @@ -27,7 +27,8 @@ USE_QT5= core dbus qmake_build buildtool QT_DIST= base USE_XORG= x11 xi xrender HAS_CONFIGURE= yes -CONFIGURE_ARGS= -no-eglfs +CONFIGURE_ARGS= -no-eglfs \ + -no-evdev USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" |