checking out litecoin, appears to be missing include in worksrc/src/scrypt.cpp (?) src/scrypt.cpp:130:3: error: use of undeclared identifier 'be32enc' be32enc(ivec, (uint32_t)(i + 1)); ^ src/scrypt.cpp:242:10: error: use of undeclared identifier 'le32dec' X[k] = le32dec(&B[4 * k]); ^ src/scrypt.cpp:258:3: error: use of undeclared identifier 'le32enc' le32enc(&B[4 * k], X[k]); Fix: adding #include <sys/endian.h> to scrypt.cpp seems to solve the problem. How-To-Repeat: cd /usr/ports/net-p2p/litecoin make
Responsible Changed From-To: freebsd-ports-bugs->swills Over to maintainer (via the GNATS Auto Assign Tool)
Hi, I'm unable to reproduce this. What version of the port do you have? Is your ports tree up to date? Steve
On Fri, 31 Jan 2014 16:54:03 +0000, Steve Wills <swills@FreeBSD.org> wrote: > >Hi, > >I'm unable to reproduce this. What version of the port do you have? Is your >ports tree up to date? > >Steve > Hi, I'm using ports svn version 341262M which should be up-to-date as of January 24. Port Version 0.8.6.1 Port Revision 1 Thanks, -- Waitman Gobble San Jose California USA +1.5108307875
The patch in the port removes definition of be32enc from scrypt.cpp, because be32enc is defined in the standard c++ library in llvm/clang. litecoin/src/scrypt.cpp -> include util.h -> include <string> -> include __config -> include <sys/endian.h> (be32enc def.) This issue will only affect users running 10.0-CURRENT built from sources before 1000054. http://www.freebsd.org/doc/en/books/porters-handbook/freebsd-versions.html 1000054 September 6, 2013 10-CURRENT after gcc and libstdc++ are no longer built by default (rev 255321). If a user receives the make error, it is recommended to update src and rebuild system, or edit scrypt.cpp and add #include <sys/endian.h> -- Waitman Gobble San Jose California USA
Author: swills Date: Thu Feb 6 17:36:38 2014 New Revision: 343127 URL: http://svnweb.freebsd.org/changeset/ports/343127 QAT: https://qat.redports.org/buildarchive/r343127/ Log: - Use more correct OSVERSION check [1] - Remove WITHOUT_X11 and use standard X11 option PR: ports/186137 [1] Reported by: Waitman Gobble <uzimac@da3m0n8t3r.com> [1] Modified: head/net-p2p/litecoin/Makefile Modified: head/net-p2p/litecoin/Makefile ============================================================================== --- head/net-p2p/litecoin/Makefile Thu Feb 6 16:50:42 2014 (r343126) +++ head/net-p2p/litecoin/Makefile Thu Feb 6 17:36:38 2014 (r343127) @@ -24,10 +24,9 @@ WANT_BDB_VER= 48 USES= gmake -OPTIONS_DEFINE= GUI UPNP QRCODES DBUS -OPTIONS_DEFAULT= GUI QRCODES +OPTIONS_DEFINE= X11 UPNP QRCODES DBUS +OPTIONS_DEFAULT= X11 QRCODES -GUI_DESC= Build as a QT4 GUI UPNP_DESC= Build with UPNP support QRCODES_DESC= Build with QR code display DBUS_DESC= Build with DBUS support @@ -44,7 +43,7 @@ QMAKE_USE_UPNP= 1 QMAKE_USE_UPNP= - .endif -.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11) +.if ${PORT_OPTIONS:MX11} USE_QT4= qmake_build linguist uic moc rcc BINARY= litecoin-qt .else @@ -56,7 +55,7 @@ MAKE_ARGS+= -C ${WRKSRC}/src USE_UPNP=${ PLIST_FILES= bin/${BINARY} -.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11) && ${PORT_OPTIONS:MQRCODES} +.if ${PORT_OPTIONS:MX11} && ${PORT_OPTIONS:MQRCODES} LIB_DEPENDS+= libqrencode.so:${PORTSDIR}/graphics/libqrencode QMAKE_USE_QRCODE=1 .else @@ -72,16 +71,16 @@ QMAKE_USE_DBUS= 0 .include <bsd.port.pre.mk> -.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11) +.if ${PORT_OPTIONS:MX11} PLIST_FILES+= share/applications/litecoin-qt.desktop share/pixmaps/litecoin64.png .endif -.if ${OSVERSION} >= 1000000 +.if ${OSVERSION} >= 1000054 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-endian .endif do-configure: -.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11) +.if ${PORT_OPTIONS:MX11} cd ${BUILD_WRKSRC} && \ ${QMAKE} ${QMAKE_ARGS} \ QMAKE_LIBDIR+=${BDB_LIB_DIR} \ @@ -93,7 +92,7 @@ do-configure: .endif do-install: -.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11) +.if ${PORT_OPTIONS:MX11} ${INSTALL_PROGRAM} ${WRKSRC}/${BINARY} ${STAGEDIR}${PREFIX}/bin/ ${REINPLACE_CMD} -e 's,=/usr,=${PREFIX},' \ -e 's,bitcoin,litecoin,g' \ @@ -109,7 +108,7 @@ post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/src/makefile.unix regression-test: -.if !${PORT_OPTIONS:MGUI} || defined(WITHOUT_X11) +.if !${PORT_OPTIONS:MX11} @${GMAKE} -C ${WRKSRC}/src -f makefile.unix USE_UPNP=${QMAKE_USE_UPNP} test_litecoin (cd ${WRKSRC}/src ; ./test_litecoin) .endif _______________________________________________ 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: open->closed Patch committed, thanks for the report.